annotate src/OPERATORS/op-int-concat.cc @ 11586:12df7854fa7c

strip trailing whitespace from source files
author John W. Eaton <jwe@octave.org>
date Thu, 20 Jan 2011 17:24:59 -0500
parents fd0a3ac60b0e
children 72c96de7a403
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
11523
fd0a3ac60b0e update copyright notices
John W. Eaton <jwe@octave.org>
parents: 9933
diff changeset
3 Copyright (C) 2004-2011 John W. Eaton
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
4
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
5 This file is part of Octave.
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
6
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
7 Octave is free software; you can redistribute it and/or modify it
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5533
diff changeset
9 Free Software Foundation; either version 3 of the License, or (at your
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5533
diff changeset
10 option) any later version.
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
11
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
12 Octave is distributed in the hope that it will be useful, but WITHOUT
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
15 for more details.
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
16
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
17 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
18 along with Octave; see the file COPYING. If not, see
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5533
diff changeset
19 <http://www.gnu.org/licenses/>.
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 */
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
22
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
23 #ifdef HAVE_CONFIG_H
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
24 #include <config.h>
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
25 #endif
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
26
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
27 #include "gripes.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
28 #include "oct-obj.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
29 #include "ov.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
30 #include "ov-int8.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
31 #include "ov-int16.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
32 #include "ov-int32.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
33 #include "ov-int64.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
34 #include "ov-uint8.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
35 #include "ov-uint16.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
36 #include "ov-uint32.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
37 #include "ov-uint64.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
38 #include "ov-range.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
39 #include "ov-bool.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
40 #include "ov-bool-mat.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
41 #include "ov-scalar.h"
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
42 #include "ov-float.h"
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
43 #include "ov-re-mat.h"
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
44 #include "ov-flt-re-mat.h"
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
45 #include "ov-str-mat.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
46 #include "ov-typeinfo.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
47 #include "op-int.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
48 #include "ops.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
49
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
50 // Concatentation of mixed integer types:
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
51
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
52 OCTAVE_CONCAT_FN2 (int8, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
53 OCTAVE_CONCAT_FN2 (int8, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
54 OCTAVE_CONCAT_FN2 (int8, int64)
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, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
57 OCTAVE_CONCAT_FN2 (int8, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
58 OCTAVE_CONCAT_FN2 (int8, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
59 OCTAVE_CONCAT_FN2 (int8, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
60
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
61 OCTAVE_CONCAT_FN2 (int16, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
62 OCTAVE_CONCAT_FN2 (int16, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
63 OCTAVE_CONCAT_FN2 (int16, int64)
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, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
66 OCTAVE_CONCAT_FN2 (int16, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
67 OCTAVE_CONCAT_FN2 (int16, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
68 OCTAVE_CONCAT_FN2 (int16, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
69
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
70 OCTAVE_CONCAT_FN2 (int32, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
71 OCTAVE_CONCAT_FN2 (int32, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
72 OCTAVE_CONCAT_FN2 (int32, int64)
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, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
75 OCTAVE_CONCAT_FN2 (int32, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
76 OCTAVE_CONCAT_FN2 (int32, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
77 OCTAVE_CONCAT_FN2 (int32, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
78
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
79 OCTAVE_CONCAT_FN2 (int64, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
80 OCTAVE_CONCAT_FN2 (int64, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
81 OCTAVE_CONCAT_FN2 (int64, int32)
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, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
84 OCTAVE_CONCAT_FN2 (int64, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
85 OCTAVE_CONCAT_FN2 (int64, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
86 OCTAVE_CONCAT_FN2 (int64, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
87
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
88 OCTAVE_CONCAT_FN2 (uint8, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
89 OCTAVE_CONCAT_FN2 (uint8, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
90 OCTAVE_CONCAT_FN2 (uint8, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
91 OCTAVE_CONCAT_FN2 (uint8, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
92
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
93 OCTAVE_CONCAT_FN2 (uint8, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
94 OCTAVE_CONCAT_FN2 (uint8, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
95 OCTAVE_CONCAT_FN2 (uint8, uint64)
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 (uint16, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
98 OCTAVE_CONCAT_FN2 (uint16, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
99 OCTAVE_CONCAT_FN2 (uint16, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
100 OCTAVE_CONCAT_FN2 (uint16, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
101
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
102 OCTAVE_CONCAT_FN2 (uint16, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
103 OCTAVE_CONCAT_FN2 (uint16, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
104 OCTAVE_CONCAT_FN2 (uint16, uint64)
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 (uint32, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
107 OCTAVE_CONCAT_FN2 (uint32, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
108 OCTAVE_CONCAT_FN2 (uint32, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
109 OCTAVE_CONCAT_FN2 (uint32, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
110
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
111 OCTAVE_CONCAT_FN2 (uint32, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
112 OCTAVE_CONCAT_FN2 (uint32, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
113 OCTAVE_CONCAT_FN2 (uint32, uint64)
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 (uint64, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
116 OCTAVE_CONCAT_FN2 (uint64, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
117 OCTAVE_CONCAT_FN2 (uint64, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
118 OCTAVE_CONCAT_FN2 (uint64, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
119
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
120 OCTAVE_CONCAT_FN2 (uint64, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
121 OCTAVE_CONCAT_FN2 (uint64, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
122 OCTAVE_CONCAT_FN2 (uint64, uint32)
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_INT_DOUBLE_CONCAT_FN (int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
125 OCTAVE_INT_DOUBLE_CONCAT_FN (int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
126 OCTAVE_INT_DOUBLE_CONCAT_FN (int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
127 OCTAVE_INT_DOUBLE_CONCAT_FN (int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
128
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
129 OCTAVE_INT_DOUBLE_CONCAT_FN (uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
130 OCTAVE_INT_DOUBLE_CONCAT_FN (uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
131 OCTAVE_INT_DOUBLE_CONCAT_FN (uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
132 OCTAVE_INT_DOUBLE_CONCAT_FN (uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
133
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
134 OCTAVE_DOUBLE_INT_CONCAT_FN (int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
135 OCTAVE_DOUBLE_INT_CONCAT_FN (int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
136 OCTAVE_DOUBLE_INT_CONCAT_FN (int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
137 OCTAVE_DOUBLE_INT_CONCAT_FN (int64)
11586
12df7854fa7c strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
138
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
139 OCTAVE_DOUBLE_INT_CONCAT_FN (uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
140 OCTAVE_DOUBLE_INT_CONCAT_FN (uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
141 OCTAVE_DOUBLE_INT_CONCAT_FN (uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
142 OCTAVE_DOUBLE_INT_CONCAT_FN (uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
143
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
144 OCTAVE_INT_FLOAT_CONCAT_FN (int8)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
145 OCTAVE_INT_FLOAT_CONCAT_FN (int16)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
146 OCTAVE_INT_FLOAT_CONCAT_FN (int32)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
147 OCTAVE_INT_FLOAT_CONCAT_FN (int64)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
148
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
149 OCTAVE_INT_FLOAT_CONCAT_FN (uint8)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
150 OCTAVE_INT_FLOAT_CONCAT_FN (uint16)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
151 OCTAVE_INT_FLOAT_CONCAT_FN (uint32)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
152 OCTAVE_INT_FLOAT_CONCAT_FN (uint64)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
153
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
154 OCTAVE_FLOAT_INT_CONCAT_FN (int8)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
155 OCTAVE_FLOAT_INT_CONCAT_FN (int16)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
156 OCTAVE_FLOAT_INT_CONCAT_FN (int32)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
157 OCTAVE_FLOAT_INT_CONCAT_FN (int64)
11586
12df7854fa7c strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
158
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
159 OCTAVE_FLOAT_INT_CONCAT_FN (uint8)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
160 OCTAVE_FLOAT_INT_CONCAT_FN (uint16)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
161 OCTAVE_FLOAT_INT_CONCAT_FN (uint32)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
162 OCTAVE_FLOAT_INT_CONCAT_FN (uint64)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
163
5533
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
164 OCTAVE_INT_CHAR_CONCAT_FN (int8)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
165 OCTAVE_INT_CHAR_CONCAT_FN (int16)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
166 OCTAVE_INT_CHAR_CONCAT_FN (int32)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
167 OCTAVE_INT_CHAR_CONCAT_FN (int64)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
168
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
169 OCTAVE_INT_CHAR_CONCAT_FN (uint8)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
170 OCTAVE_INT_CHAR_CONCAT_FN (uint16)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
171 OCTAVE_INT_CHAR_CONCAT_FN (uint32)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
172 OCTAVE_INT_CHAR_CONCAT_FN (uint64)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
173
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
174 OCTAVE_CHAR_INT_CONCAT_FN (int8)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
175 OCTAVE_CHAR_INT_CONCAT_FN (int16)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
176 OCTAVE_CHAR_INT_CONCAT_FN (int32)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
177 OCTAVE_CHAR_INT_CONCAT_FN (int64)
11586
12df7854fa7c strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
178
5533
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
179 OCTAVE_CHAR_INT_CONCAT_FN (uint8)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
180 OCTAVE_CHAR_INT_CONCAT_FN (uint16)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
181 OCTAVE_CHAR_INT_CONCAT_FN (uint32)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
182 OCTAVE_CHAR_INT_CONCAT_FN (uint64)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
183
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
184 void
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
185 install_int_concat_ops (void)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
186 {
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
187 OCTAVE_INSTALL_CONCAT_FN2 (int8, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
188 OCTAVE_INSTALL_CONCAT_FN2 (int8, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
189 OCTAVE_INSTALL_CONCAT_FN2 (int8, int64);
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, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
192 OCTAVE_INSTALL_CONCAT_FN2 (int8, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
193 OCTAVE_INSTALL_CONCAT_FN2 (int8, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
194 OCTAVE_INSTALL_CONCAT_FN2 (int8, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
195
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
196 OCTAVE_INSTALL_CONCAT_FN2 (int16, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
197 OCTAVE_INSTALL_CONCAT_FN2 (int16, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
198 OCTAVE_INSTALL_CONCAT_FN2 (int16, int64);
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, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
201 OCTAVE_INSTALL_CONCAT_FN2 (int16, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
202 OCTAVE_INSTALL_CONCAT_FN2 (int16, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
203 OCTAVE_INSTALL_CONCAT_FN2 (int16, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
204
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
205 OCTAVE_INSTALL_CONCAT_FN2 (int32, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
206 OCTAVE_INSTALL_CONCAT_FN2 (int32, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
207 OCTAVE_INSTALL_CONCAT_FN2 (int32, int64);
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, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
210 OCTAVE_INSTALL_CONCAT_FN2 (int32, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
211 OCTAVE_INSTALL_CONCAT_FN2 (int32, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
212 OCTAVE_INSTALL_CONCAT_FN2 (int32, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
213
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
214 OCTAVE_INSTALL_CONCAT_FN2 (int64, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
215 OCTAVE_INSTALL_CONCAT_FN2 (int64, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
216 OCTAVE_INSTALL_CONCAT_FN2 (int64, int32);
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, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
219 OCTAVE_INSTALL_CONCAT_FN2 (int64, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
220 OCTAVE_INSTALL_CONCAT_FN2 (int64, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
221 OCTAVE_INSTALL_CONCAT_FN2 (int64, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
222
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
223 OCTAVE_INSTALL_CONCAT_FN2 (uint8, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
224 OCTAVE_INSTALL_CONCAT_FN2 (uint8, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
225 OCTAVE_INSTALL_CONCAT_FN2 (uint8, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
226 OCTAVE_INSTALL_CONCAT_FN2 (uint8, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
227
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
228 OCTAVE_INSTALL_CONCAT_FN2 (uint8, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
229 OCTAVE_INSTALL_CONCAT_FN2 (uint8, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
230 OCTAVE_INSTALL_CONCAT_FN2 (uint8, uint64);
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 (uint16, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
233 OCTAVE_INSTALL_CONCAT_FN2 (uint16, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
234 OCTAVE_INSTALL_CONCAT_FN2 (uint16, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
235 OCTAVE_INSTALL_CONCAT_FN2 (uint16, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
236
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
237 OCTAVE_INSTALL_CONCAT_FN2 (uint16, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
238 OCTAVE_INSTALL_CONCAT_FN2 (uint16, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
239 OCTAVE_INSTALL_CONCAT_FN2 (uint16, uint64);
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 (uint32, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
242 OCTAVE_INSTALL_CONCAT_FN2 (uint32, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
243 OCTAVE_INSTALL_CONCAT_FN2 (uint32, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
244 OCTAVE_INSTALL_CONCAT_FN2 (uint32, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
245
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
246 OCTAVE_INSTALL_CONCAT_FN2 (uint32, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
247 OCTAVE_INSTALL_CONCAT_FN2 (uint32, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
248 OCTAVE_INSTALL_CONCAT_FN2 (uint32, uint64);
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 (uint64, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
251 OCTAVE_INSTALL_CONCAT_FN2 (uint64, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
252 OCTAVE_INSTALL_CONCAT_FN2 (uint64, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
253 OCTAVE_INSTALL_CONCAT_FN2 (uint64, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
254
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
255 OCTAVE_INSTALL_CONCAT_FN2 (uint64, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
256 OCTAVE_INSTALL_CONCAT_FN2 (uint64, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
257 OCTAVE_INSTALL_CONCAT_FN2 (uint64, uint32);
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_INT_DOUBLE_CONCAT_FN (int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
260 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
261 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
262 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
263
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
264 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
265 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
266 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
267 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
268
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
269 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
270 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
271 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
272 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
273
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
274 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
275 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
276 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
277 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (uint64);
5533
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
278
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
279 OCTAVE_INSTALL_INT_FLOAT_CONCAT_FN (int8);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
280 OCTAVE_INSTALL_INT_FLOAT_CONCAT_FN (int16);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
281 OCTAVE_INSTALL_INT_FLOAT_CONCAT_FN (int32);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
282 OCTAVE_INSTALL_INT_FLOAT_CONCAT_FN (int64);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
283
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
284 OCTAVE_INSTALL_INT_FLOAT_CONCAT_FN (uint8);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
285 OCTAVE_INSTALL_INT_FLOAT_CONCAT_FN (uint16);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
286 OCTAVE_INSTALL_INT_FLOAT_CONCAT_FN (uint32);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
287 OCTAVE_INSTALL_INT_FLOAT_CONCAT_FN (uint64);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
288
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
289 OCTAVE_INSTALL_FLOAT_INT_CONCAT_FN (int8);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
290 OCTAVE_INSTALL_FLOAT_INT_CONCAT_FN (int16);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
291 OCTAVE_INSTALL_FLOAT_INT_CONCAT_FN (int32);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
292 OCTAVE_INSTALL_FLOAT_INT_CONCAT_FN (int64);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
293
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
294 OCTAVE_INSTALL_FLOAT_INT_CONCAT_FN (uint8);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
295 OCTAVE_INSTALL_FLOAT_INT_CONCAT_FN (uint16);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
296 OCTAVE_INSTALL_FLOAT_INT_CONCAT_FN (uint32);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
297 OCTAVE_INSTALL_FLOAT_INT_CONCAT_FN (uint64);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
298
5533
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
299 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (int8);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
300 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (int16);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
301 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (int32);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
302 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (int64);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
303
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
304 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (uint8);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
305 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (uint16);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
306 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (uint32);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
307 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (uint64);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
308
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
309 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (int8);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
310 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (int16);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
311 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (int32);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
312 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (int64);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
313
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
314 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (uint8);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
315 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (uint16);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
316 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (uint32);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
317 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (uint64);
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
318 }