Mercurial > hg > octave-nkf
annotate libinterp/operators/op-int-conv.cc @ 19840:c5270263d466 gui-release
close gui-release branch
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Fri, 30 Jan 2015 17:41:50 -0500 |
parents | d63878346099 |
children | 4197fc428c7d |
rev | line source |
---|---|
4901 | 1 /* |
2 | |
17744
d63878346099
maint: Update copyright notices for release.
John W. Eaton <jwe@octave.org>
parents:
15195
diff
changeset
|
3 Copyright (C) 2004-2013 John W. Eaton |
4901 | 4 |
5 This file is part of Octave. | |
6 | |
7 Octave is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
4901 | 11 |
12 Octave is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
4901 | 20 |
21 */ | |
22 | |
23 #ifdef HAVE_CONFIG_H | |
24 #include <config.h> | |
25 #endif | |
26 | |
27 #include "gripes.h" | |
28 #include "oct-obj.h" | |
29 #include "ov.h" | |
30 #include "ov-int8.h" | |
31 #include "ov-int16.h" | |
32 #include "ov-int32.h" | |
33 #include "ov-int64.h" | |
34 #include "ov-uint8.h" | |
35 #include "ov-uint16.h" | |
36 #include "ov-uint32.h" | |
37 #include "ov-uint64.h" | |
4907 | 38 #include "ov-range.h" |
5002 | 39 #include "ov-bool.h" |
40 #include "ov-bool-mat.h" | |
4901 | 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" |
4901 | 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" |
5032 | 45 #include "ov-str-mat.h" |
4901 | 46 #include "ov-typeinfo.h" |
47 #include "ops.h" | |
48 | |
8039
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
49 #define DEFINTCONVFN(name, tfrom, tto) \ |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
50 CONVDECL (name) \ |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
51 { \ |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
52 CAST_CONV_ARG (const octave_ ## tfrom&); \ |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
53 \ |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
54 octave_ ## tto ## _matrix v2 = v.tto ## _array_value (); \ |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
55 return new octave_ ## tto ## _matrix (v2); \ |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
56 } |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
57 |
4901 | 58 // conversion ops |
59 | |
8039
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
60 DEFINTCONVFN (scalar_to_int8, scalar, int8) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
61 DEFINTCONVFN (scalar_to_int16, scalar, int16) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
62 DEFINTCONVFN (scalar_to_int32, scalar, int32) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
63 DEFINTCONVFN (scalar_to_int64, scalar, int64) |
4901 | 64 |
8039
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
65 DEFINTCONVFN (scalar_to_uint8, scalar, uint8) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
66 DEFINTCONVFN (scalar_to_uint16, scalar, uint16) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
67 DEFINTCONVFN (scalar_to_uint32, scalar, uint32) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
68 DEFINTCONVFN (scalar_to_uint64, scalar, uint64) |
4901 | 69 |
8039
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
70 DEFINTCONVFN (matrix_to_int8, matrix, int8) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
71 DEFINTCONVFN (matrix_to_int16, matrix, int16) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
72 DEFINTCONVFN (matrix_to_int32, matrix, int32) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
73 DEFINTCONVFN (matrix_to_int64, matrix, int64) |
4901 | 74 |
8039
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
75 DEFINTCONVFN (matrix_to_uint8, matrix, uint8) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
76 DEFINTCONVFN (matrix_to_uint16, matrix, uint16) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
77 DEFINTCONVFN (matrix_to_uint32, matrix, uint32) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
78 DEFINTCONVFN (matrix_to_uint64, matrix, uint64) |
4901 | 79 |
8039
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
80 DEFINTCONVFN (float_scalar_to_int8, float_scalar, int8) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
81 DEFINTCONVFN (float_scalar_to_int16, float_scalar, int16) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
82 DEFINTCONVFN (float_scalar_to_int32, float_scalar, int32) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
83 DEFINTCONVFN (float_scalar_to_int64, float_scalar, int64) |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
84 |
8039
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
85 DEFINTCONVFN (float_scalar_to_uint8, float_scalar, uint8) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
86 DEFINTCONVFN (float_scalar_to_uint16, float_scalar, uint16) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
87 DEFINTCONVFN (float_scalar_to_uint32, float_scalar, uint32) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
88 DEFINTCONVFN (float_scalar_to_uint64, float_scalar, uint64) |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
89 |
8039
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
90 DEFINTCONVFN (float_matrix_to_int8, float_matrix, int8) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
91 DEFINTCONVFN (float_matrix_to_int16, float_matrix, int16) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
92 DEFINTCONVFN (float_matrix_to_int32, float_matrix, int32) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
93 DEFINTCONVFN (float_matrix_to_int64, float_matrix, int64) |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
94 |
8039
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
95 DEFINTCONVFN (float_matrix_to_uint8, float_matrix, uint8) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
96 DEFINTCONVFN (float_matrix_to_uint16, float_matrix, uint16) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
97 DEFINTCONVFN (float_matrix_to_uint32, float_matrix, uint32) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
98 DEFINTCONVFN (float_matrix_to_uint64, float_matrix, uint64) |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
99 |
5002 | 100 DEFCONVFN (bool_to_int8, bool, int8) |
101 DEFCONVFN (bool_to_int16, bool, int16) | |
102 DEFCONVFN (bool_to_int32, bool, int32) | |
103 DEFCONVFN (bool_to_int64, bool, int64) | |
104 | |
105 DEFCONVFN (bool_to_uint8, bool, uint8) | |
106 DEFCONVFN (bool_to_uint16, bool, uint16) | |
107 DEFCONVFN (bool_to_uint32, bool, uint32) | |
108 DEFCONVFN (bool_to_uint64, bool, uint64) | |
109 | |
110 DEFCONVFN (bool_matrix_to_int8, bool_matrix, int8) | |
111 DEFCONVFN (bool_matrix_to_int16, bool_matrix, int16) | |
112 DEFCONVFN (bool_matrix_to_int32, bool_matrix, int32) | |
113 DEFCONVFN (bool_matrix_to_int64, bool_matrix, int64) | |
114 | |
115 DEFCONVFN (bool_matrix_to_uint8, bool_matrix, uint8) | |
116 DEFCONVFN (bool_matrix_to_uint16, bool_matrix, uint16) | |
117 DEFCONVFN (bool_matrix_to_uint32, bool_matrix, uint32) | |
118 DEFCONVFN (bool_matrix_to_uint64, bool_matrix, uint64) | |
119 | |
6600 | 120 DEFSTRINTCONVFN (char_matrix_sq_str_to_int8, int8) |
121 DEFSTRINTCONVFN (char_matrix_sq_str_to_int16, int16) | |
122 DEFSTRINTCONVFN (char_matrix_sq_str_to_int32, int32) | |
123 DEFSTRINTCONVFN (char_matrix_sq_str_to_int64, int64) | |
124 | |
125 DEFSTRINTCONVFN (char_matrix_sq_str_to_uint8, uint8) | |
126 DEFSTRINTCONVFN (char_matrix_sq_str_to_uint16, uint16) | |
127 DEFSTRINTCONVFN (char_matrix_sq_str_to_uint32, uint32) | |
128 DEFSTRINTCONVFN (char_matrix_sq_str_to_uint64, uint64) | |
5032 | 129 |
6600 | 130 DEFSTRINTCONVFN (char_matrix_dq_str_to_int8, int8) |
131 DEFSTRINTCONVFN (char_matrix_dq_str_to_int16, int16) | |
132 DEFSTRINTCONVFN (char_matrix_dq_str_to_int32, int32) | |
133 DEFSTRINTCONVFN (char_matrix_dq_str_to_int64, int64) | |
134 | |
135 DEFSTRINTCONVFN (char_matrix_dq_str_to_uint8, uint8) | |
136 DEFSTRINTCONVFN (char_matrix_dq_str_to_uint16, uint16) | |
137 DEFSTRINTCONVFN (char_matrix_dq_str_to_uint32, uint32) | |
138 DEFSTRINTCONVFN (char_matrix_dq_str_to_uint64, uint64) | |
5032 | 139 |
8039
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
140 DEFINTCONVFN (range_to_int8, range, int8) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
141 DEFINTCONVFN (range_to_int16, range, int16) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
142 DEFINTCONVFN (range_to_int32, range, int32) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
143 DEFINTCONVFN (range_to_int64, range, int64) |
4907 | 144 |
8039
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
145 DEFINTCONVFN (range_to_uint8, range, uint8) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
146 DEFINTCONVFN (range_to_uint16, range, uint16) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
147 DEFINTCONVFN (range_to_uint32, range, uint32) |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7789
diff
changeset
|
148 DEFINTCONVFN (range_to_uint64, range, uint64) |
4907 | 149 |
4901 | 150 #define INT_CONV_FUNCTIONS(tfrom) \ |
151 DEFCONVFN2 (tfrom ## _scalar_to_int8, tfrom, scalar, int8) \ | |
152 DEFCONVFN2 (tfrom ## _scalar_to_int16, tfrom, scalar, int16) \ | |
153 DEFCONVFN2 (tfrom ## _scalar_to_int32, tfrom, scalar, int32) \ | |
154 DEFCONVFN2 (tfrom ## _scalar_to_int64, tfrom, scalar, int64) \ | |
155 \ | |
4952 | 156 DEFCONVFN2 (tfrom ## _scalar_to_uint8, tfrom, scalar, uint8) \ |
157 DEFCONVFN2 (tfrom ## _scalar_to_uint16, tfrom, scalar, uint16) \ | |
158 DEFCONVFN2 (tfrom ## _scalar_to_uint32, tfrom, scalar, uint32) \ | |
159 DEFCONVFN2 (tfrom ## _scalar_to_uint64, tfrom, scalar, uint64) \ | |
4901 | 160 \ |
4952 | 161 DEFCONVFN2 (tfrom ## _matrix_to_int8, tfrom, matrix, int8) \ |
162 DEFCONVFN2 (tfrom ## _matrix_to_int16, tfrom, matrix, int16) \ | |
163 DEFCONVFN2 (tfrom ## _matrix_to_int32, tfrom, matrix, int32) \ | |
164 DEFCONVFN2 (tfrom ## _matrix_to_int64, tfrom, matrix, int64) \ | |
4901 | 165 \ |
166 DEFCONVFN2 (tfrom ## _matrix_to_uint8, tfrom, matrix, uint8) \ | |
167 DEFCONVFN2 (tfrom ## _matrix_to_uint16, tfrom, matrix, uint16) \ | |
168 DEFCONVFN2 (tfrom ## _matrix_to_uint32, tfrom, matrix, uint32) \ | |
169 DEFCONVFN2 (tfrom ## _matrix_to_uint64, tfrom, matrix, uint64) | |
170 | |
171 INT_CONV_FUNCTIONS (int8) | |
172 INT_CONV_FUNCTIONS (int16) | |
173 INT_CONV_FUNCTIONS (int32) | |
174 INT_CONV_FUNCTIONS (int64) | |
175 | |
176 INT_CONV_FUNCTIONS (uint8) | |
177 INT_CONV_FUNCTIONS (uint16) | |
178 INT_CONV_FUNCTIONS (uint32) | |
179 INT_CONV_FUNCTIONS (uint64) | |
180 | |
181 #define INSTALL_INT_CONV_FUNCTIONS(tfrom) \ | |
182 INSTALL_CONVOP (octave_ ## tfrom ## _scalar, octave_int8_matrix, tfrom ## _scalar_to_int8) \ | |
183 INSTALL_CONVOP (octave_ ## tfrom ## _scalar, octave_int16_matrix, tfrom ## _scalar_to_int16) \ | |
184 INSTALL_CONVOP (octave_ ## tfrom ## _scalar, octave_int32_matrix, tfrom ## _scalar_to_int32) \ | |
185 INSTALL_CONVOP (octave_ ## tfrom ## _scalar, octave_int64_matrix, tfrom ## _scalar_to_int64) \ | |
186 \ | |
187 INSTALL_CONVOP (octave_ ## tfrom ## _scalar, octave_uint8_matrix, tfrom ## _scalar_to_uint8) \ | |
188 INSTALL_CONVOP (octave_ ## tfrom ## _scalar, octave_uint16_matrix, tfrom ## _scalar_to_uint16) \ | |
189 INSTALL_CONVOP (octave_ ## tfrom ## _scalar, octave_uint32_matrix, tfrom ## _scalar_to_uint32) \ | |
190 INSTALL_CONVOP (octave_ ## tfrom ## _scalar, octave_uint64_matrix, tfrom ## _scalar_to_uint64) \ | |
191 \ | |
192 INSTALL_CONVOP (octave_ ## tfrom ## _matrix, octave_int8_matrix, tfrom ## _matrix_to_int8) \ | |
193 INSTALL_CONVOP (octave_ ## tfrom ## _matrix, octave_int16_matrix, tfrom ## _matrix_to_int16) \ | |
194 INSTALL_CONVOP (octave_ ## tfrom ## _matrix, octave_int32_matrix, tfrom ## _matrix_to_int32) \ | |
195 INSTALL_CONVOP (octave_ ## tfrom ## _matrix, octave_int64_matrix, tfrom ## _matrix_to_int64) \ | |
196 \ | |
197 INSTALL_CONVOP (octave_ ## tfrom ## _matrix, octave_uint8_matrix, tfrom ## _matrix_to_uint8) \ | |
198 INSTALL_CONVOP (octave_ ## tfrom ## _matrix, octave_uint16_matrix, tfrom ## _matrix_to_uint16) \ | |
199 INSTALL_CONVOP (octave_ ## tfrom ## _matrix, octave_uint32_matrix, tfrom ## _matrix_to_uint32) \ | |
4907 | 200 INSTALL_CONVOP (octave_ ## tfrom ## _matrix, octave_uint64_matrix, tfrom ## _matrix_to_uint64) |
201 | |
202 #define INSTALL_CONVOPS(tfrom) \ | |
203 INSTALL_CONVOP (octave_ ## tfrom, octave_int8_matrix, tfrom ## _to_int8) \ | |
204 INSTALL_CONVOP (octave_ ## tfrom, octave_int16_matrix, tfrom ## _to_int16) \ | |
205 INSTALL_CONVOP (octave_ ## tfrom, octave_int32_matrix, tfrom ## _to_int32) \ | |
206 INSTALL_CONVOP (octave_ ## tfrom, octave_int64_matrix, tfrom ## _to_int64) \ | |
207 \ | |
208 INSTALL_CONVOP (octave_ ## tfrom, octave_uint8_matrix, tfrom ## _to_uint8) \ | |
209 INSTALL_CONVOP (octave_ ## tfrom, octave_uint16_matrix, tfrom ## _to_uint16) \ | |
210 INSTALL_CONVOP (octave_ ## tfrom, octave_uint32_matrix, tfrom ## _to_uint32) \ | |
211 INSTALL_CONVOP (octave_ ## tfrom, octave_uint64_matrix, tfrom ## _to_uint64) | |
4901 | 212 |
213 void | |
214 install_int_conv_ops (void) | |
215 { | |
4907 | 216 INSTALL_CONVOPS (scalar) |
217 INSTALL_CONVOPS (matrix) | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
218 INSTALL_CONVOPS (float_scalar) |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
219 INSTALL_CONVOPS (float_matrix) |
5002 | 220 INSTALL_CONVOPS (bool) |
221 INSTALL_CONVOPS (bool_matrix) | |
4907 | 222 INSTALL_CONVOPS (range) |
6600 | 223 INSTALL_CONVOPS (char_matrix_sq_str) |
224 INSTALL_CONVOPS (char_matrix_dq_str) | |
4901 | 225 |
226 INSTALL_INT_CONV_FUNCTIONS (int8) | |
227 INSTALL_INT_CONV_FUNCTIONS (int16) | |
228 INSTALL_INT_CONV_FUNCTIONS (int32) | |
229 INSTALL_INT_CONV_FUNCTIONS (int64) | |
230 | |
231 INSTALL_INT_CONV_FUNCTIONS (uint8) | |
232 INSTALL_INT_CONV_FUNCTIONS (uint16) | |
233 INSTALL_INT_CONV_FUNCTIONS (uint32) | |
234 INSTALL_INT_CONV_FUNCTIONS (uint64) | |
235 } |