annotate libinterp/operators/op-int-concat.cc @ 27919:1891570abac8

update Octave Project Developers copyright for the new year In files that have the "Octave Project Developers" copyright notice, update for 2020.
author John W. Eaton <jwe@octave.org>
date Mon, 06 Jan 2020 22:29:51 -0500
parents b442ec6dda5c
children bd51beb6205e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
1 /*
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
2
27919
1891570abac8 update Octave Project Developers copyright for the new year
John W. Eaton <jwe@octave.org>
parents: 27918
diff changeset
3 Copyright (C) 2004-2020 The Octave Project Developers
27918
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents: 26376
diff changeset
4
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents: 26376
diff changeset
5 See the file COPYRIGHT.md in the top-level directory of this distribution
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents: 26376
diff changeset
6 or <https://octave.org/COPYRIGHT.html/>.
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents: 26376
diff changeset
7
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
8
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
9 This file is part of Octave.
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
10
24534
194eb4bd202b maint: Update punctuation for GPL v3 license text.
Rik <rik@octave.org>
parents: 23220
diff changeset
11 Octave is free software: you can redistribute it and/or modify it
22755
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22407
diff changeset
12 under the terms of the GNU General Public License as published by
24534
194eb4bd202b maint: Update punctuation for GPL v3 license text.
Rik <rik@octave.org>
parents: 23220
diff changeset
13 the Free Software Foundation, either version 3 of the License, or
22755
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22407
diff changeset
14 (at your option) any later version.
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
15
22755
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22407
diff changeset
16 Octave is distributed in the hope that it will be useful, but
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22407
diff changeset
17 WITHOUT ANY WARRANTY; without even the implied warranty of
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22407
diff changeset
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22407
diff changeset
19 GNU General Public License for more details.
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
20
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
21 You should have received a copy of the GNU General Public License
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5533
diff changeset
22 along with Octave; see the file COPYING. If not, see
24534
194eb4bd202b maint: Update punctuation for GPL v3 license text.
Rik <rik@octave.org>
parents: 23220
diff changeset
23 <https://www.gnu.org/licenses/>.
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
24
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
25 */
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
26
21724
aba2e6293dd8 use "#if ..." consistently instead of "#ifdef" and "#ifndef"
John W. Eaton <jwe@octave.org>
parents: 21301
diff changeset
27 #if defined (HAVE_CONFIG_H)
21301
40de9f8f23a6 Use '#include "config.h"' rather than <config.h>.
Rik <rik@octave.org>
parents: 21200
diff changeset
28 # include "config.h"
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
29 #endif
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
30
21100
e39e05d90788 Switch gripe_XXX to either err_XXX or warn_XXX naming scheme.
Rik <rik@octave.org>
parents: 20940
diff changeset
31 #include "errwarn.h"
20940
48b2ad5ee801 maint: Rename oct-obj.[cc|h] to ovl.[cc|h] for clarity.
Rik <rik@octave.org>
parents: 19697
diff changeset
32 #include "ovl.h"
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
33 #include "ov.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
34 #include "ov-int8.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
35 #include "ov-int16.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
36 #include "ov-int32.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
37 #include "ov-int64.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
38 #include "ov-uint8.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
39 #include "ov-uint16.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
40 #include "ov-uint32.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
41 #include "ov-uint64.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
42 #include "ov-range.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
43 #include "ov-bool.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
44 #include "ov-bool-mat.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
45 #include "ov-scalar.h"
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
46 #include "ov-float.h"
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
47 #include "ov-re-mat.h"
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
48 #include "ov-flt-re-mat.h"
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
49 #include "ov-str-mat.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
50 #include "ov-typeinfo.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
51 #include "op-int.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
52 #include "ops.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
53
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
54 // Concatentation of mixed integer types:
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
55
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
56 OCTAVE_CONCAT_FN2 (int8, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
57 OCTAVE_CONCAT_FN2 (int8, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
58 OCTAVE_CONCAT_FN2 (int8, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
59
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
60 OCTAVE_CONCAT_FN2 (int8, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
61 OCTAVE_CONCAT_FN2 (int8, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
62 OCTAVE_CONCAT_FN2 (int8, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
63 OCTAVE_CONCAT_FN2 (int8, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
64
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
65 OCTAVE_CONCAT_FN2 (int16, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
66 OCTAVE_CONCAT_FN2 (int16, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
67 OCTAVE_CONCAT_FN2 (int16, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
68
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
69 OCTAVE_CONCAT_FN2 (int16, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
70 OCTAVE_CONCAT_FN2 (int16, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
71 OCTAVE_CONCAT_FN2 (int16, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
72 OCTAVE_CONCAT_FN2 (int16, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
73
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
74 OCTAVE_CONCAT_FN2 (int32, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
75 OCTAVE_CONCAT_FN2 (int32, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
76 OCTAVE_CONCAT_FN2 (int32, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
77
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
78 OCTAVE_CONCAT_FN2 (int32, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
79 OCTAVE_CONCAT_FN2 (int32, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
80 OCTAVE_CONCAT_FN2 (int32, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
81 OCTAVE_CONCAT_FN2 (int32, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
82
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
83 OCTAVE_CONCAT_FN2 (int64, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
84 OCTAVE_CONCAT_FN2 (int64, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
85 OCTAVE_CONCAT_FN2 (int64, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
86
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
87 OCTAVE_CONCAT_FN2 (int64, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
88 OCTAVE_CONCAT_FN2 (int64, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
89 OCTAVE_CONCAT_FN2 (int64, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
90 OCTAVE_CONCAT_FN2 (int64, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
91
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
92 OCTAVE_CONCAT_FN2 (uint8, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
93 OCTAVE_CONCAT_FN2 (uint8, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
94 OCTAVE_CONCAT_FN2 (uint8, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
95 OCTAVE_CONCAT_FN2 (uint8, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
96
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
97 OCTAVE_CONCAT_FN2 (uint8, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
98 OCTAVE_CONCAT_FN2 (uint8, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
99 OCTAVE_CONCAT_FN2 (uint8, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
100
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
101 OCTAVE_CONCAT_FN2 (uint16, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
102 OCTAVE_CONCAT_FN2 (uint16, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
103 OCTAVE_CONCAT_FN2 (uint16, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
104 OCTAVE_CONCAT_FN2 (uint16, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
105
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
106 OCTAVE_CONCAT_FN2 (uint16, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
107 OCTAVE_CONCAT_FN2 (uint16, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
108 OCTAVE_CONCAT_FN2 (uint16, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
109
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
110 OCTAVE_CONCAT_FN2 (uint32, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
111 OCTAVE_CONCAT_FN2 (uint32, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
112 OCTAVE_CONCAT_FN2 (uint32, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
113 OCTAVE_CONCAT_FN2 (uint32, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
114
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
115 OCTAVE_CONCAT_FN2 (uint32, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
116 OCTAVE_CONCAT_FN2 (uint32, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
117 OCTAVE_CONCAT_FN2 (uint32, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
118
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
119 OCTAVE_CONCAT_FN2 (uint64, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
120 OCTAVE_CONCAT_FN2 (uint64, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
121 OCTAVE_CONCAT_FN2 (uint64, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
122 OCTAVE_CONCAT_FN2 (uint64, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
123
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
124 OCTAVE_CONCAT_FN2 (uint64, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
125 OCTAVE_CONCAT_FN2 (uint64, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
126 OCTAVE_CONCAT_FN2 (uint64, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
127
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
128 OCTAVE_INT_DOUBLE_CONCAT_FN (int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
129 OCTAVE_INT_DOUBLE_CONCAT_FN (int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
130 OCTAVE_INT_DOUBLE_CONCAT_FN (int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
131 OCTAVE_INT_DOUBLE_CONCAT_FN (int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
132
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
133 OCTAVE_INT_DOUBLE_CONCAT_FN (uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
134 OCTAVE_INT_DOUBLE_CONCAT_FN (uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
135 OCTAVE_INT_DOUBLE_CONCAT_FN (uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
136 OCTAVE_INT_DOUBLE_CONCAT_FN (uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
137
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
138 OCTAVE_DOUBLE_INT_CONCAT_FN (int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
139 OCTAVE_DOUBLE_INT_CONCAT_FN (int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
140 OCTAVE_DOUBLE_INT_CONCAT_FN (int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
141 OCTAVE_DOUBLE_INT_CONCAT_FN (int64)
11586
12df7854fa7c strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
142
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
143 OCTAVE_DOUBLE_INT_CONCAT_FN (uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
144 OCTAVE_DOUBLE_INT_CONCAT_FN (uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
145 OCTAVE_DOUBLE_INT_CONCAT_FN (uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
146 OCTAVE_DOUBLE_INT_CONCAT_FN (uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
147
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
148 OCTAVE_INT_FLOAT_CONCAT_FN (int8)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
149 OCTAVE_INT_FLOAT_CONCAT_FN (int16)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
150 OCTAVE_INT_FLOAT_CONCAT_FN (int32)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
151 OCTAVE_INT_FLOAT_CONCAT_FN (int64)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
152
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
153 OCTAVE_INT_FLOAT_CONCAT_FN (uint8)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
154 OCTAVE_INT_FLOAT_CONCAT_FN (uint16)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
155 OCTAVE_INT_FLOAT_CONCAT_FN (uint32)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
156 OCTAVE_INT_FLOAT_CONCAT_FN (uint64)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
157
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
158 OCTAVE_FLOAT_INT_CONCAT_FN (int8)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
159 OCTAVE_FLOAT_INT_CONCAT_FN (int16)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
160 OCTAVE_FLOAT_INT_CONCAT_FN (int32)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
161 OCTAVE_FLOAT_INT_CONCAT_FN (int64)
11586
12df7854fa7c strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
162
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
163 OCTAVE_FLOAT_INT_CONCAT_FN (uint8)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
164 OCTAVE_FLOAT_INT_CONCAT_FN (uint16)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
165 OCTAVE_FLOAT_INT_CONCAT_FN (uint32)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
166 OCTAVE_FLOAT_INT_CONCAT_FN (uint64)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
167
5533
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
168 OCTAVE_INT_CHAR_CONCAT_FN (int8)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
169 OCTAVE_INT_CHAR_CONCAT_FN (int16)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
170 OCTAVE_INT_CHAR_CONCAT_FN (int32)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
171 OCTAVE_INT_CHAR_CONCAT_FN (int64)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
172
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
173 OCTAVE_INT_CHAR_CONCAT_FN (uint8)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
174 OCTAVE_INT_CHAR_CONCAT_FN (uint16)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
175 OCTAVE_INT_CHAR_CONCAT_FN (uint32)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
176 OCTAVE_INT_CHAR_CONCAT_FN (uint64)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
177
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
178 OCTAVE_CHAR_INT_CONCAT_FN (int8)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
179 OCTAVE_CHAR_INT_CONCAT_FN (int16)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
180 OCTAVE_CHAR_INT_CONCAT_FN (int32)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
181 OCTAVE_CHAR_INT_CONCAT_FN (int64)
11586
12df7854fa7c strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
182
5533
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
183 OCTAVE_CHAR_INT_CONCAT_FN (uint8)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
184 OCTAVE_CHAR_INT_CONCAT_FN (uint16)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
185 OCTAVE_CHAR_INT_CONCAT_FN (uint32)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
186 OCTAVE_CHAR_INT_CONCAT_FN (uint64)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
187
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
188 void
24540
46440078d73b don't use singleton for octave_value_typeinfo
John W. Eaton <jwe@octave.org>
parents: 24534
diff changeset
189 install_int_concat_ops (octave::type_info& ti)
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
190 {
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
191 OCTAVE_INSTALL_CONCAT_FN2 (int8, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
192 OCTAVE_INSTALL_CONCAT_FN2 (int8, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
193 OCTAVE_INSTALL_CONCAT_FN2 (int8, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
194
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
195 OCTAVE_INSTALL_CONCAT_FN2 (int8, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
196 OCTAVE_INSTALL_CONCAT_FN2 (int8, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
197 OCTAVE_INSTALL_CONCAT_FN2 (int8, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
198 OCTAVE_INSTALL_CONCAT_FN2 (int8, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
199
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
200 OCTAVE_INSTALL_CONCAT_FN2 (int16, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
201 OCTAVE_INSTALL_CONCAT_FN2 (int16, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
202 OCTAVE_INSTALL_CONCAT_FN2 (int16, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
203
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
204 OCTAVE_INSTALL_CONCAT_FN2 (int16, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
205 OCTAVE_INSTALL_CONCAT_FN2 (int16, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
206 OCTAVE_INSTALL_CONCAT_FN2 (int16, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
207 OCTAVE_INSTALL_CONCAT_FN2 (int16, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
208
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
209 OCTAVE_INSTALL_CONCAT_FN2 (int32, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
210 OCTAVE_INSTALL_CONCAT_FN2 (int32, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
211 OCTAVE_INSTALL_CONCAT_FN2 (int32, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
212
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
213 OCTAVE_INSTALL_CONCAT_FN2 (int32, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
214 OCTAVE_INSTALL_CONCAT_FN2 (int32, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
215 OCTAVE_INSTALL_CONCAT_FN2 (int32, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
216 OCTAVE_INSTALL_CONCAT_FN2 (int32, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
217
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
218 OCTAVE_INSTALL_CONCAT_FN2 (int64, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
219 OCTAVE_INSTALL_CONCAT_FN2 (int64, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
220 OCTAVE_INSTALL_CONCAT_FN2 (int64, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
221
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
222 OCTAVE_INSTALL_CONCAT_FN2 (int64, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
223 OCTAVE_INSTALL_CONCAT_FN2 (int64, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
224 OCTAVE_INSTALL_CONCAT_FN2 (int64, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
225 OCTAVE_INSTALL_CONCAT_FN2 (int64, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
226
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
227 OCTAVE_INSTALL_CONCAT_FN2 (uint8, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
228 OCTAVE_INSTALL_CONCAT_FN2 (uint8, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
229 OCTAVE_INSTALL_CONCAT_FN2 (uint8, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
230 OCTAVE_INSTALL_CONCAT_FN2 (uint8, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
231
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
232 OCTAVE_INSTALL_CONCAT_FN2 (uint8, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
233 OCTAVE_INSTALL_CONCAT_FN2 (uint8, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
234 OCTAVE_INSTALL_CONCAT_FN2 (uint8, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
235
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
236 OCTAVE_INSTALL_CONCAT_FN2 (uint16, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
237 OCTAVE_INSTALL_CONCAT_FN2 (uint16, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
238 OCTAVE_INSTALL_CONCAT_FN2 (uint16, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
239 OCTAVE_INSTALL_CONCAT_FN2 (uint16, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
240
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
241 OCTAVE_INSTALL_CONCAT_FN2 (uint16, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
242 OCTAVE_INSTALL_CONCAT_FN2 (uint16, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
243 OCTAVE_INSTALL_CONCAT_FN2 (uint16, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
244
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
245 OCTAVE_INSTALL_CONCAT_FN2 (uint32, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
246 OCTAVE_INSTALL_CONCAT_FN2 (uint32, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
247 OCTAVE_INSTALL_CONCAT_FN2 (uint32, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
248 OCTAVE_INSTALL_CONCAT_FN2 (uint32, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
249
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
250 OCTAVE_INSTALL_CONCAT_FN2 (uint32, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
251 OCTAVE_INSTALL_CONCAT_FN2 (uint32, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
252 OCTAVE_INSTALL_CONCAT_FN2 (uint32, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
253
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
254 OCTAVE_INSTALL_CONCAT_FN2 (uint64, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
255 OCTAVE_INSTALL_CONCAT_FN2 (uint64, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
256 OCTAVE_INSTALL_CONCAT_FN2 (uint64, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
257 OCTAVE_INSTALL_CONCAT_FN2 (uint64, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
258
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
259 OCTAVE_INSTALL_CONCAT_FN2 (uint64, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
260 OCTAVE_INSTALL_CONCAT_FN2 (uint64, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
261 OCTAVE_INSTALL_CONCAT_FN2 (uint64, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
262
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
263 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
264 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
265 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
266 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
267
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
268 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
269 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
270 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
271 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
272
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
273 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
274 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
275 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
276 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
277
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
278 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
279 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
280 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
281 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (uint64);
5533
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
282
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
283 OCTAVE_INSTALL_INT_FLOAT_CONCAT_FN (int8);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
284 OCTAVE_INSTALL_INT_FLOAT_CONCAT_FN (int16);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
285 OCTAVE_INSTALL_INT_FLOAT_CONCAT_FN (int32);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
286 OCTAVE_INSTALL_INT_FLOAT_CONCAT_FN (int64);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
287
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
288 OCTAVE_INSTALL_INT_FLOAT_CONCAT_FN (uint8);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
289 OCTAVE_INSTALL_INT_FLOAT_CONCAT_FN (uint16);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
290 OCTAVE_INSTALL_INT_FLOAT_CONCAT_FN (uint32);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
291 OCTAVE_INSTALL_INT_FLOAT_CONCAT_FN (uint64);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
292
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
293 OCTAVE_INSTALL_FLOAT_INT_CONCAT_FN (int8);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
294 OCTAVE_INSTALL_FLOAT_INT_CONCAT_FN (int16);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
295 OCTAVE_INSTALL_FLOAT_INT_CONCAT_FN (int32);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
296 OCTAVE_INSTALL_FLOAT_INT_CONCAT_FN (int64);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
297
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
298 OCTAVE_INSTALL_FLOAT_INT_CONCAT_FN (uint8);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
299 OCTAVE_INSTALL_FLOAT_INT_CONCAT_FN (uint16);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
300 OCTAVE_INSTALL_FLOAT_INT_CONCAT_FN (uint32);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
301 OCTAVE_INSTALL_FLOAT_INT_CONCAT_FN (uint64);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
302
5533
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
303 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (int8);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
304 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (int16);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
305 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (int32);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
306 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (int64);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
307
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
308 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (uint8);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
309 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (uint16);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
310 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (uint32);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
311 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (uint64);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
312
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
313 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (int8);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
314 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (int16);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
315 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (int32);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
316 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (int64);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
317
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
318 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (uint8);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
319 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (uint16);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
320 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (uint32);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
321 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (uint64);
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
322 }