sl@0
|
1 |
/*
|
sl@0
|
2 |
* LIBOIL - Library of Optimized Inner Loops
|
sl@0
|
3 |
* Copyright (c) 2001,2003,2004 David A. Schleef <ds@schleef.org>
|
sl@0
|
4 |
* All rights reserved.
|
sl@0
|
5 |
*
|
sl@0
|
6 |
* Redistribution and use in source and binary forms, with or without
|
sl@0
|
7 |
* modification, are permitted provided that the following conditions
|
sl@0
|
8 |
* are met:
|
sl@0
|
9 |
* 1. Redistributions of source code must retain the above copyright
|
sl@0
|
10 |
* notice, this list of conditions and the following disclaimer.
|
sl@0
|
11 |
* 2. Redistributions in binary form must reproduce the above copyright
|
sl@0
|
12 |
* notice, this list of conditions and the following disclaimer in the
|
sl@0
|
13 |
* documentation and/or other materials provided with the distribution.
|
sl@0
|
14 |
*
|
sl@0
|
15 |
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
sl@0
|
16 |
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
sl@0
|
17 |
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
sl@0
|
18 |
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
|
sl@0
|
19 |
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
sl@0
|
20 |
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
sl@0
|
21 |
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
sl@0
|
22 |
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
sl@0
|
23 |
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
sl@0
|
24 |
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
sl@0
|
25 |
* POSSIBILITY OF SUCH DAMAGE.
|
sl@0
|
26 |
*/
|
sl@0
|
27 |
//Portions Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
|
sl@0
|
28 |
|
sl@0
|
29 |
#ifdef HAVE_CONFIG_H
|
sl@0
|
30 |
#include "config.h"
|
sl@0
|
31 |
#endif
|
sl@0
|
32 |
#include <liboil/liboilfunction.h>
|
sl@0
|
33 |
#include <liboil/liboiltest.h>
|
sl@0
|
34 |
#include <liboil/liboilrandom.h>
|
sl@0
|
35 |
|
sl@0
|
36 |
#include <math.h>
|
sl@0
|
37 |
#include <string.h>
|
sl@0
|
38 |
#include <stdlib.h>
|
sl@0
|
39 |
|
sl@0
|
40 |
|
sl@0
|
41 |
/**
|
sl@0
|
42 |
* SECTION:liboilfuncs-conv
|
sl@0
|
43 |
* @title: Type Conversion
|
sl@0
|
44 |
* @short_description: Type conversion
|
sl@0
|
45 |
*
|
sl@0
|
46 |
* The functions in this section perform type conversion.
|
sl@0
|
47 |
*
|
sl@0
|
48 |
* The <i>conv</i> functions convert value from the source type to
|
sl@0
|
49 |
* the destination type. Conversion of values outside the destination
|
sl@0
|
50 |
* range is undefined and may vary between implementations.
|
sl@0
|
51 |
*
|
sl@0
|
52 |
* The <i>clipconv</i> functions convert values from the source
|
sl@0
|
53 |
* type to the destination type. Conversion of values outside the
|
sl@0
|
54 |
* destination range are saturated to the destination range.
|
sl@0
|
55 |
*
|
sl@0
|
56 |
* The <i>scaleconv</i> functions multiply the source values by a
|
sl@0
|
57 |
* constant factor before converting to the destination type. Conversion
|
sl@0
|
58 |
* of values outside the destination range is undefined and may vary
|
sl@0
|
59 |
* between implementations.
|
sl@0
|
60 |
*
|
sl@0
|
61 |
* Conversion of values from floating point types to integer types
|
sl@0
|
62 |
* is done using a round-to-nearest policy. Rounding of half-integers
|
sl@0
|
63 |
* is undefined and may vary between implementations.
|
sl@0
|
64 |
*/
|
sl@0
|
65 |
|
sl@0
|
66 |
|
sl@0
|
67 |
static void
|
sl@0
|
68 |
conv_test (OilTest *test)
|
sl@0
|
69 |
{
|
sl@0
|
70 |
int i;
|
sl@0
|
71 |
int n;
|
sl@0
|
72 |
double min = 0;
|
sl@0
|
73 |
double max = 1;
|
sl@0
|
74 |
int stride = test->params[OIL_ARG_SRC1].stride;
|
sl@0
|
75 |
void *data = oil_test_get_source_data (test, OIL_ARG_SRC1);
|
sl@0
|
76 |
|
sl@0
|
77 |
n = test->params[OIL_ARG_SRC1].post_n;
|
sl@0
|
78 |
|
sl@0
|
79 |
switch(test->params[OIL_ARG_DEST1].type) {
|
sl@0
|
80 |
case OIL_TYPE_s8p:
|
sl@0
|
81 |
min = oil_type_min_s8;
|
sl@0
|
82 |
max = oil_type_max_s8;
|
sl@0
|
83 |
break;
|
sl@0
|
84 |
case OIL_TYPE_u8p:
|
sl@0
|
85 |
min = oil_type_min_u8;
|
sl@0
|
86 |
max = oil_type_max_u8;
|
sl@0
|
87 |
break;
|
sl@0
|
88 |
case OIL_TYPE_s16p:
|
sl@0
|
89 |
min = oil_type_min_s16;
|
sl@0
|
90 |
max = oil_type_max_s16;
|
sl@0
|
91 |
break;
|
sl@0
|
92 |
case OIL_TYPE_u16p:
|
sl@0
|
93 |
min = oil_type_min_u16;
|
sl@0
|
94 |
max = oil_type_max_u16;
|
sl@0
|
95 |
break;
|
sl@0
|
96 |
case OIL_TYPE_s32p:
|
sl@0
|
97 |
min = oil_type_min_s32;
|
sl@0
|
98 |
max = oil_type_max_s32;
|
sl@0
|
99 |
break;
|
sl@0
|
100 |
case OIL_TYPE_u32p:
|
sl@0
|
101 |
min = oil_type_min_u32;
|
sl@0
|
102 |
max = oil_type_max_u32;
|
sl@0
|
103 |
break;
|
sl@0
|
104 |
default:
|
sl@0
|
105 |
break;
|
sl@0
|
106 |
}
|
sl@0
|
107 |
|
sl@0
|
108 |
switch (test->params[OIL_ARG_SRC1].type) {
|
sl@0
|
109 |
case OIL_TYPE_f32p:
|
sl@0
|
110 |
for(i=0;i<n;i++){
|
sl@0
|
111 |
int x;
|
sl@0
|
112 |
x = oil_rand_u8() & 0x1;
|
sl@0
|
113 |
switch (x) {
|
sl@0
|
114 |
case 0:
|
sl@0
|
115 |
OIL_GET(data, stride * i, float) =
|
sl@0
|
116 |
oil_rand_f32() * (max - min) + min;
|
sl@0
|
117 |
break;
|
sl@0
|
118 |
case 1:
|
sl@0
|
119 |
if (min < 0) {
|
sl@0
|
120 |
OIL_GET(data, stride * i, float) =
|
sl@0
|
121 |
(oil_rand_f32() - 0.5) * 10;
|
sl@0
|
122 |
} else {
|
sl@0
|
123 |
OIL_GET(data, stride * i, float) = oil_rand_f32() * 10;
|
sl@0
|
124 |
}
|
sl@0
|
125 |
break;
|
sl@0
|
126 |
}
|
sl@0
|
127 |
}
|
sl@0
|
128 |
break;
|
sl@0
|
129 |
case OIL_TYPE_f64p:
|
sl@0
|
130 |
for(i=0;i<n;i++){
|
sl@0
|
131 |
OIL_GET(data, stride * i, double) = oil_rand_f64() * (max - min) + min;
|
sl@0
|
132 |
}
|
sl@0
|
133 |
break;
|
sl@0
|
134 |
default:
|
sl@0
|
135 |
break;
|
sl@0
|
136 |
}
|
sl@0
|
137 |
}
|
sl@0
|
138 |
|
sl@0
|
139 |
#define CONV_DEFINE_REF_CAST(desttype,srctype) \
|
sl@0
|
140 |
static void conv_ ## desttype ## _ ## srctype ## _ref ( \
|
sl@0
|
141 |
oil_type_ ## desttype *dest, \
|
sl@0
|
142 |
int dest_stride, \
|
sl@0
|
143 |
oil_type_ ## srctype *src, \
|
sl@0
|
144 |
int src_stride, int n) \
|
sl@0
|
145 |
{ \
|
sl@0
|
146 |
int i; \
|
sl@0
|
147 |
for(i=0;i<n;i++){ \
|
sl@0
|
148 |
OIL_GET(dest,i*dest_stride, oil_type_ ## desttype) = \
|
sl@0
|
149 |
OIL_GET(src,i*src_stride, oil_type_ ## srctype); \
|
sl@0
|
150 |
} \
|
sl@0
|
151 |
} \
|
sl@0
|
152 |
OIL_DEFINE_CLASS(conv_ ## desttype ## _ ## srctype, \
|
sl@0
|
153 |
"oil_type_" #desttype " *dest, " \
|
sl@0
|
154 |
"int dstr, " \
|
sl@0
|
155 |
"oil_type_" #srctype " *src, " \
|
sl@0
|
156 |
"int sstr, int n"); \
|
sl@0
|
157 |
OIL_DEFINE_IMPL_REF(conv_ ## desttype ## _ ## srctype ## _ref, \
|
sl@0
|
158 |
conv_ ## desttype ## _ ## srctype)
|
sl@0
|
159 |
|
sl@0
|
160 |
#define CONV_DEFINE_FLOAT_REF(desttype,srctype) \
|
sl@0
|
161 |
static void conv_ ## desttype ## _ ## srctype ## _ref ( \
|
sl@0
|
162 |
oil_type_ ## desttype *dest, \
|
sl@0
|
163 |
int dest_stride, \
|
sl@0
|
164 |
oil_type_ ## srctype *src, \
|
sl@0
|
165 |
int src_stride, int n) \
|
sl@0
|
166 |
{ \
|
sl@0
|
167 |
int i; \
|
sl@0
|
168 |
for(i=0;i<n;i++){ \
|
sl@0
|
169 |
OIL_GET(dest,i*dest_stride, oil_type_ ## desttype) = \
|
sl@0
|
170 |
rint(OIL_GET(src,i*src_stride, oil_type_ ## srctype)); \
|
sl@0
|
171 |
} \
|
sl@0
|
172 |
} \
|
sl@0
|
173 |
OIL_DEFINE_CLASS_FULL(conv_ ## desttype ## _ ## srctype, \
|
sl@0
|
174 |
"oil_type_" #desttype " *dest, " \
|
sl@0
|
175 |
"int dstr, " \
|
sl@0
|
176 |
"oil_type_" #srctype " *src, " \
|
sl@0
|
177 |
"int sstr, int n", conv_test); \
|
sl@0
|
178 |
OIL_DEFINE_IMPL_REF(conv_ ## desttype ## _ ## srctype ## _ref, \
|
sl@0
|
179 |
conv_ ## desttype ## _ ## srctype)
|
sl@0
|
180 |
|
sl@0
|
181 |
CONV_DEFINE_REF_CAST(s8,u8);
|
sl@0
|
182 |
CONV_DEFINE_REF_CAST(s8,s16);
|
sl@0
|
183 |
CONV_DEFINE_REF_CAST(s8,u16);
|
sl@0
|
184 |
CONV_DEFINE_REF_CAST(s8,s32);
|
sl@0
|
185 |
CONV_DEFINE_REF_CAST(s8,u32);
|
sl@0
|
186 |
CONV_DEFINE_FLOAT_REF(s8,f32);
|
sl@0
|
187 |
CONV_DEFINE_FLOAT_REF(s8,f64);
|
sl@0
|
188 |
|
sl@0
|
189 |
CONV_DEFINE_REF_CAST(u8,s8);
|
sl@0
|
190 |
CONV_DEFINE_REF_CAST(u8,s16);
|
sl@0
|
191 |
CONV_DEFINE_REF_CAST(u8,u16);
|
sl@0
|
192 |
CONV_DEFINE_REF_CAST(u8,s32);
|
sl@0
|
193 |
CONV_DEFINE_REF_CAST(u8,u32);
|
sl@0
|
194 |
CONV_DEFINE_FLOAT_REF(u8,f32);
|
sl@0
|
195 |
CONV_DEFINE_FLOAT_REF(u8,f64);
|
sl@0
|
196 |
|
sl@0
|
197 |
CONV_DEFINE_REF_CAST(s16,s8);
|
sl@0
|
198 |
CONV_DEFINE_REF_CAST(s16,u8);
|
sl@0
|
199 |
CONV_DEFINE_REF_CAST(s16,u16);
|
sl@0
|
200 |
CONV_DEFINE_REF_CAST(s16,s32);
|
sl@0
|
201 |
CONV_DEFINE_REF_CAST(s16,u32);
|
sl@0
|
202 |
CONV_DEFINE_FLOAT_REF(s16,f32);
|
sl@0
|
203 |
CONV_DEFINE_FLOAT_REF(s16,f64);
|
sl@0
|
204 |
|
sl@0
|
205 |
CONV_DEFINE_REF_CAST(u16,s8);
|
sl@0
|
206 |
CONV_DEFINE_REF_CAST(u16,u8);
|
sl@0
|
207 |
CONV_DEFINE_REF_CAST(u16,s16);
|
sl@0
|
208 |
CONV_DEFINE_REF_CAST(u16,s32);
|
sl@0
|
209 |
CONV_DEFINE_REF_CAST(u16,u32);
|
sl@0
|
210 |
CONV_DEFINE_FLOAT_REF(u16,f32);
|
sl@0
|
211 |
CONV_DEFINE_FLOAT_REF(u16,f64);
|
sl@0
|
212 |
|
sl@0
|
213 |
CONV_DEFINE_REF_CAST(s32,s8);
|
sl@0
|
214 |
CONV_DEFINE_REF_CAST(s32,s16);
|
sl@0
|
215 |
CONV_DEFINE_REF_CAST(s32,u8);
|
sl@0
|
216 |
CONV_DEFINE_REF_CAST(s32,u16);
|
sl@0
|
217 |
CONV_DEFINE_REF_CAST(s32,u32);
|
sl@0
|
218 |
CONV_DEFINE_FLOAT_REF(s32,f32);
|
sl@0
|
219 |
CONV_DEFINE_FLOAT_REF(s32,f64);
|
sl@0
|
220 |
|
sl@0
|
221 |
CONV_DEFINE_REF_CAST(u32,s8);
|
sl@0
|
222 |
CONV_DEFINE_REF_CAST(u32,s16);
|
sl@0
|
223 |
CONV_DEFINE_REF_CAST(u32,u8);
|
sl@0
|
224 |
CONV_DEFINE_REF_CAST(u32,u16);
|
sl@0
|
225 |
CONV_DEFINE_REF_CAST(u32,s32);
|
sl@0
|
226 |
CONV_DEFINE_FLOAT_REF(u32,f32);
|
sl@0
|
227 |
CONV_DEFINE_FLOAT_REF(u32,f64);
|
sl@0
|
228 |
|
sl@0
|
229 |
CONV_DEFINE_REF_CAST(f32,s8);
|
sl@0
|
230 |
CONV_DEFINE_REF_CAST(f32,s16);
|
sl@0
|
231 |
CONV_DEFINE_REF_CAST(f32,u8);
|
sl@0
|
232 |
CONV_DEFINE_REF_CAST(f32,u16);
|
sl@0
|
233 |
CONV_DEFINE_REF_CAST(f32,s32);
|
sl@0
|
234 |
CONV_DEFINE_REF_CAST(f32,u32);
|
sl@0
|
235 |
CONV_DEFINE_REF_CAST(f32,f64);
|
sl@0
|
236 |
|
sl@0
|
237 |
CONV_DEFINE_REF_CAST(f64,s8);
|
sl@0
|
238 |
CONV_DEFINE_REF_CAST(f64,u8);
|
sl@0
|
239 |
CONV_DEFINE_REF_CAST(f64,s16);
|
sl@0
|
240 |
CONV_DEFINE_REF_CAST(f64,u16);
|
sl@0
|
241 |
CONV_DEFINE_REF_CAST(f64,s32);
|
sl@0
|
242 |
CONV_DEFINE_REF_CAST(f64,u32);
|
sl@0
|
243 |
CONV_DEFINE_REF_CAST(f64,f32);
|
sl@0
|
244 |
|
sl@0
|
245 |
|
sl@0
|
246 |
|
sl@0
|
247 |
|
sl@0
|
248 |
#define CLIPCONV_DEFINE_BOTH_REF(desttype,srctype) \
|
sl@0
|
249 |
static void clipconv_ ## desttype ## _ ## srctype ## _ref ( \
|
sl@0
|
250 |
oil_type_ ## desttype *dest, \
|
sl@0
|
251 |
int dest_stride, \
|
sl@0
|
252 |
oil_type_ ## srctype *src, \
|
sl@0
|
253 |
int src_stride, int n) \
|
sl@0
|
254 |
{ \
|
sl@0
|
255 |
int i; \
|
sl@0
|
256 |
oil_type_ ## srctype x; \
|
sl@0
|
257 |
for(i=0;i<n;i++){ \
|
sl@0
|
258 |
x = OIL_GET(src,i*src_stride, oil_type_ ## srctype); \
|
sl@0
|
259 |
if(x<oil_type_min_ ## desttype) x=oil_type_min_ ## desttype; \
|
sl@0
|
260 |
if(x>oil_type_max_ ## desttype) x=oil_type_max_ ## desttype; \
|
sl@0
|
261 |
OIL_GET(dest,i*dest_stride, oil_type_ ## desttype) = x; \
|
sl@0
|
262 |
} \
|
sl@0
|
263 |
} \
|
sl@0
|
264 |
OIL_DEFINE_CLASS(clipconv_ ## desttype ## _ ## srctype, \
|
sl@0
|
265 |
"oil_type_" #desttype " *dest, " \
|
sl@0
|
266 |
"int dstr, " \
|
sl@0
|
267 |
"oil_type_" #srctype " *src, " \
|
sl@0
|
268 |
"int sstr, int n"); \
|
sl@0
|
269 |
OIL_DEFINE_IMPL_REF(clipconv_ ## desttype ## _ ## srctype ## _ref, \
|
sl@0
|
270 |
clipconv_ ## desttype ## _ ## srctype)
|
sl@0
|
271 |
|
sl@0
|
272 |
#define CLIPCONV_DEFINE_UPPER_REF(desttype,srctype) \
|
sl@0
|
273 |
static void clipconv_ ## desttype ## _ ## srctype ## _ref ( \
|
sl@0
|
274 |
oil_type_ ## desttype *dest, \
|
sl@0
|
275 |
int dest_stride, \
|
sl@0
|
276 |
oil_type_ ## srctype *src, \
|
sl@0
|
277 |
int src_stride, int n) \
|
sl@0
|
278 |
{ \
|
sl@0
|
279 |
int i; \
|
sl@0
|
280 |
oil_type_ ## srctype x; \
|
sl@0
|
281 |
for(i=0;i<n;i++){ \
|
sl@0
|
282 |
x = OIL_GET(src,i*src_stride, oil_type_ ## srctype); \
|
sl@0
|
283 |
if(x>oil_type_max_ ## desttype) x=oil_type_max_ ## desttype; \
|
sl@0
|
284 |
OIL_GET(dest,i*dest_stride, oil_type_ ## desttype) = x; \
|
sl@0
|
285 |
} \
|
sl@0
|
286 |
} \
|
sl@0
|
287 |
OIL_DEFINE_CLASS(clipconv_ ## desttype ## _ ## srctype, \
|
sl@0
|
288 |
"oil_type_" #desttype " *dest, " \
|
sl@0
|
289 |
"int dstr, " \
|
sl@0
|
290 |
"oil_type_" #srctype " *src, " \
|
sl@0
|
291 |
"int sstr, int n"); \
|
sl@0
|
292 |
OIL_DEFINE_IMPL_REF(clipconv_ ## desttype ## _ ## srctype ## _ref, \
|
sl@0
|
293 |
clipconv_ ## desttype ## _ ## srctype)
|
sl@0
|
294 |
|
sl@0
|
295 |
#define CLIPCONV_DEFINE_LOWER_REF(desttype,srctype) \
|
sl@0
|
296 |
static void clipconv_ ## desttype ## _ ## srctype ## _ref ( \
|
sl@0
|
297 |
oil_type_ ## desttype *dest, \
|
sl@0
|
298 |
int dest_stride, \
|
sl@0
|
299 |
oil_type_ ## srctype *src, \
|
sl@0
|
300 |
int src_stride, int n) \
|
sl@0
|
301 |
{ \
|
sl@0
|
302 |
int i; \
|
sl@0
|
303 |
oil_type_ ## srctype x; \
|
sl@0
|
304 |
for(i=0;i<n;i++){ \
|
sl@0
|
305 |
x = OIL_GET(src,i*src_stride, oil_type_ ## srctype); \
|
sl@0
|
306 |
if(x<oil_type_min_ ## desttype) x=oil_type_min_ ## desttype; \
|
sl@0
|
307 |
OIL_GET(dest,i*dest_stride, oil_type_ ## desttype) = x; \
|
sl@0
|
308 |
} \
|
sl@0
|
309 |
} \
|
sl@0
|
310 |
OIL_DEFINE_CLASS(clipconv_ ## desttype ## _ ## srctype, \
|
sl@0
|
311 |
"oil_type_" #desttype " *dest, " \
|
sl@0
|
312 |
"int dstr, " \
|
sl@0
|
313 |
"oil_type_" #srctype " *src, " \
|
sl@0
|
314 |
"int sstr, int n"); \
|
sl@0
|
315 |
OIL_DEFINE_IMPL_REF(clipconv_ ## desttype ## _ ## srctype ## _ref, \
|
sl@0
|
316 |
clipconv_ ## desttype ## _ ## srctype)
|
sl@0
|
317 |
|
sl@0
|
318 |
#define CLIPCONV_DEFINE_FLOAT_REF(desttype,srctype) \
|
sl@0
|
319 |
static void clipconv_ ## desttype ## _ ## srctype ## _ref ( \
|
sl@0
|
320 |
oil_type_ ## desttype *dest, \
|
sl@0
|
321 |
int dest_stride, \
|
sl@0
|
322 |
oil_type_ ## srctype *src, \
|
sl@0
|
323 |
int src_stride, int n) \
|
sl@0
|
324 |
{ \
|
sl@0
|
325 |
int i; \
|
sl@0
|
326 |
oil_type_ ## srctype x; \
|
sl@0
|
327 |
for(i=0;i<n;i++){ \
|
sl@0
|
328 |
x = OIL_GET(src,i*src_stride, oil_type_ ## srctype); \
|
sl@0
|
329 |
if(x<oil_type_min_ ## desttype) x=oil_type_min_ ## desttype; \
|
sl@0
|
330 |
if(x>oil_type_max_ ## desttype) x=oil_type_max_ ## desttype; \
|
sl@0
|
331 |
OIL_GET(dest,i*dest_stride, oil_type_ ## desttype) = rint(x); \
|
sl@0
|
332 |
} \
|
sl@0
|
333 |
} \
|
sl@0
|
334 |
OIL_DEFINE_CLASS(clipconv_ ## desttype ## _ ## srctype, \
|
sl@0
|
335 |
"oil_type_" #desttype " *dest, " \
|
sl@0
|
336 |
"int dstr, " \
|
sl@0
|
337 |
"oil_type_" #srctype " *src, " \
|
sl@0
|
338 |
"int sstr, int n"); \
|
sl@0
|
339 |
OIL_DEFINE_IMPL_REF(clipconv_ ## desttype ## _ ## srctype ## _ref, \
|
sl@0
|
340 |
clipconv_ ## desttype ## _ ## srctype)
|
sl@0
|
341 |
|
sl@0
|
342 |
/* clip upper */
|
sl@0
|
343 |
CLIPCONV_DEFINE_UPPER_REF(s8,u8);
|
sl@0
|
344 |
CLIPCONV_DEFINE_UPPER_REF(s8,u16);
|
sl@0
|
345 |
CLIPCONV_DEFINE_UPPER_REF(s8,u32);
|
sl@0
|
346 |
CLIPCONV_DEFINE_UPPER_REF(u8,u32);
|
sl@0
|
347 |
CLIPCONV_DEFINE_UPPER_REF(u8,u16);
|
sl@0
|
348 |
CLIPCONV_DEFINE_UPPER_REF(s16,u16);
|
sl@0
|
349 |
CLIPCONV_DEFINE_UPPER_REF(s16,u32);
|
sl@0
|
350 |
CLIPCONV_DEFINE_UPPER_REF(s32,u32);
|
sl@0
|
351 |
CLIPCONV_DEFINE_UPPER_REF(u16,u32);
|
sl@0
|
352 |
|
sl@0
|
353 |
/* clip both */
|
sl@0
|
354 |
CLIPCONV_DEFINE_BOTH_REF(s8,s16);
|
sl@0
|
355 |
CLIPCONV_DEFINE_BOTH_REF(s8,s32);
|
sl@0
|
356 |
CLIPCONV_DEFINE_BOTH_REF(u8,s16);
|
sl@0
|
357 |
CLIPCONV_DEFINE_BOTH_REF(u8,s32);
|
sl@0
|
358 |
CLIPCONV_DEFINE_BOTH_REF(s16,s32);
|
sl@0
|
359 |
CLIPCONV_DEFINE_BOTH_REF(u16,s32);
|
sl@0
|
360 |
|
sl@0
|
361 |
/* clip lower */
|
sl@0
|
362 |
CLIPCONV_DEFINE_LOWER_REF(u8,s8);
|
sl@0
|
363 |
CLIPCONV_DEFINE_LOWER_REF(u16,s16);
|
sl@0
|
364 |
CLIPCONV_DEFINE_LOWER_REF(u32,s32);
|
sl@0
|
365 |
|
sl@0
|
366 |
/* clip both, float */
|
sl@0
|
367 |
CLIPCONV_DEFINE_FLOAT_REF(s8,f32);
|
sl@0
|
368 |
CLIPCONV_DEFINE_FLOAT_REF(s8,f64);
|
sl@0
|
369 |
CLIPCONV_DEFINE_FLOAT_REF(u8,f32);
|
sl@0
|
370 |
CLIPCONV_DEFINE_FLOAT_REF(u8,f64);
|
sl@0
|
371 |
CLIPCONV_DEFINE_FLOAT_REF(s16,f32);
|
sl@0
|
372 |
CLIPCONV_DEFINE_FLOAT_REF(s16,f64);
|
sl@0
|
373 |
CLIPCONV_DEFINE_FLOAT_REF(u16,f32);
|
sl@0
|
374 |
CLIPCONV_DEFINE_FLOAT_REF(u16,f64);
|
sl@0
|
375 |
CLIPCONV_DEFINE_FLOAT_REF(s32,f32);
|
sl@0
|
376 |
CLIPCONV_DEFINE_FLOAT_REF(s32,f64);
|
sl@0
|
377 |
CLIPCONV_DEFINE_FLOAT_REF(u32,f32);
|
sl@0
|
378 |
CLIPCONV_DEFINE_FLOAT_REF(u32,f64);
|
sl@0
|
379 |
|
sl@0
|
380 |
|
sl@0
|
381 |
|
sl@0
|
382 |
#define SCALECONV_DEFINE_REF_RINT(desttype,srctype) \
|
sl@0
|
383 |
static void scaleconv_ ## desttype ## _ ## srctype ## _ref ( \
|
sl@0
|
384 |
oil_type_ ## desttype *dest, \
|
sl@0
|
385 |
oil_type_ ## srctype *src, \
|
sl@0
|
386 |
int n, double *offset, double *multiplier) \
|
sl@0
|
387 |
{ \
|
sl@0
|
388 |
int i; \
|
sl@0
|
389 |
double x; \
|
sl@0
|
390 |
for(i=0;i<n;i++){ \
|
sl@0
|
391 |
x = *offset + *multiplier * src[i]; \
|
sl@0
|
392 |
if(x<oil_type_min_ ## desttype) x=oil_type_min_ ## desttype; \
|
sl@0
|
393 |
if(x>oil_type_max_ ## desttype) x=oil_type_max_ ## desttype; \
|
sl@0
|
394 |
dest[i] = rint(x); \
|
sl@0
|
395 |
} \
|
sl@0
|
396 |
} \
|
sl@0
|
397 |
OIL_DEFINE_CLASS(scaleconv_ ## desttype ## _ ## srctype, \
|
sl@0
|
398 |
"oil_type_" #desttype " *dest, " \
|
sl@0
|
399 |
"oil_type_" #srctype " *src, " \
|
sl@0
|
400 |
"int n, double *s2_1, double *s3_1"); \
|
sl@0
|
401 |
OIL_DEFINE_IMPL_REF(scaleconv_ ## desttype ## _ ## srctype ## _ref, \
|
sl@0
|
402 |
scaleconv_ ## desttype ## _ ## srctype)
|
sl@0
|
403 |
|
sl@0
|
404 |
#define SCALECONV_DEFINE_REF_CAST(desttype,srctype) \
|
sl@0
|
405 |
static void scaleconv_ ## desttype ## _ ## srctype ## _ref ( \
|
sl@0
|
406 |
oil_type_ ## desttype *dest, \
|
sl@0
|
407 |
oil_type_ ## srctype *src, \
|
sl@0
|
408 |
int n, double *offset, double *multiplier) \
|
sl@0
|
409 |
{ \
|
sl@0
|
410 |
int i; \
|
sl@0
|
411 |
for(i=0;i<n;i++){ \
|
sl@0
|
412 |
dest[i] = *offset + *multiplier * src[i]; \
|
sl@0
|
413 |
} \
|
sl@0
|
414 |
} \
|
sl@0
|
415 |
OIL_DEFINE_CLASS(scaleconv_ ## desttype ## _ ## srctype, \
|
sl@0
|
416 |
"oil_type_" #desttype " *dest, " \
|
sl@0
|
417 |
"oil_type_" #srctype " *src, " \
|
sl@0
|
418 |
"int n, double *s2_1, double *s3_1"); \
|
sl@0
|
419 |
OIL_DEFINE_IMPL_REF(scaleconv_ ## desttype ## _ ## srctype ## _ref, \
|
sl@0
|
420 |
scaleconv_ ## desttype ## _ ## srctype)
|
sl@0
|
421 |
|
sl@0
|
422 |
SCALECONV_DEFINE_REF_RINT(s8,f32);
|
sl@0
|
423 |
SCALECONV_DEFINE_REF_RINT(u8,f32);
|
sl@0
|
424 |
SCALECONV_DEFINE_REF_RINT(s16,f32);
|
sl@0
|
425 |
SCALECONV_DEFINE_REF_RINT(u16,f32);
|
sl@0
|
426 |
SCALECONV_DEFINE_REF_RINT(s32,f32);
|
sl@0
|
427 |
SCALECONV_DEFINE_REF_RINT(u32,f32);
|
sl@0
|
428 |
|
sl@0
|
429 |
SCALECONV_DEFINE_REF_RINT(s8,f64);
|
sl@0
|
430 |
SCALECONV_DEFINE_REF_RINT(u8,f64);
|
sl@0
|
431 |
SCALECONV_DEFINE_REF_RINT(s16,f64);
|
sl@0
|
432 |
SCALECONV_DEFINE_REF_RINT(u16,f64);
|
sl@0
|
433 |
SCALECONV_DEFINE_REF_RINT(s32,f64);
|
sl@0
|
434 |
SCALECONV_DEFINE_REF_RINT(u32,f64);
|
sl@0
|
435 |
|
sl@0
|
436 |
SCALECONV_DEFINE_REF_CAST(f32,s8);
|
sl@0
|
437 |
SCALECONV_DEFINE_REF_CAST(f32,u8);
|
sl@0
|
438 |
SCALECONV_DEFINE_REF_CAST(f32,s16);
|
sl@0
|
439 |
SCALECONV_DEFINE_REF_CAST(f32,u16);
|
sl@0
|
440 |
SCALECONV_DEFINE_REF_CAST(f32,s32);
|
sl@0
|
441 |
SCALECONV_DEFINE_REF_CAST(f32,u32);
|
sl@0
|
442 |
|
sl@0
|
443 |
SCALECONV_DEFINE_REF_CAST(f64,s8);
|
sl@0
|
444 |
SCALECONV_DEFINE_REF_CAST(f64,u8);
|
sl@0
|
445 |
SCALECONV_DEFINE_REF_CAST(f64,s16);
|
sl@0
|
446 |
SCALECONV_DEFINE_REF_CAST(f64,u16);
|
sl@0
|
447 |
SCALECONV_DEFINE_REF_CAST(f64,s32);
|
sl@0
|
448 |
SCALECONV_DEFINE_REF_CAST(f64,u32);
|
sl@0
|
449 |
|
sl@0
|
450 |
/**
|
sl@0
|
451 |
* oil_conv_f32_f64:
|
sl@0
|
452 |
* @dest:
|
sl@0
|
453 |
* @dstr:
|
sl@0
|
454 |
* @src:
|
sl@0
|
455 |
* @sstr:
|
sl@0
|
456 |
* @n:
|
sl@0
|
457 |
*
|
sl@0
|
458 |
* Converts elements in from the source type
|
sl@0
|
459 |
* to the destination type and places the result in .
|
sl@0
|
460 |
* Values outside the destination range are undefined
|
sl@0
|
461 |
* and implementation dependent.
|
sl@0
|
462 |
* See the comments at the beginning of this section.
|
sl@0
|
463 |
*/
|
sl@0
|
464 |
|
sl@0
|
465 |
/**
|
sl@0
|
466 |
* oil_conv_f32_s16:
|
sl@0
|
467 |
* @dest:
|
sl@0
|
468 |
* @dstr:
|
sl@0
|
469 |
* @src:
|
sl@0
|
470 |
* @sstr:
|
sl@0
|
471 |
* @n:
|
sl@0
|
472 |
*
|
sl@0
|
473 |
* Converts elements in from the source type
|
sl@0
|
474 |
* to the destination type and places the result in .
|
sl@0
|
475 |
* Values outside the destination range are undefined
|
sl@0
|
476 |
* and implementation dependent.
|
sl@0
|
477 |
* See the comments at the beginning of this section.
|
sl@0
|
478 |
*/
|
sl@0
|
479 |
|
sl@0
|
480 |
/**
|
sl@0
|
481 |
* oil_conv_f32_s32:
|
sl@0
|
482 |
* @dest:
|
sl@0
|
483 |
* @dstr:
|
sl@0
|
484 |
* @src:
|
sl@0
|
485 |
* @sstr:
|
sl@0
|
486 |
* @n:
|
sl@0
|
487 |
*
|
sl@0
|
488 |
* Converts elements in from the source type
|
sl@0
|
489 |
* to the destination type and places the result in .
|
sl@0
|
490 |
* Values outside the destination range are undefined
|
sl@0
|
491 |
* and implementation dependent.
|
sl@0
|
492 |
* See the comments at the beginning of this section.
|
sl@0
|
493 |
*/
|
sl@0
|
494 |
|
sl@0
|
495 |
/**
|
sl@0
|
496 |
* oil_conv_f32_s8:
|
sl@0
|
497 |
* @dest:
|
sl@0
|
498 |
* @dstr:
|
sl@0
|
499 |
* @src:
|
sl@0
|
500 |
* @sstr:
|
sl@0
|
501 |
* @n:
|
sl@0
|
502 |
*
|
sl@0
|
503 |
* Converts elements in from the source type
|
sl@0
|
504 |
* to the destination type and places the result in .
|
sl@0
|
505 |
* Values outside the destination range are undefined
|
sl@0
|
506 |
* and implementation dependent.
|
sl@0
|
507 |
* See the comments at the beginning of this section.
|
sl@0
|
508 |
*/
|
sl@0
|
509 |
|
sl@0
|
510 |
/**
|
sl@0
|
511 |
* oil_conv_f32_u16:
|
sl@0
|
512 |
* @dest:
|
sl@0
|
513 |
* @dstr:
|
sl@0
|
514 |
* @src:
|
sl@0
|
515 |
* @sstr:
|
sl@0
|
516 |
* @n:
|
sl@0
|
517 |
*
|
sl@0
|
518 |
* Converts elements in from the source type
|
sl@0
|
519 |
* to the destination type and places the result in .
|
sl@0
|
520 |
* Values outside the destination range are undefined
|
sl@0
|
521 |
* and implementation dependent.
|
sl@0
|
522 |
* See the comments at the beginning of this section.
|
sl@0
|
523 |
*/
|
sl@0
|
524 |
|
sl@0
|
525 |
/**
|
sl@0
|
526 |
* oil_conv_f32_u32:
|
sl@0
|
527 |
* @dest:
|
sl@0
|
528 |
* @dstr:
|
sl@0
|
529 |
* @src:
|
sl@0
|
530 |
* @sstr:
|
sl@0
|
531 |
* @n:
|
sl@0
|
532 |
*
|
sl@0
|
533 |
* Converts elements in from the source type
|
sl@0
|
534 |
* to the destination type and places the result in .
|
sl@0
|
535 |
* Values outside the destination range are undefined
|
sl@0
|
536 |
* and implementation dependent.
|
sl@0
|
537 |
* See the comments at the beginning of this section.
|
sl@0
|
538 |
*/
|
sl@0
|
539 |
|
sl@0
|
540 |
/**
|
sl@0
|
541 |
* oil_conv_f32_u8:
|
sl@0
|
542 |
* @dest:
|
sl@0
|
543 |
* @dstr:
|
sl@0
|
544 |
* @src:
|
sl@0
|
545 |
* @sstr:
|
sl@0
|
546 |
* @n:
|
sl@0
|
547 |
*
|
sl@0
|
548 |
* Converts elements in from the source type
|
sl@0
|
549 |
* to the destination type and places the result in .
|
sl@0
|
550 |
* Values outside the destination range are undefined
|
sl@0
|
551 |
* and implementation dependent.
|
sl@0
|
552 |
* See the comments at the beginning of this section.
|
sl@0
|
553 |
*/
|
sl@0
|
554 |
|
sl@0
|
555 |
/**
|
sl@0
|
556 |
* oil_conv_f64_f32:
|
sl@0
|
557 |
* @dest:
|
sl@0
|
558 |
* @dstr:
|
sl@0
|
559 |
* @src:
|
sl@0
|
560 |
* @sstr:
|
sl@0
|
561 |
* @n:
|
sl@0
|
562 |
*
|
sl@0
|
563 |
* Converts elements in from the source type
|
sl@0
|
564 |
* to the destination type and places the result in .
|
sl@0
|
565 |
* Values outside the destination range are undefined
|
sl@0
|
566 |
* and implementation dependent.
|
sl@0
|
567 |
* See the comments at the beginning of this section.
|
sl@0
|
568 |
*/
|
sl@0
|
569 |
|
sl@0
|
570 |
/**
|
sl@0
|
571 |
* oil_conv_f64_s16:
|
sl@0
|
572 |
* @dest:
|
sl@0
|
573 |
* @dstr:
|
sl@0
|
574 |
* @src:
|
sl@0
|
575 |
* @sstr:
|
sl@0
|
576 |
* @n:
|
sl@0
|
577 |
*
|
sl@0
|
578 |
* Converts elements in from the source type
|
sl@0
|
579 |
* to the destination type and places the result in .
|
sl@0
|
580 |
* Values outside the destination range are undefined
|
sl@0
|
581 |
* and implementation dependent.
|
sl@0
|
582 |
* See the comments at the beginning of this section.
|
sl@0
|
583 |
*/
|
sl@0
|
584 |
|
sl@0
|
585 |
/**
|
sl@0
|
586 |
* oil_conv_f64_s32:
|
sl@0
|
587 |
* @dest:
|
sl@0
|
588 |
* @dstr:
|
sl@0
|
589 |
* @src:
|
sl@0
|
590 |
* @sstr:
|
sl@0
|
591 |
* @n:
|
sl@0
|
592 |
*
|
sl@0
|
593 |
* Converts elements in from the source type
|
sl@0
|
594 |
* to the destination type and places the result in .
|
sl@0
|
595 |
* Values outside the destination range are undefined
|
sl@0
|
596 |
* and implementation dependent.
|
sl@0
|
597 |
* See the comments at the beginning of this section.
|
sl@0
|
598 |
*/
|
sl@0
|
599 |
|
sl@0
|
600 |
/**
|
sl@0
|
601 |
* oil_conv_f64_s8:
|
sl@0
|
602 |
* @dest:
|
sl@0
|
603 |
* @dstr:
|
sl@0
|
604 |
* @src:
|
sl@0
|
605 |
* @sstr:
|
sl@0
|
606 |
* @n:
|
sl@0
|
607 |
*
|
sl@0
|
608 |
* Converts elements in from the source type
|
sl@0
|
609 |
* to the destination type and places the result in .
|
sl@0
|
610 |
* Values outside the destination range are undefined
|
sl@0
|
611 |
* and implementation dependent.
|
sl@0
|
612 |
* See the comments at the beginning of this section.
|
sl@0
|
613 |
*/
|
sl@0
|
614 |
|
sl@0
|
615 |
/**
|
sl@0
|
616 |
* oil_conv_f64_u16:
|
sl@0
|
617 |
* @dest:
|
sl@0
|
618 |
* @dstr:
|
sl@0
|
619 |
* @src:
|
sl@0
|
620 |
* @sstr:
|
sl@0
|
621 |
* @n:
|
sl@0
|
622 |
*
|
sl@0
|
623 |
* Converts elements in from the source type
|
sl@0
|
624 |
* to the destination type and places the result in .
|
sl@0
|
625 |
* Values outside the destination range are undefined
|
sl@0
|
626 |
* and implementation dependent.
|
sl@0
|
627 |
* See the comments at the beginning of this section.
|
sl@0
|
628 |
*/
|
sl@0
|
629 |
|
sl@0
|
630 |
/**
|
sl@0
|
631 |
* oil_conv_f64_u32:
|
sl@0
|
632 |
* @dest:
|
sl@0
|
633 |
* @dstr:
|
sl@0
|
634 |
* @src:
|
sl@0
|
635 |
* @sstr:
|
sl@0
|
636 |
* @n:
|
sl@0
|
637 |
*
|
sl@0
|
638 |
* Converts elements in from the source type
|
sl@0
|
639 |
* to the destination type and places the result in .
|
sl@0
|
640 |
* Values outside the destination range are undefined
|
sl@0
|
641 |
* and implementation dependent.
|
sl@0
|
642 |
* See the comments at the beginning of this section.
|
sl@0
|
643 |
*/
|
sl@0
|
644 |
|
sl@0
|
645 |
/**
|
sl@0
|
646 |
* oil_conv_f64_u8:
|
sl@0
|
647 |
* @dest:
|
sl@0
|
648 |
* @dstr:
|
sl@0
|
649 |
* @src:
|
sl@0
|
650 |
* @sstr:
|
sl@0
|
651 |
* @n:
|
sl@0
|
652 |
*
|
sl@0
|
653 |
* Converts elements in from the source type
|
sl@0
|
654 |
* to the destination type and places the result in .
|
sl@0
|
655 |
* Values outside the destination range are undefined
|
sl@0
|
656 |
* and implementation dependent.
|
sl@0
|
657 |
* See the comments at the beginning of this section.
|
sl@0
|
658 |
*/
|
sl@0
|
659 |
|
sl@0
|
660 |
/**
|
sl@0
|
661 |
* oil_conv_s16_f32:
|
sl@0
|
662 |
* @dest:
|
sl@0
|
663 |
* @dstr:
|
sl@0
|
664 |
* @src:
|
sl@0
|
665 |
* @sstr:
|
sl@0
|
666 |
* @n:
|
sl@0
|
667 |
*
|
sl@0
|
668 |
* Converts elements in from the source type
|
sl@0
|
669 |
* to the destination type and places the result in .
|
sl@0
|
670 |
* Values outside the destination range are undefined
|
sl@0
|
671 |
* and implementation dependent.
|
sl@0
|
672 |
* See the comments at the beginning of this section.
|
sl@0
|
673 |
*/
|
sl@0
|
674 |
|
sl@0
|
675 |
/**
|
sl@0
|
676 |
* oil_conv_s16_f64:
|
sl@0
|
677 |
* @dest:
|
sl@0
|
678 |
* @dstr:
|
sl@0
|
679 |
* @src:
|
sl@0
|
680 |
* @sstr:
|
sl@0
|
681 |
* @n:
|
sl@0
|
682 |
*
|
sl@0
|
683 |
* Converts elements in from the source type
|
sl@0
|
684 |
* to the destination type and places the result in .
|
sl@0
|
685 |
* Values outside the destination range are undefined
|
sl@0
|
686 |
* and implementation dependent.
|
sl@0
|
687 |
* See the comments at the beginning of this section.
|
sl@0
|
688 |
*/
|
sl@0
|
689 |
|
sl@0
|
690 |
/**
|
sl@0
|
691 |
* oil_conv_s16_s32:
|
sl@0
|
692 |
* @dest:
|
sl@0
|
693 |
* @dstr:
|
sl@0
|
694 |
* @src:
|
sl@0
|
695 |
* @sstr:
|
sl@0
|
696 |
* @n:
|
sl@0
|
697 |
*
|
sl@0
|
698 |
* Converts elements in from the source type
|
sl@0
|
699 |
* to the destination type and places the result in .
|
sl@0
|
700 |
* Values outside the destination range are undefined
|
sl@0
|
701 |
* and implementation dependent.
|
sl@0
|
702 |
* See the comments at the beginning of this section.
|
sl@0
|
703 |
*/
|
sl@0
|
704 |
|
sl@0
|
705 |
/**
|
sl@0
|
706 |
* oil_conv_s16_s8:
|
sl@0
|
707 |
* @dest:
|
sl@0
|
708 |
* @dstr:
|
sl@0
|
709 |
* @src:
|
sl@0
|
710 |
* @sstr:
|
sl@0
|
711 |
* @n:
|
sl@0
|
712 |
*
|
sl@0
|
713 |
* Converts elements in from the source type
|
sl@0
|
714 |
* to the destination type and places the result in .
|
sl@0
|
715 |
* Values outside the destination range are undefined
|
sl@0
|
716 |
* and implementation dependent.
|
sl@0
|
717 |
* See the comments at the beginning of this section.
|
sl@0
|
718 |
*/
|
sl@0
|
719 |
|
sl@0
|
720 |
/**
|
sl@0
|
721 |
* oil_conv_s16_u16:
|
sl@0
|
722 |
* @dest:
|
sl@0
|
723 |
* @dstr:
|
sl@0
|
724 |
* @src:
|
sl@0
|
725 |
* @sstr:
|
sl@0
|
726 |
* @n:
|
sl@0
|
727 |
*
|
sl@0
|
728 |
* Converts elements in from the source type
|
sl@0
|
729 |
* to the destination type and places the result in .
|
sl@0
|
730 |
* Values outside the destination range are undefined
|
sl@0
|
731 |
* and implementation dependent.
|
sl@0
|
732 |
* See the comments at the beginning of this section.
|
sl@0
|
733 |
*/
|
sl@0
|
734 |
|
sl@0
|
735 |
/**
|
sl@0
|
736 |
* oil_conv_s16_u32:
|
sl@0
|
737 |
* @dest:
|
sl@0
|
738 |
* @dstr:
|
sl@0
|
739 |
* @src:
|
sl@0
|
740 |
* @sstr:
|
sl@0
|
741 |
* @n:
|
sl@0
|
742 |
*
|
sl@0
|
743 |
* Converts elements in from the source type
|
sl@0
|
744 |
* to the destination type and places the result in .
|
sl@0
|
745 |
* Values outside the destination range are undefined
|
sl@0
|
746 |
* and implementation dependent.
|
sl@0
|
747 |
* See the comments at the beginning of this section.
|
sl@0
|
748 |
*/
|
sl@0
|
749 |
|
sl@0
|
750 |
/**
|
sl@0
|
751 |
* oil_conv_s16_u8:
|
sl@0
|
752 |
* @dest:
|
sl@0
|
753 |
* @dstr:
|
sl@0
|
754 |
* @src:
|
sl@0
|
755 |
* @sstr:
|
sl@0
|
756 |
* @n:
|
sl@0
|
757 |
*
|
sl@0
|
758 |
* Converts elements in from the source type
|
sl@0
|
759 |
* to the destination type and places the result in .
|
sl@0
|
760 |
* Values outside the destination range are undefined
|
sl@0
|
761 |
* and implementation dependent.
|
sl@0
|
762 |
* See the comments at the beginning of this section.
|
sl@0
|
763 |
*/
|
sl@0
|
764 |
|
sl@0
|
765 |
/**
|
sl@0
|
766 |
* oil_conv_s32_f32:
|
sl@0
|
767 |
* @dest:
|
sl@0
|
768 |
* @dstr:
|
sl@0
|
769 |
* @src:
|
sl@0
|
770 |
* @sstr:
|
sl@0
|
771 |
* @n:
|
sl@0
|
772 |
*
|
sl@0
|
773 |
* Converts elements in from the source type
|
sl@0
|
774 |
* to the destination type and places the result in .
|
sl@0
|
775 |
* Values outside the destination range are undefined
|
sl@0
|
776 |
* and implementation dependent.
|
sl@0
|
777 |
* See the comments at the beginning of this section.
|
sl@0
|
778 |
*/
|
sl@0
|
779 |
|
sl@0
|
780 |
/**
|
sl@0
|
781 |
* oil_conv_s32_f64:
|
sl@0
|
782 |
* @dest:
|
sl@0
|
783 |
* @dstr:
|
sl@0
|
784 |
* @src:
|
sl@0
|
785 |
* @sstr:
|
sl@0
|
786 |
* @n:
|
sl@0
|
787 |
*
|
sl@0
|
788 |
* Converts elements in from the source type
|
sl@0
|
789 |
* to the destination type and places the result in .
|
sl@0
|
790 |
* Values outside the destination range are undefined
|
sl@0
|
791 |
* and implementation dependent.
|
sl@0
|
792 |
* See the comments at the beginning of this section.
|
sl@0
|
793 |
*/
|
sl@0
|
794 |
|
sl@0
|
795 |
/**
|
sl@0
|
796 |
* oil_conv_s32_s16:
|
sl@0
|
797 |
* @dest:
|
sl@0
|
798 |
* @dstr:
|
sl@0
|
799 |
* @src:
|
sl@0
|
800 |
* @sstr:
|
sl@0
|
801 |
* @n:
|
sl@0
|
802 |
*
|
sl@0
|
803 |
* Converts elements in from the source type
|
sl@0
|
804 |
* to the destination type and places the result in .
|
sl@0
|
805 |
* Values outside the destination range are undefined
|
sl@0
|
806 |
* and implementation dependent.
|
sl@0
|
807 |
* See the comments at the beginning of this section.
|
sl@0
|
808 |
*/
|
sl@0
|
809 |
|
sl@0
|
810 |
/**
|
sl@0
|
811 |
* oil_conv_s32_s8:
|
sl@0
|
812 |
* @dest:
|
sl@0
|
813 |
* @dstr:
|
sl@0
|
814 |
* @src:
|
sl@0
|
815 |
* @sstr:
|
sl@0
|
816 |
* @n:
|
sl@0
|
817 |
*
|
sl@0
|
818 |
* Converts elements in from the source type
|
sl@0
|
819 |
* to the destination type and places the result in .
|
sl@0
|
820 |
* Values outside the destination range are undefined
|
sl@0
|
821 |
* and implementation dependent.
|
sl@0
|
822 |
* See the comments at the beginning of this section.
|
sl@0
|
823 |
*/
|
sl@0
|
824 |
|
sl@0
|
825 |
/**
|
sl@0
|
826 |
* oil_conv_s32_u16:
|
sl@0
|
827 |
* @dest:
|
sl@0
|
828 |
* @dstr:
|
sl@0
|
829 |
* @src:
|
sl@0
|
830 |
* @sstr:
|
sl@0
|
831 |
* @n:
|
sl@0
|
832 |
*
|
sl@0
|
833 |
* Converts elements in from the source type
|
sl@0
|
834 |
* to the destination type and places the result in .
|
sl@0
|
835 |
* Values outside the destination range are undefined
|
sl@0
|
836 |
* and implementation dependent.
|
sl@0
|
837 |
* See the comments at the beginning of this section.
|
sl@0
|
838 |
*/
|
sl@0
|
839 |
|
sl@0
|
840 |
/**
|
sl@0
|
841 |
* oil_conv_s32_u32:
|
sl@0
|
842 |
* @dest:
|
sl@0
|
843 |
* @dstr:
|
sl@0
|
844 |
* @src:
|
sl@0
|
845 |
* @sstr:
|
sl@0
|
846 |
* @n:
|
sl@0
|
847 |
*
|
sl@0
|
848 |
* Converts elements in from the source type
|
sl@0
|
849 |
* to the destination type and places the result in .
|
sl@0
|
850 |
* Values outside the destination range are undefined
|
sl@0
|
851 |
* and implementation dependent.
|
sl@0
|
852 |
* See the comments at the beginning of this section.
|
sl@0
|
853 |
*/
|
sl@0
|
854 |
|
sl@0
|
855 |
/**
|
sl@0
|
856 |
* oil_conv_s32_u8:
|
sl@0
|
857 |
* @dest:
|
sl@0
|
858 |
* @dstr:
|
sl@0
|
859 |
* @src:
|
sl@0
|
860 |
* @sstr:
|
sl@0
|
861 |
* @n:
|
sl@0
|
862 |
*
|
sl@0
|
863 |
* Converts elements in from the source type
|
sl@0
|
864 |
* to the destination type and places the result in .
|
sl@0
|
865 |
* Values outside the destination range are undefined
|
sl@0
|
866 |
* and implementation dependent.
|
sl@0
|
867 |
* See the comments at the beginning of this section.
|
sl@0
|
868 |
*/
|
sl@0
|
869 |
|
sl@0
|
870 |
/**
|
sl@0
|
871 |
* oil_conv_s8_f32:
|
sl@0
|
872 |
* @dest:
|
sl@0
|
873 |
* @dstr:
|
sl@0
|
874 |
* @src:
|
sl@0
|
875 |
* @sstr:
|
sl@0
|
876 |
* @n:
|
sl@0
|
877 |
*
|
sl@0
|
878 |
* Converts elements in from the source type
|
sl@0
|
879 |
* to the destination type and places the result in .
|
sl@0
|
880 |
* Values outside the destination range are undefined
|
sl@0
|
881 |
* and implementation dependent.
|
sl@0
|
882 |
* See the comments at the beginning of this section.
|
sl@0
|
883 |
*/
|
sl@0
|
884 |
|
sl@0
|
885 |
/**
|
sl@0
|
886 |
* oil_conv_s8_f64:
|
sl@0
|
887 |
* @dest:
|
sl@0
|
888 |
* @dstr:
|
sl@0
|
889 |
* @src:
|
sl@0
|
890 |
* @sstr:
|
sl@0
|
891 |
* @n:
|
sl@0
|
892 |
*
|
sl@0
|
893 |
* Converts elements in from the source type
|
sl@0
|
894 |
* to the destination type and places the result in .
|
sl@0
|
895 |
* Values outside the destination range are undefined
|
sl@0
|
896 |
* and implementation dependent.
|
sl@0
|
897 |
* See the comments at the beginning of this section.
|
sl@0
|
898 |
*/
|
sl@0
|
899 |
|
sl@0
|
900 |
/**
|
sl@0
|
901 |
* oil_conv_s8_s16:
|
sl@0
|
902 |
* @dest:
|
sl@0
|
903 |
* @dstr:
|
sl@0
|
904 |
* @src:
|
sl@0
|
905 |
* @sstr:
|
sl@0
|
906 |
* @n:
|
sl@0
|
907 |
*
|
sl@0
|
908 |
* Converts elements in from the source type
|
sl@0
|
909 |
* to the destination type and places the result in .
|
sl@0
|
910 |
* Values outside the destination range are undefined
|
sl@0
|
911 |
* and implementation dependent.
|
sl@0
|
912 |
* See the comments at the beginning of this section.
|
sl@0
|
913 |
*/
|
sl@0
|
914 |
|
sl@0
|
915 |
/**
|
sl@0
|
916 |
* oil_conv_s8_s32:
|
sl@0
|
917 |
* @dest:
|
sl@0
|
918 |
* @dstr:
|
sl@0
|
919 |
* @src:
|
sl@0
|
920 |
* @sstr:
|
sl@0
|
921 |
* @n:
|
sl@0
|
922 |
*
|
sl@0
|
923 |
* Converts elements in from the source type
|
sl@0
|
924 |
* to the destination type and places the result in .
|
sl@0
|
925 |
* Values outside the destination range are undefined
|
sl@0
|
926 |
* and implementation dependent.
|
sl@0
|
927 |
* See the comments at the beginning of this section.
|
sl@0
|
928 |
*/
|
sl@0
|
929 |
|
sl@0
|
930 |
/**
|
sl@0
|
931 |
* oil_conv_s8_u16:
|
sl@0
|
932 |
* @dest:
|
sl@0
|
933 |
* @dstr:
|
sl@0
|
934 |
* @src:
|
sl@0
|
935 |
* @sstr:
|
sl@0
|
936 |
* @n:
|
sl@0
|
937 |
*
|
sl@0
|
938 |
* Converts elements in from the source type
|
sl@0
|
939 |
* to the destination type and places the result in .
|
sl@0
|
940 |
* Values outside the destination range are undefined
|
sl@0
|
941 |
* and implementation dependent.
|
sl@0
|
942 |
* See the comments at the beginning of this section.
|
sl@0
|
943 |
*/
|
sl@0
|
944 |
|
sl@0
|
945 |
/**
|
sl@0
|
946 |
* oil_conv_s8_u32:
|
sl@0
|
947 |
* @dest:
|
sl@0
|
948 |
* @dstr:
|
sl@0
|
949 |
* @src:
|
sl@0
|
950 |
* @sstr:
|
sl@0
|
951 |
* @n:
|
sl@0
|
952 |
*
|
sl@0
|
953 |
* Converts elements in from the source type
|
sl@0
|
954 |
* to the destination type and places the result in .
|
sl@0
|
955 |
* Values outside the destination range are undefined
|
sl@0
|
956 |
* and implementation dependent.
|
sl@0
|
957 |
* See the comments at the beginning of this section.
|
sl@0
|
958 |
*/
|
sl@0
|
959 |
|
sl@0
|
960 |
/**
|
sl@0
|
961 |
* oil_conv_s8_u8:
|
sl@0
|
962 |
* @dest:
|
sl@0
|
963 |
* @dstr:
|
sl@0
|
964 |
* @src:
|
sl@0
|
965 |
* @sstr:
|
sl@0
|
966 |
* @n:
|
sl@0
|
967 |
*
|
sl@0
|
968 |
* Converts elements in from the source type
|
sl@0
|
969 |
* to the destination type and places the result in .
|
sl@0
|
970 |
* Values outside the destination range are undefined
|
sl@0
|
971 |
* and implementation dependent.
|
sl@0
|
972 |
* See the comments at the beginning of this section.
|
sl@0
|
973 |
*/
|
sl@0
|
974 |
|
sl@0
|
975 |
/**
|
sl@0
|
976 |
* oil_conv_u16_f32:
|
sl@0
|
977 |
* @dest:
|
sl@0
|
978 |
* @dstr:
|
sl@0
|
979 |
* @src:
|
sl@0
|
980 |
* @sstr:
|
sl@0
|
981 |
* @n:
|
sl@0
|
982 |
*
|
sl@0
|
983 |
* Converts elements in from the source type
|
sl@0
|
984 |
* to the destination type and places the result in .
|
sl@0
|
985 |
* Values outside the destination range are undefined
|
sl@0
|
986 |
* and implementation dependent.
|
sl@0
|
987 |
* See the comments at the beginning of this section.
|
sl@0
|
988 |
*/
|
sl@0
|
989 |
|
sl@0
|
990 |
/**
|
sl@0
|
991 |
* oil_conv_u16_f64:
|
sl@0
|
992 |
* @dest:
|
sl@0
|
993 |
* @dstr:
|
sl@0
|
994 |
* @src:
|
sl@0
|
995 |
* @sstr:
|
sl@0
|
996 |
* @n:
|
sl@0
|
997 |
*
|
sl@0
|
998 |
* Converts elements in from the source type
|
sl@0
|
999 |
* to the destination type and places the result in .
|
sl@0
|
1000 |
* Values outside the destination range are undefined
|
sl@0
|
1001 |
* and implementation dependent.
|
sl@0
|
1002 |
* See the comments at the beginning of this section.
|
sl@0
|
1003 |
*/
|
sl@0
|
1004 |
|
sl@0
|
1005 |
/**
|
sl@0
|
1006 |
* oil_conv_u16_s16:
|
sl@0
|
1007 |
* @dest:
|
sl@0
|
1008 |
* @dstr:
|
sl@0
|
1009 |
* @src:
|
sl@0
|
1010 |
* @sstr:
|
sl@0
|
1011 |
* @n:
|
sl@0
|
1012 |
*
|
sl@0
|
1013 |
* Converts elements in from the source type
|
sl@0
|
1014 |
* to the destination type and places the result in .
|
sl@0
|
1015 |
* Values outside the destination range are undefined
|
sl@0
|
1016 |
* and implementation dependent.
|
sl@0
|
1017 |
* See the comments at the beginning of this section.
|
sl@0
|
1018 |
*/
|
sl@0
|
1019 |
|
sl@0
|
1020 |
/**
|
sl@0
|
1021 |
* oil_conv_u16_s32:
|
sl@0
|
1022 |
* @dest:
|
sl@0
|
1023 |
* @dstr:
|
sl@0
|
1024 |
* @src:
|
sl@0
|
1025 |
* @sstr:
|
sl@0
|
1026 |
* @n:
|
sl@0
|
1027 |
*
|
sl@0
|
1028 |
* Converts elements in from the source type
|
sl@0
|
1029 |
* to the destination type and places the result in .
|
sl@0
|
1030 |
* Values outside the destination range are undefined
|
sl@0
|
1031 |
* and implementation dependent.
|
sl@0
|
1032 |
* See the comments at the beginning of this section.
|
sl@0
|
1033 |
*/
|
sl@0
|
1034 |
|
sl@0
|
1035 |
/**
|
sl@0
|
1036 |
* oil_conv_u16_s8:
|
sl@0
|
1037 |
* @dest:
|
sl@0
|
1038 |
* @dstr:
|
sl@0
|
1039 |
* @src:
|
sl@0
|
1040 |
* @sstr:
|
sl@0
|
1041 |
* @n:
|
sl@0
|
1042 |
*
|
sl@0
|
1043 |
* Converts elements in from the source type
|
sl@0
|
1044 |
* to the destination type and places the result in .
|
sl@0
|
1045 |
* Values outside the destination range are undefined
|
sl@0
|
1046 |
* and implementation dependent.
|
sl@0
|
1047 |
* See the comments at the beginning of this section.
|
sl@0
|
1048 |
*/
|
sl@0
|
1049 |
|
sl@0
|
1050 |
/**
|
sl@0
|
1051 |
* oil_conv_u16_u32:
|
sl@0
|
1052 |
* @dest:
|
sl@0
|
1053 |
* @dstr:
|
sl@0
|
1054 |
* @src:
|
sl@0
|
1055 |
* @sstr:
|
sl@0
|
1056 |
* @n:
|
sl@0
|
1057 |
*
|
sl@0
|
1058 |
* Converts elements in from the source type
|
sl@0
|
1059 |
* to the destination type and places the result in .
|
sl@0
|
1060 |
* Values outside the destination range are undefined
|
sl@0
|
1061 |
* and implementation dependent.
|
sl@0
|
1062 |
* See the comments at the beginning of this section.
|
sl@0
|
1063 |
*/
|
sl@0
|
1064 |
|
sl@0
|
1065 |
/**
|
sl@0
|
1066 |
* oil_conv_u16_u8:
|
sl@0
|
1067 |
* @dest:
|
sl@0
|
1068 |
* @dstr:
|
sl@0
|
1069 |
* @src:
|
sl@0
|
1070 |
* @sstr:
|
sl@0
|
1071 |
* @n:
|
sl@0
|
1072 |
*
|
sl@0
|
1073 |
* Converts elements in from the source type
|
sl@0
|
1074 |
* to the destination type and places the result in .
|
sl@0
|
1075 |
* Values outside the destination range are undefined
|
sl@0
|
1076 |
* and implementation dependent.
|
sl@0
|
1077 |
* See the comments at the beginning of this section.
|
sl@0
|
1078 |
*/
|
sl@0
|
1079 |
|
sl@0
|
1080 |
/**
|
sl@0
|
1081 |
* oil_conv_u32_f32:
|
sl@0
|
1082 |
* @dest:
|
sl@0
|
1083 |
* @dstr:
|
sl@0
|
1084 |
* @src:
|
sl@0
|
1085 |
* @sstr:
|
sl@0
|
1086 |
* @n:
|
sl@0
|
1087 |
*
|
sl@0
|
1088 |
* Converts elements in from the source type
|
sl@0
|
1089 |
* to the destination type and places the result in .
|
sl@0
|
1090 |
* Values outside the destination range are undefined
|
sl@0
|
1091 |
* and implementation dependent.
|
sl@0
|
1092 |
* See the comments at the beginning of this section.
|
sl@0
|
1093 |
*/
|
sl@0
|
1094 |
|
sl@0
|
1095 |
/**
|
sl@0
|
1096 |
* oil_conv_u32_f64:
|
sl@0
|
1097 |
* @dest:
|
sl@0
|
1098 |
* @dstr:
|
sl@0
|
1099 |
* @src:
|
sl@0
|
1100 |
* @sstr:
|
sl@0
|
1101 |
* @n:
|
sl@0
|
1102 |
*
|
sl@0
|
1103 |
* Converts elements in from the source type
|
sl@0
|
1104 |
* to the destination type and places the result in .
|
sl@0
|
1105 |
* Values outside the destination range are undefined
|
sl@0
|
1106 |
* and implementation dependent.
|
sl@0
|
1107 |
* See the comments at the beginning of this section.
|
sl@0
|
1108 |
*/
|
sl@0
|
1109 |
|
sl@0
|
1110 |
/**
|
sl@0
|
1111 |
* oil_conv_u32_s16:
|
sl@0
|
1112 |
* @dest:
|
sl@0
|
1113 |
* @dstr:
|
sl@0
|
1114 |
* @src:
|
sl@0
|
1115 |
* @sstr:
|
sl@0
|
1116 |
* @n:
|
sl@0
|
1117 |
*
|
sl@0
|
1118 |
* Converts elements in from the source type
|
sl@0
|
1119 |
* to the destination type and places the result in .
|
sl@0
|
1120 |
* Values outside the destination range are undefined
|
sl@0
|
1121 |
* and implementation dependent.
|
sl@0
|
1122 |
* See the comments at the beginning of this section.
|
sl@0
|
1123 |
*/
|
sl@0
|
1124 |
|
sl@0
|
1125 |
/**
|
sl@0
|
1126 |
* oil_conv_u32_s32:
|
sl@0
|
1127 |
* @dest:
|
sl@0
|
1128 |
* @dstr:
|
sl@0
|
1129 |
* @src:
|
sl@0
|
1130 |
* @sstr:
|
sl@0
|
1131 |
* @n:
|
sl@0
|
1132 |
*
|
sl@0
|
1133 |
* Converts elements in from the source type
|
sl@0
|
1134 |
* to the destination type and places the result in .
|
sl@0
|
1135 |
* Values outside the destination range are undefined
|
sl@0
|
1136 |
* and implementation dependent.
|
sl@0
|
1137 |
* See the comments at the beginning of this section.
|
sl@0
|
1138 |
*/
|
sl@0
|
1139 |
|
sl@0
|
1140 |
/**
|
sl@0
|
1141 |
* oil_conv_u32_s8:
|
sl@0
|
1142 |
* @dest:
|
sl@0
|
1143 |
* @dstr:
|
sl@0
|
1144 |
* @src:
|
sl@0
|
1145 |
* @sstr:
|
sl@0
|
1146 |
* @n:
|
sl@0
|
1147 |
*
|
sl@0
|
1148 |
* Converts elements in from the source type
|
sl@0
|
1149 |
* to the destination type and places the result in .
|
sl@0
|
1150 |
* Values outside the destination range are undefined
|
sl@0
|
1151 |
* and implementation dependent.
|
sl@0
|
1152 |
* See the comments at the beginning of this section.
|
sl@0
|
1153 |
*/
|
sl@0
|
1154 |
|
sl@0
|
1155 |
/**
|
sl@0
|
1156 |
* oil_conv_u32_u16:
|
sl@0
|
1157 |
* @dest:
|
sl@0
|
1158 |
* @dstr:
|
sl@0
|
1159 |
* @src:
|
sl@0
|
1160 |
* @sstr:
|
sl@0
|
1161 |
* @n:
|
sl@0
|
1162 |
*
|
sl@0
|
1163 |
* Converts elements in from the source type
|
sl@0
|
1164 |
* to the destination type and places the result in .
|
sl@0
|
1165 |
* Values outside the destination range are undefined
|
sl@0
|
1166 |
* and implementation dependent.
|
sl@0
|
1167 |
* See the comments at the beginning of this section.
|
sl@0
|
1168 |
*/
|
sl@0
|
1169 |
|
sl@0
|
1170 |
/**
|
sl@0
|
1171 |
* oil_conv_u32_u8:
|
sl@0
|
1172 |
* @dest:
|
sl@0
|
1173 |
* @dstr:
|
sl@0
|
1174 |
* @src:
|
sl@0
|
1175 |
* @sstr:
|
sl@0
|
1176 |
* @n:
|
sl@0
|
1177 |
*
|
sl@0
|
1178 |
* Converts elements in from the source type
|
sl@0
|
1179 |
* to the destination type and places the result in .
|
sl@0
|
1180 |
* Values outside the destination range are undefined
|
sl@0
|
1181 |
* and implementation dependent.
|
sl@0
|
1182 |
* See the comments at the beginning of this section.
|
sl@0
|
1183 |
*/
|
sl@0
|
1184 |
|
sl@0
|
1185 |
/**
|
sl@0
|
1186 |
* oil_conv_u8_f32:
|
sl@0
|
1187 |
* @dest:
|
sl@0
|
1188 |
* @dstr:
|
sl@0
|
1189 |
* @src:
|
sl@0
|
1190 |
* @sstr:
|
sl@0
|
1191 |
* @n:
|
sl@0
|
1192 |
*
|
sl@0
|
1193 |
* Converts elements in from the source type
|
sl@0
|
1194 |
* to the destination type and places the result in .
|
sl@0
|
1195 |
* Values outside the destination range are undefined
|
sl@0
|
1196 |
* and implementation dependent.
|
sl@0
|
1197 |
* See the comments at the beginning of this section.
|
sl@0
|
1198 |
*/
|
sl@0
|
1199 |
|
sl@0
|
1200 |
/**
|
sl@0
|
1201 |
* oil_conv_u8_f64:
|
sl@0
|
1202 |
* @dest:
|
sl@0
|
1203 |
* @dstr:
|
sl@0
|
1204 |
* @src:
|
sl@0
|
1205 |
* @sstr:
|
sl@0
|
1206 |
* @n:
|
sl@0
|
1207 |
*
|
sl@0
|
1208 |
* Converts elements in from the source type
|
sl@0
|
1209 |
* to the destination type and places the result in .
|
sl@0
|
1210 |
* Values outside the destination range are undefined
|
sl@0
|
1211 |
* and implementation dependent.
|
sl@0
|
1212 |
* See the comments at the beginning of this section.
|
sl@0
|
1213 |
*/
|
sl@0
|
1214 |
|
sl@0
|
1215 |
/**
|
sl@0
|
1216 |
* oil_conv_u8_s16:
|
sl@0
|
1217 |
* @dest:
|
sl@0
|
1218 |
* @dstr:
|
sl@0
|
1219 |
* @src:
|
sl@0
|
1220 |
* @sstr:
|
sl@0
|
1221 |
* @n:
|
sl@0
|
1222 |
*
|
sl@0
|
1223 |
* Converts elements in from the source type
|
sl@0
|
1224 |
* to the destination type and places the result in .
|
sl@0
|
1225 |
* Values outside the destination range are undefined
|
sl@0
|
1226 |
* and implementation dependent.
|
sl@0
|
1227 |
* See the comments at the beginning of this section.
|
sl@0
|
1228 |
*/
|
sl@0
|
1229 |
|
sl@0
|
1230 |
/**
|
sl@0
|
1231 |
* oil_conv_u8_s32:
|
sl@0
|
1232 |
* @dest:
|
sl@0
|
1233 |
* @dstr:
|
sl@0
|
1234 |
* @src:
|
sl@0
|
1235 |
* @sstr:
|
sl@0
|
1236 |
* @n:
|
sl@0
|
1237 |
*
|
sl@0
|
1238 |
* Converts elements in from the source type
|
sl@0
|
1239 |
* to the destination type and places the result in .
|
sl@0
|
1240 |
* Values outside the destination range are undefined
|
sl@0
|
1241 |
* and implementation dependent.
|
sl@0
|
1242 |
* See the comments at the beginning of this section.
|
sl@0
|
1243 |
*/
|
sl@0
|
1244 |
|
sl@0
|
1245 |
/**
|
sl@0
|
1246 |
* oil_conv_u8_s8:
|
sl@0
|
1247 |
* @dest:
|
sl@0
|
1248 |
* @dstr:
|
sl@0
|
1249 |
* @src:
|
sl@0
|
1250 |
* @sstr:
|
sl@0
|
1251 |
* @n:
|
sl@0
|
1252 |
*
|
sl@0
|
1253 |
* Converts elements in from the source type
|
sl@0
|
1254 |
* to the destination type and places the result in .
|
sl@0
|
1255 |
* Values outside the destination range are undefined
|
sl@0
|
1256 |
* and implementation dependent.
|
sl@0
|
1257 |
* See the comments at the beginning of this section.
|
sl@0
|
1258 |
*/
|
sl@0
|
1259 |
|
sl@0
|
1260 |
/**
|
sl@0
|
1261 |
* oil_conv_u8_u16:
|
sl@0
|
1262 |
* @dest:
|
sl@0
|
1263 |
* @dstr:
|
sl@0
|
1264 |
* @src:
|
sl@0
|
1265 |
* @sstr:
|
sl@0
|
1266 |
* @n:
|
sl@0
|
1267 |
*
|
sl@0
|
1268 |
* Converts elements in from the source type
|
sl@0
|
1269 |
* to the destination type and places the result in .
|
sl@0
|
1270 |
* Values outside the destination range are undefined
|
sl@0
|
1271 |
* and implementation dependent.
|
sl@0
|
1272 |
* See the comments at the beginning of this section.
|
sl@0
|
1273 |
*/
|
sl@0
|
1274 |
|
sl@0
|
1275 |
/**
|
sl@0
|
1276 |
* oil_conv_u8_u32:
|
sl@0
|
1277 |
* @dest:
|
sl@0
|
1278 |
* @dstr:
|
sl@0
|
1279 |
* @src:
|
sl@0
|
1280 |
* @sstr:
|
sl@0
|
1281 |
* @n:
|
sl@0
|
1282 |
*
|
sl@0
|
1283 |
* Converts elements in from the source type
|
sl@0
|
1284 |
* to the destination type and places the result in .
|
sl@0
|
1285 |
* Values outside the destination range are undefined
|
sl@0
|
1286 |
* and implementation dependent.
|
sl@0
|
1287 |
* See the comments at the beginning of this section.
|
sl@0
|
1288 |
*/
|
sl@0
|
1289 |
|
sl@0
|
1290 |
/**
|
sl@0
|
1291 |
* oil_clipconv_s16_f32:
|
sl@0
|
1292 |
* @dest:
|
sl@0
|
1293 |
* @dstr:
|
sl@0
|
1294 |
* @src:
|
sl@0
|
1295 |
* @sstr:
|
sl@0
|
1296 |
* @n:
|
sl@0
|
1297 |
*
|
sl@0
|
1298 |
* Converts elements in from the source type
|
sl@0
|
1299 |
* to the destination type and places the result in .
|
sl@0
|
1300 |
* Values outside the destination range are clipped to
|
sl@0
|
1301 |
* the destination range.
|
sl@0
|
1302 |
* See the comments at the beginning of this section.
|
sl@0
|
1303 |
*/
|
sl@0
|
1304 |
|
sl@0
|
1305 |
/**
|
sl@0
|
1306 |
* oil_clipconv_s16_f64:
|
sl@0
|
1307 |
* @dest:
|
sl@0
|
1308 |
* @dstr:
|
sl@0
|
1309 |
* @src:
|
sl@0
|
1310 |
* @sstr:
|
sl@0
|
1311 |
* @n:
|
sl@0
|
1312 |
*
|
sl@0
|
1313 |
* Converts elements in from the source type
|
sl@0
|
1314 |
* to the destination type and places the result in .
|
sl@0
|
1315 |
* Values outside the destination range are clipped to
|
sl@0
|
1316 |
* the destination range.
|
sl@0
|
1317 |
* See the comments at the beginning of this section.
|
sl@0
|
1318 |
*/
|
sl@0
|
1319 |
|
sl@0
|
1320 |
/**
|
sl@0
|
1321 |
* oil_clipconv_s16_s32:
|
sl@0
|
1322 |
* @dest:
|
sl@0
|
1323 |
* @dstr:
|
sl@0
|
1324 |
* @src:
|
sl@0
|
1325 |
* @sstr:
|
sl@0
|
1326 |
* @n:
|
sl@0
|
1327 |
*
|
sl@0
|
1328 |
* Converts elements in from the source type
|
sl@0
|
1329 |
* to the destination type and places the result in .
|
sl@0
|
1330 |
* Values outside the destination range are clipped to
|
sl@0
|
1331 |
* the destination range.
|
sl@0
|
1332 |
* See the comments at the beginning of this section.
|
sl@0
|
1333 |
*/
|
sl@0
|
1334 |
|
sl@0
|
1335 |
/**
|
sl@0
|
1336 |
* oil_clipconv_s16_u16:
|
sl@0
|
1337 |
* @dest:
|
sl@0
|
1338 |
* @dstr:
|
sl@0
|
1339 |
* @src:
|
sl@0
|
1340 |
* @sstr:
|
sl@0
|
1341 |
* @n:
|
sl@0
|
1342 |
*
|
sl@0
|
1343 |
* Converts elements in from the source type
|
sl@0
|
1344 |
* to the destination type and places the result in .
|
sl@0
|
1345 |
* Values outside the destination range are clipped to
|
sl@0
|
1346 |
* the destination range.
|
sl@0
|
1347 |
* See the comments at the beginning of this section.
|
sl@0
|
1348 |
*/
|
sl@0
|
1349 |
|
sl@0
|
1350 |
/**
|
sl@0
|
1351 |
* oil_clipconv_s16_u32:
|
sl@0
|
1352 |
* @dest:
|
sl@0
|
1353 |
* @dstr:
|
sl@0
|
1354 |
* @src:
|
sl@0
|
1355 |
* @sstr:
|
sl@0
|
1356 |
* @n:
|
sl@0
|
1357 |
*
|
sl@0
|
1358 |
* Converts elements in from the source type
|
sl@0
|
1359 |
* to the destination type and places the result in .
|
sl@0
|
1360 |
* Values outside the destination range are clipped to
|
sl@0
|
1361 |
* the destination range.
|
sl@0
|
1362 |
* See the comments at the beginning of this section.
|
sl@0
|
1363 |
*/
|
sl@0
|
1364 |
|
sl@0
|
1365 |
/**
|
sl@0
|
1366 |
* oil_clipconv_s32_f32:
|
sl@0
|
1367 |
* @dest:
|
sl@0
|
1368 |
* @dstr:
|
sl@0
|
1369 |
* @src:
|
sl@0
|
1370 |
* @sstr:
|
sl@0
|
1371 |
* @n:
|
sl@0
|
1372 |
*
|
sl@0
|
1373 |
* Converts elements in from the source type
|
sl@0
|
1374 |
* to the destination type and places the result in .
|
sl@0
|
1375 |
* Values outside the destination range are clipped to
|
sl@0
|
1376 |
* the destination range.
|
sl@0
|
1377 |
* See the comments at the beginning of this section.
|
sl@0
|
1378 |
*/
|
sl@0
|
1379 |
|
sl@0
|
1380 |
/**
|
sl@0
|
1381 |
* oil_clipconv_s32_f64:
|
sl@0
|
1382 |
* @dest:
|
sl@0
|
1383 |
* @dstr:
|
sl@0
|
1384 |
* @src:
|
sl@0
|
1385 |
* @sstr:
|
sl@0
|
1386 |
* @n:
|
sl@0
|
1387 |
*
|
sl@0
|
1388 |
* Converts elements in from the source type
|
sl@0
|
1389 |
* to the destination type and places the result in .
|
sl@0
|
1390 |
* Values outside the destination range are clipped to
|
sl@0
|
1391 |
* the destination range.
|
sl@0
|
1392 |
* See the comments at the beginning of this section.
|
sl@0
|
1393 |
*/
|
sl@0
|
1394 |
|
sl@0
|
1395 |
/**
|
sl@0
|
1396 |
* oil_clipconv_s32_u32:
|
sl@0
|
1397 |
* @dest:
|
sl@0
|
1398 |
* @dstr:
|
sl@0
|
1399 |
* @src:
|
sl@0
|
1400 |
* @sstr:
|
sl@0
|
1401 |
* @n:
|
sl@0
|
1402 |
*
|
sl@0
|
1403 |
* Converts elements in from the source type
|
sl@0
|
1404 |
* to the destination type and places the result in .
|
sl@0
|
1405 |
* Values outside the destination range are clipped to
|
sl@0
|
1406 |
* the destination range.
|
sl@0
|
1407 |
* See the comments at the beginning of this section.
|
sl@0
|
1408 |
*/
|
sl@0
|
1409 |
|
sl@0
|
1410 |
/**
|
sl@0
|
1411 |
* oil_clipconv_s8_f32:
|
sl@0
|
1412 |
* @dest:
|
sl@0
|
1413 |
* @dstr:
|
sl@0
|
1414 |
* @src:
|
sl@0
|
1415 |
* @sstr:
|
sl@0
|
1416 |
* @n:
|
sl@0
|
1417 |
*
|
sl@0
|
1418 |
* Converts elements in from the source type
|
sl@0
|
1419 |
* to the destination type and places the result in .
|
sl@0
|
1420 |
* Values outside the destination range are clipped to
|
sl@0
|
1421 |
* the destination range.
|
sl@0
|
1422 |
* See the comments at the beginning of this section.
|
sl@0
|
1423 |
*/
|
sl@0
|
1424 |
|
sl@0
|
1425 |
/**
|
sl@0
|
1426 |
* oil_clipconv_s8_f64:
|
sl@0
|
1427 |
* @dest:
|
sl@0
|
1428 |
* @dstr:
|
sl@0
|
1429 |
* @src:
|
sl@0
|
1430 |
* @sstr:
|
sl@0
|
1431 |
* @n:
|
sl@0
|
1432 |
*
|
sl@0
|
1433 |
* Converts elements in from the source type
|
sl@0
|
1434 |
* to the destination type and places the result in .
|
sl@0
|
1435 |
* Values outside the destination range are clipped to
|
sl@0
|
1436 |
* the destination range.
|
sl@0
|
1437 |
* See the comments at the beginning of this section.
|
sl@0
|
1438 |
*/
|
sl@0
|
1439 |
|
sl@0
|
1440 |
/**
|
sl@0
|
1441 |
* oil_clipconv_s8_s16:
|
sl@0
|
1442 |
* @dest:
|
sl@0
|
1443 |
* @dstr:
|
sl@0
|
1444 |
* @src:
|
sl@0
|
1445 |
* @sstr:
|
sl@0
|
1446 |
* @n:
|
sl@0
|
1447 |
*
|
sl@0
|
1448 |
* Converts elements in from the source type
|
sl@0
|
1449 |
* to the destination type and places the result in .
|
sl@0
|
1450 |
* Values outside the destination range are clipped to
|
sl@0
|
1451 |
* the destination range.
|
sl@0
|
1452 |
* See the comments at the beginning of this section.
|
sl@0
|
1453 |
*/
|
sl@0
|
1454 |
|
sl@0
|
1455 |
/**
|
sl@0
|
1456 |
* oil_clipconv_s8_s32:
|
sl@0
|
1457 |
* @dest:
|
sl@0
|
1458 |
* @dstr:
|
sl@0
|
1459 |
* @src:
|
sl@0
|
1460 |
* @sstr:
|
sl@0
|
1461 |
* @n:
|
sl@0
|
1462 |
*
|
sl@0
|
1463 |
* Converts elements in from the source type
|
sl@0
|
1464 |
* to the destination type and places the result in .
|
sl@0
|
1465 |
* Values outside the destination range are clipped to
|
sl@0
|
1466 |
* the destination range.
|
sl@0
|
1467 |
* See the comments at the beginning of this section.
|
sl@0
|
1468 |
*/
|
sl@0
|
1469 |
|
sl@0
|
1470 |
/**
|
sl@0
|
1471 |
* oil_clipconv_s8_u16:
|
sl@0
|
1472 |
* @dest:
|
sl@0
|
1473 |
* @dstr:
|
sl@0
|
1474 |
* @src:
|
sl@0
|
1475 |
* @sstr:
|
sl@0
|
1476 |
* @n:
|
sl@0
|
1477 |
*
|
sl@0
|
1478 |
* Converts elements in from the source type
|
sl@0
|
1479 |
* to the destination type and places the result in .
|
sl@0
|
1480 |
* Values outside the destination range are clipped to
|
sl@0
|
1481 |
* the destination range.
|
sl@0
|
1482 |
* See the comments at the beginning of this section.
|
sl@0
|
1483 |
*/
|
sl@0
|
1484 |
|
sl@0
|
1485 |
/**
|
sl@0
|
1486 |
* oil_clipconv_s8_u32:
|
sl@0
|
1487 |
* @dest:
|
sl@0
|
1488 |
* @dstr:
|
sl@0
|
1489 |
* @src:
|
sl@0
|
1490 |
* @sstr:
|
sl@0
|
1491 |
* @n:
|
sl@0
|
1492 |
*
|
sl@0
|
1493 |
* Converts elements in from the source type
|
sl@0
|
1494 |
* to the destination type and places the result in .
|
sl@0
|
1495 |
* Values outside the destination range are clipped to
|
sl@0
|
1496 |
* the destination range.
|
sl@0
|
1497 |
* See the comments at the beginning of this section.
|
sl@0
|
1498 |
*/
|
sl@0
|
1499 |
|
sl@0
|
1500 |
/**
|
sl@0
|
1501 |
* oil_clipconv_s8_u8:
|
sl@0
|
1502 |
* @dest:
|
sl@0
|
1503 |
* @dstr:
|
sl@0
|
1504 |
* @src:
|
sl@0
|
1505 |
* @sstr:
|
sl@0
|
1506 |
* @n:
|
sl@0
|
1507 |
*
|
sl@0
|
1508 |
* Converts elements in from the source type
|
sl@0
|
1509 |
* to the destination type and places the result in .
|
sl@0
|
1510 |
* Values outside the destination range are clipped to
|
sl@0
|
1511 |
* the destination range.
|
sl@0
|
1512 |
* See the comments at the beginning of this section.
|
sl@0
|
1513 |
*/
|
sl@0
|
1514 |
|
sl@0
|
1515 |
/**
|
sl@0
|
1516 |
* oil_clipconv_u16_f32:
|
sl@0
|
1517 |
* @dest:
|
sl@0
|
1518 |
* @dstr:
|
sl@0
|
1519 |
* @src:
|
sl@0
|
1520 |
* @sstr:
|
sl@0
|
1521 |
* @n:
|
sl@0
|
1522 |
*
|
sl@0
|
1523 |
* Converts elements in from the source type
|
sl@0
|
1524 |
* to the destination type and places the result in .
|
sl@0
|
1525 |
* Values outside the destination range are clipped to
|
sl@0
|
1526 |
* the destination range.
|
sl@0
|
1527 |
* See the comments at the beginning of this section.
|
sl@0
|
1528 |
*/
|
sl@0
|
1529 |
|
sl@0
|
1530 |
/**
|
sl@0
|
1531 |
* oil_clipconv_u16_f64:
|
sl@0
|
1532 |
* @dest:
|
sl@0
|
1533 |
* @dstr:
|
sl@0
|
1534 |
* @src:
|
sl@0
|
1535 |
* @sstr:
|
sl@0
|
1536 |
* @n:
|
sl@0
|
1537 |
*
|
sl@0
|
1538 |
* Converts elements in from the source type
|
sl@0
|
1539 |
* to the destination type and places the result in .
|
sl@0
|
1540 |
* Values outside the destination range are clipped to
|
sl@0
|
1541 |
* the destination range.
|
sl@0
|
1542 |
* See the comments at the beginning of this section.
|
sl@0
|
1543 |
*/
|
sl@0
|
1544 |
|
sl@0
|
1545 |
/**
|
sl@0
|
1546 |
* oil_clipconv_u16_s16:
|
sl@0
|
1547 |
* @dest:
|
sl@0
|
1548 |
* @dstr:
|
sl@0
|
1549 |
* @src:
|
sl@0
|
1550 |
* @sstr:
|
sl@0
|
1551 |
* @n:
|
sl@0
|
1552 |
*
|
sl@0
|
1553 |
* Converts elements in from the source type
|
sl@0
|
1554 |
* to the destination type and places the result in .
|
sl@0
|
1555 |
* Values outside the destination range are clipped to
|
sl@0
|
1556 |
* the destination range.
|
sl@0
|
1557 |
* See the comments at the beginning of this section.
|
sl@0
|
1558 |
*/
|
sl@0
|
1559 |
|
sl@0
|
1560 |
/**
|
sl@0
|
1561 |
* oil_clipconv_u16_s32:
|
sl@0
|
1562 |
* @dest:
|
sl@0
|
1563 |
* @dstr:
|
sl@0
|
1564 |
* @src:
|
sl@0
|
1565 |
* @sstr:
|
sl@0
|
1566 |
* @n:
|
sl@0
|
1567 |
*
|
sl@0
|
1568 |
* Converts elements in from the source type
|
sl@0
|
1569 |
* to the destination type and places the result in .
|
sl@0
|
1570 |
* Values outside the destination range are clipped to
|
sl@0
|
1571 |
* the destination range.
|
sl@0
|
1572 |
* See the comments at the beginning of this section.
|
sl@0
|
1573 |
*/
|
sl@0
|
1574 |
|
sl@0
|
1575 |
/**
|
sl@0
|
1576 |
* oil_clipconv_u16_u32:
|
sl@0
|
1577 |
* @dest:
|
sl@0
|
1578 |
* @dstr:
|
sl@0
|
1579 |
* @src:
|
sl@0
|
1580 |
* @sstr:
|
sl@0
|
1581 |
* @n:
|
sl@0
|
1582 |
*
|
sl@0
|
1583 |
* Converts elements in from the source type
|
sl@0
|
1584 |
* to the destination type and places the result in .
|
sl@0
|
1585 |
* Values outside the destination range are clipped to
|
sl@0
|
1586 |
* the destination range.
|
sl@0
|
1587 |
* See the comments at the beginning of this section.
|
sl@0
|
1588 |
*/
|
sl@0
|
1589 |
|
sl@0
|
1590 |
/**
|
sl@0
|
1591 |
* oil_clipconv_u32_f32:
|
sl@0
|
1592 |
* @dest:
|
sl@0
|
1593 |
* @dstr:
|
sl@0
|
1594 |
* @src:
|
sl@0
|
1595 |
* @sstr:
|
sl@0
|
1596 |
* @n:
|
sl@0
|
1597 |
*
|
sl@0
|
1598 |
* Converts elements in from the source type
|
sl@0
|
1599 |
* to the destination type and places the result in .
|
sl@0
|
1600 |
* Values outside the destination range are clipped to
|
sl@0
|
1601 |
* the destination range.
|
sl@0
|
1602 |
* See the comments at the beginning of this section.
|
sl@0
|
1603 |
*/
|
sl@0
|
1604 |
|
sl@0
|
1605 |
/**
|
sl@0
|
1606 |
* oil_clipconv_u32_f64:
|
sl@0
|
1607 |
* @dest:
|
sl@0
|
1608 |
* @dstr:
|
sl@0
|
1609 |
* @src:
|
sl@0
|
1610 |
* @sstr:
|
sl@0
|
1611 |
* @n:
|
sl@0
|
1612 |
*
|
sl@0
|
1613 |
* Converts elements in from the source type
|
sl@0
|
1614 |
* to the destination type and places the result in .
|
sl@0
|
1615 |
* Values outside the destination range are clipped to
|
sl@0
|
1616 |
* the destination range.
|
sl@0
|
1617 |
* See the comments at the beginning of this section.
|
sl@0
|
1618 |
*/
|
sl@0
|
1619 |
|
sl@0
|
1620 |
/**
|
sl@0
|
1621 |
* oil_clipconv_u32_s32:
|
sl@0
|
1622 |
* @dest:
|
sl@0
|
1623 |
* @dstr:
|
sl@0
|
1624 |
* @src:
|
sl@0
|
1625 |
* @sstr:
|
sl@0
|
1626 |
* @n:
|
sl@0
|
1627 |
*
|
sl@0
|
1628 |
* Converts elements in from the source type
|
sl@0
|
1629 |
* to the destination type and places the result in .
|
sl@0
|
1630 |
* Values outside the destination range are clipped to
|
sl@0
|
1631 |
* the destination range.
|
sl@0
|
1632 |
* See the comments at the beginning of this section.
|
sl@0
|
1633 |
*/
|
sl@0
|
1634 |
|
sl@0
|
1635 |
/**
|
sl@0
|
1636 |
* oil_clipconv_u8_f32:
|
sl@0
|
1637 |
* @dest:
|
sl@0
|
1638 |
* @dstr:
|
sl@0
|
1639 |
* @src:
|
sl@0
|
1640 |
* @sstr:
|
sl@0
|
1641 |
* @n:
|
sl@0
|
1642 |
*
|
sl@0
|
1643 |
* Converts elements in from the source type
|
sl@0
|
1644 |
* to the destination type and places the result in .
|
sl@0
|
1645 |
* Values outside the destination range are clipped to
|
sl@0
|
1646 |
* the destination range.
|
sl@0
|
1647 |
* See the comments at the beginning of this section.
|
sl@0
|
1648 |
*/
|
sl@0
|
1649 |
|
sl@0
|
1650 |
/**
|
sl@0
|
1651 |
* oil_clipconv_u8_f64:
|
sl@0
|
1652 |
* @dest:
|
sl@0
|
1653 |
* @dstr:
|
sl@0
|
1654 |
* @src:
|
sl@0
|
1655 |
* @sstr:
|
sl@0
|
1656 |
* @n:
|
sl@0
|
1657 |
*
|
sl@0
|
1658 |
* Converts elements in from the source type
|
sl@0
|
1659 |
* to the destination type and places the result in .
|
sl@0
|
1660 |
* Values outside the destination range are clipped to
|
sl@0
|
1661 |
* the destination range.
|
sl@0
|
1662 |
* See the comments at the beginning of this section.
|
sl@0
|
1663 |
*/
|
sl@0
|
1664 |
|
sl@0
|
1665 |
/**
|
sl@0
|
1666 |
* oil_clipconv_u8_s16:
|
sl@0
|
1667 |
* @dest:
|
sl@0
|
1668 |
* @dstr:
|
sl@0
|
1669 |
* @src:
|
sl@0
|
1670 |
* @sstr:
|
sl@0
|
1671 |
* @n:
|
sl@0
|
1672 |
*
|
sl@0
|
1673 |
* Converts elements in from the source type
|
sl@0
|
1674 |
* to the destination type and places the result in .
|
sl@0
|
1675 |
* Values outside the destination range are clipped to
|
sl@0
|
1676 |
* the destination range.
|
sl@0
|
1677 |
* See the comments at the beginning of this section.
|
sl@0
|
1678 |
*/
|
sl@0
|
1679 |
|
sl@0
|
1680 |
/**
|
sl@0
|
1681 |
* oil_clipconv_u8_s32:
|
sl@0
|
1682 |
* @dest:
|
sl@0
|
1683 |
* @dstr:
|
sl@0
|
1684 |
* @src:
|
sl@0
|
1685 |
* @sstr:
|
sl@0
|
1686 |
* @n:
|
sl@0
|
1687 |
*
|
sl@0
|
1688 |
* Converts elements in from the source type
|
sl@0
|
1689 |
* to the destination type and places the result in .
|
sl@0
|
1690 |
* Values outside the destination range are clipped to
|
sl@0
|
1691 |
* the destination range.
|
sl@0
|
1692 |
* See the comments at the beginning of this section.
|
sl@0
|
1693 |
*/
|
sl@0
|
1694 |
|
sl@0
|
1695 |
/**
|
sl@0
|
1696 |
* oil_clipconv_u8_s8:
|
sl@0
|
1697 |
* @dest:
|
sl@0
|
1698 |
* @dstr:
|
sl@0
|
1699 |
* @src:
|
sl@0
|
1700 |
* @sstr:
|
sl@0
|
1701 |
* @n:
|
sl@0
|
1702 |
*
|
sl@0
|
1703 |
* Converts elements in from the source type
|
sl@0
|
1704 |
* to the destination type and places the result in .
|
sl@0
|
1705 |
* Values outside the destination range are clipped to
|
sl@0
|
1706 |
* the destination range.
|
sl@0
|
1707 |
* See the comments at the beginning of this section.
|
sl@0
|
1708 |
*/
|
sl@0
|
1709 |
|
sl@0
|
1710 |
/**
|
sl@0
|
1711 |
* oil_clipconv_u8_u16:
|
sl@0
|
1712 |
* @dest:
|
sl@0
|
1713 |
* @dstr:
|
sl@0
|
1714 |
* @src:
|
sl@0
|
1715 |
* @sstr:
|
sl@0
|
1716 |
* @n:
|
sl@0
|
1717 |
*
|
sl@0
|
1718 |
* Converts elements in from the source type
|
sl@0
|
1719 |
* to the destination type and places the result in .
|
sl@0
|
1720 |
* Values outside the destination range are clipped to
|
sl@0
|
1721 |
* the destination range.
|
sl@0
|
1722 |
* See the comments at the beginning of this section.
|
sl@0
|
1723 |
*/
|
sl@0
|
1724 |
|
sl@0
|
1725 |
/**
|
sl@0
|
1726 |
* oil_clipconv_u8_u32:
|
sl@0
|
1727 |
* @dest:
|
sl@0
|
1728 |
* @dstr:
|
sl@0
|
1729 |
* @src:
|
sl@0
|
1730 |
* @sstr:
|
sl@0
|
1731 |
* @n:
|
sl@0
|
1732 |
*
|
sl@0
|
1733 |
* Converts elements in from the source type
|
sl@0
|
1734 |
* to the destination type and places the result in .
|
sl@0
|
1735 |
* Values outside the destination range are clipped to
|
sl@0
|
1736 |
* the destination range.
|
sl@0
|
1737 |
* See the comments at the beginning of this section.
|
sl@0
|
1738 |
*/
|
sl@0
|
1739 |
|
sl@0
|
1740 |
/**
|
sl@0
|
1741 |
* oil_scaleconv_f32_s16:
|
sl@0
|
1742 |
* @dest:
|
sl@0
|
1743 |
* @src:
|
sl@0
|
1744 |
* @n:
|
sl@0
|
1745 |
# @s2_1:
|
sl@0
|
1746 |
# @s3_1:
|
sl@0
|
1747 |
*
|
sl@0
|
1748 |
* Multiplies elements in by and adds and then
|
sl@0
|
1749 |
* converts the result
|
sl@0
|
1750 |
* to the destination type and places the result in .
|
sl@0
|
1751 |
* Values outside the destination range are undefined and
|
sl@0
|
1752 |
* implementation dependent.
|
sl@0
|
1753 |
* See the comments at the beginning of this section.
|
sl@0
|
1754 |
*/
|
sl@0
|
1755 |
|
sl@0
|
1756 |
/**
|
sl@0
|
1757 |
* oil_scaleconv_f32_s32:
|
sl@0
|
1758 |
* @dest:
|
sl@0
|
1759 |
* @src:
|
sl@0
|
1760 |
* @n:
|
sl@0
|
1761 |
# @s2_1:
|
sl@0
|
1762 |
# @s3_1:
|
sl@0
|
1763 |
*
|
sl@0
|
1764 |
* Multiplies elements in by and adds and then
|
sl@0
|
1765 |
* converts the result
|
sl@0
|
1766 |
* to the destination type and places the result in .
|
sl@0
|
1767 |
* Values outside the destination range are undefined and
|
sl@0
|
1768 |
* implementation dependent.
|
sl@0
|
1769 |
* See the comments at the beginning of this section.
|
sl@0
|
1770 |
*/
|
sl@0
|
1771 |
|
sl@0
|
1772 |
/**
|
sl@0
|
1773 |
* oil_scaleconv_f32_s8:
|
sl@0
|
1774 |
* @dest:
|
sl@0
|
1775 |
* @src:
|
sl@0
|
1776 |
* @n:
|
sl@0
|
1777 |
# @s2_1:
|
sl@0
|
1778 |
# @s3_1:
|
sl@0
|
1779 |
*
|
sl@0
|
1780 |
* Multiplies elements in by and adds and then
|
sl@0
|
1781 |
* converts the result
|
sl@0
|
1782 |
* to the destination type and places the result in .
|
sl@0
|
1783 |
* Values outside the destination range are undefined and
|
sl@0
|
1784 |
* implementation dependent.
|
sl@0
|
1785 |
* See the comments at the beginning of this section.
|
sl@0
|
1786 |
*/
|
sl@0
|
1787 |
|
sl@0
|
1788 |
/**
|
sl@0
|
1789 |
* oil_scaleconv_f32_u16:
|
sl@0
|
1790 |
* @dest:
|
sl@0
|
1791 |
* @src:
|
sl@0
|
1792 |
* @n:
|
sl@0
|
1793 |
# @s2_1:
|
sl@0
|
1794 |
# @s3_1:
|
sl@0
|
1795 |
*
|
sl@0
|
1796 |
* Multiplies elements in by and adds and then
|
sl@0
|
1797 |
* converts the result
|
sl@0
|
1798 |
* to the destination type and places the result in .
|
sl@0
|
1799 |
* Values outside the destination range are undefined and
|
sl@0
|
1800 |
* implementation dependent.
|
sl@0
|
1801 |
* See the comments at the beginning of this section.
|
sl@0
|
1802 |
*/
|
sl@0
|
1803 |
|
sl@0
|
1804 |
/**
|
sl@0
|
1805 |
* oil_scaleconv_f32_u32:
|
sl@0
|
1806 |
* @dest:
|
sl@0
|
1807 |
* @src:
|
sl@0
|
1808 |
* @n:
|
sl@0
|
1809 |
# @s2_1:
|
sl@0
|
1810 |
# @s3_1:
|
sl@0
|
1811 |
*
|
sl@0
|
1812 |
* Multiplies elements in by and adds and then
|
sl@0
|
1813 |
* converts the result
|
sl@0
|
1814 |
* to the destination type and places the result in .
|
sl@0
|
1815 |
* Values outside the destination range are undefined and
|
sl@0
|
1816 |
* implementation dependent.
|
sl@0
|
1817 |
* See the comments at the beginning of this section.
|
sl@0
|
1818 |
*/
|
sl@0
|
1819 |
|
sl@0
|
1820 |
/**
|
sl@0
|
1821 |
* oil_scaleconv_f32_u8:
|
sl@0
|
1822 |
* @dest:
|
sl@0
|
1823 |
* @src:
|
sl@0
|
1824 |
* @n:
|
sl@0
|
1825 |
# @s2_1:
|
sl@0
|
1826 |
# @s3_1:
|
sl@0
|
1827 |
*
|
sl@0
|
1828 |
* Multiplies elements in by and adds and then
|
sl@0
|
1829 |
* converts the result
|
sl@0
|
1830 |
* to the destination type and places the result in .
|
sl@0
|
1831 |
* Values outside the destination range are undefined and
|
sl@0
|
1832 |
* implementation dependent.
|
sl@0
|
1833 |
* See the comments at the beginning of this section.
|
sl@0
|
1834 |
*/
|
sl@0
|
1835 |
|
sl@0
|
1836 |
/**
|
sl@0
|
1837 |
* oil_scaleconv_f64_s16:
|
sl@0
|
1838 |
* @dest:
|
sl@0
|
1839 |
* @src:
|
sl@0
|
1840 |
* @n:
|
sl@0
|
1841 |
# @s2_1:
|
sl@0
|
1842 |
# @s3_1:
|
sl@0
|
1843 |
*
|
sl@0
|
1844 |
* Multiplies elements in by and adds and then
|
sl@0
|
1845 |
* converts the result
|
sl@0
|
1846 |
* to the destination type and places the result in .
|
sl@0
|
1847 |
* Values outside the destination range are undefined and
|
sl@0
|
1848 |
* implementation dependent.
|
sl@0
|
1849 |
* See the comments at the beginning of this section.
|
sl@0
|
1850 |
*/
|
sl@0
|
1851 |
|
sl@0
|
1852 |
/**
|
sl@0
|
1853 |
* oil_scaleconv_f64_s32:
|
sl@0
|
1854 |
* @dest:
|
sl@0
|
1855 |
* @src:
|
sl@0
|
1856 |
* @n:
|
sl@0
|
1857 |
# @s2_1:
|
sl@0
|
1858 |
# @s3_1:
|
sl@0
|
1859 |
*
|
sl@0
|
1860 |
* Multiplies elements in by and adds and then
|
sl@0
|
1861 |
* converts the result
|
sl@0
|
1862 |
* to the destination type and places the result in .
|
sl@0
|
1863 |
* Values outside the destination range are undefined and
|
sl@0
|
1864 |
* implementation dependent.
|
sl@0
|
1865 |
* See the comments at the beginning of this section.
|
sl@0
|
1866 |
*/
|
sl@0
|
1867 |
|
sl@0
|
1868 |
/**
|
sl@0
|
1869 |
* oil_scaleconv_f64_s8:
|
sl@0
|
1870 |
* @dest:
|
sl@0
|
1871 |
* @src:
|
sl@0
|
1872 |
* @n:
|
sl@0
|
1873 |
# @s2_1:
|
sl@0
|
1874 |
# @s3_1:
|
sl@0
|
1875 |
*
|
sl@0
|
1876 |
* Multiplies elements in by and adds and then
|
sl@0
|
1877 |
* converts the result
|
sl@0
|
1878 |
* to the destination type and places the result in .
|
sl@0
|
1879 |
* Values outside the destination range are undefined and
|
sl@0
|
1880 |
* implementation dependent.
|
sl@0
|
1881 |
* See the comments at the beginning of this section.
|
sl@0
|
1882 |
*/
|
sl@0
|
1883 |
|
sl@0
|
1884 |
/**
|
sl@0
|
1885 |
* oil_scaleconv_f64_u16:
|
sl@0
|
1886 |
* @dest:
|
sl@0
|
1887 |
* @src:
|
sl@0
|
1888 |
* @n:
|
sl@0
|
1889 |
# @s2_1:
|
sl@0
|
1890 |
# @s3_1:
|
sl@0
|
1891 |
*
|
sl@0
|
1892 |
* Multiplies elements in by and adds and then
|
sl@0
|
1893 |
* converts the result
|
sl@0
|
1894 |
* to the destination type and places the result in .
|
sl@0
|
1895 |
* Values outside the destination range are undefined and
|
sl@0
|
1896 |
* implementation dependent.
|
sl@0
|
1897 |
* See the comments at the beginning of this section.
|
sl@0
|
1898 |
*/
|
sl@0
|
1899 |
|
sl@0
|
1900 |
/**
|
sl@0
|
1901 |
* oil_scaleconv_f64_u32:
|
sl@0
|
1902 |
* @dest:
|
sl@0
|
1903 |
* @src:
|
sl@0
|
1904 |
* @n:
|
sl@0
|
1905 |
# @s2_1:
|
sl@0
|
1906 |
# @s3_1:
|
sl@0
|
1907 |
*
|
sl@0
|
1908 |
* Multiplies elements in by and adds and then
|
sl@0
|
1909 |
* converts the result
|
sl@0
|
1910 |
* to the destination type and places the result in .
|
sl@0
|
1911 |
* Values outside the destination range are undefined and
|
sl@0
|
1912 |
* implementation dependent.
|
sl@0
|
1913 |
* See the comments at the beginning of this section.
|
sl@0
|
1914 |
*/
|
sl@0
|
1915 |
|
sl@0
|
1916 |
/**
|
sl@0
|
1917 |
* oil_scaleconv_f64_u8:
|
sl@0
|
1918 |
* @dest:
|
sl@0
|
1919 |
* @src:
|
sl@0
|
1920 |
* @n:
|
sl@0
|
1921 |
# @s2_1:
|
sl@0
|
1922 |
# @s3_1:
|
sl@0
|
1923 |
*
|
sl@0
|
1924 |
* Multiplies elements in by and adds and then
|
sl@0
|
1925 |
* converts the result
|
sl@0
|
1926 |
* to the destination type and places the result in .
|
sl@0
|
1927 |
* Values outside the destination range are undefined and
|
sl@0
|
1928 |
* implementation dependent.
|
sl@0
|
1929 |
* See the comments at the beginning of this section.
|
sl@0
|
1930 |
*/
|
sl@0
|
1931 |
|
sl@0
|
1932 |
/**
|
sl@0
|
1933 |
* oil_scaleconv_s16_f32:
|
sl@0
|
1934 |
* @dest:
|
sl@0
|
1935 |
* @src:
|
sl@0
|
1936 |
* @n:
|
sl@0
|
1937 |
# @s2_1:
|
sl@0
|
1938 |
# @s3_1:
|
sl@0
|
1939 |
*
|
sl@0
|
1940 |
* Multiplies elements in by and adds and then
|
sl@0
|
1941 |
* converts the result
|
sl@0
|
1942 |
* to the destination type and places the result in .
|
sl@0
|
1943 |
* Values outside the destination range are undefined and
|
sl@0
|
1944 |
* implementation dependent.
|
sl@0
|
1945 |
* See the comments at the beginning of this section.
|
sl@0
|
1946 |
*/
|
sl@0
|
1947 |
|
sl@0
|
1948 |
/**
|
sl@0
|
1949 |
* oil_scaleconv_s16_f64:
|
sl@0
|
1950 |
* @dest:
|
sl@0
|
1951 |
* @src:
|
sl@0
|
1952 |
* @n:
|
sl@0
|
1953 |
# @s2_1:
|
sl@0
|
1954 |
# @s3_1:
|
sl@0
|
1955 |
*
|
sl@0
|
1956 |
* Multiplies elements in by and adds and then
|
sl@0
|
1957 |
* converts the result
|
sl@0
|
1958 |
* to the destination type and places the result in .
|
sl@0
|
1959 |
* Values outside the destination range are undefined and
|
sl@0
|
1960 |
* implementation dependent.
|
sl@0
|
1961 |
* See the comments at the beginning of this section.
|
sl@0
|
1962 |
*/
|
sl@0
|
1963 |
|
sl@0
|
1964 |
/**
|
sl@0
|
1965 |
* oil_scaleconv_s32_f32:
|
sl@0
|
1966 |
* @dest:
|
sl@0
|
1967 |
* @src:
|
sl@0
|
1968 |
* @n:
|
sl@0
|
1969 |
# @s2_1:
|
sl@0
|
1970 |
# @s3_1:
|
sl@0
|
1971 |
*
|
sl@0
|
1972 |
* Multiplies elements in by and adds and then
|
sl@0
|
1973 |
* converts the result
|
sl@0
|
1974 |
* to the destination type and places the result in .
|
sl@0
|
1975 |
* Values outside the destination range are undefined and
|
sl@0
|
1976 |
* implementation dependent.
|
sl@0
|
1977 |
* See the comments at the beginning of this section.
|
sl@0
|
1978 |
*/
|
sl@0
|
1979 |
|
sl@0
|
1980 |
/**
|
sl@0
|
1981 |
* oil_scaleconv_s32_f64:
|
sl@0
|
1982 |
* @dest:
|
sl@0
|
1983 |
* @src:
|
sl@0
|
1984 |
* @n:
|
sl@0
|
1985 |
# @s2_1:
|
sl@0
|
1986 |
# @s3_1:
|
sl@0
|
1987 |
*
|
sl@0
|
1988 |
* Multiplies elements in by and adds and then
|
sl@0
|
1989 |
* converts the result
|
sl@0
|
1990 |
* to the destination type and places the result in .
|
sl@0
|
1991 |
* Values outside the destination range are undefined and
|
sl@0
|
1992 |
* implementation dependent.
|
sl@0
|
1993 |
* See the comments at the beginning of this section.
|
sl@0
|
1994 |
*/
|
sl@0
|
1995 |
|
sl@0
|
1996 |
/**
|
sl@0
|
1997 |
* oil_scaleconv_s8_f32:
|
sl@0
|
1998 |
* @dest:
|
sl@0
|
1999 |
* @src:
|
sl@0
|
2000 |
* @n:
|
sl@0
|
2001 |
# @s2_1:
|
sl@0
|
2002 |
# @s3_1:
|
sl@0
|
2003 |
*
|
sl@0
|
2004 |
* Multiplies elements in by and adds and then
|
sl@0
|
2005 |
* converts the result
|
sl@0
|
2006 |
* to the destination type and places the result in .
|
sl@0
|
2007 |
* Values outside the destination range are undefined and
|
sl@0
|
2008 |
* implementation dependent.
|
sl@0
|
2009 |
* See the comments at the beginning of this section.
|
sl@0
|
2010 |
*/
|
sl@0
|
2011 |
|
sl@0
|
2012 |
/**
|
sl@0
|
2013 |
* oil_scaleconv_s8_f64:
|
sl@0
|
2014 |
* @dest:
|
sl@0
|
2015 |
* @src:
|
sl@0
|
2016 |
* @n:
|
sl@0
|
2017 |
# @s2_1:
|
sl@0
|
2018 |
# @s3_1:
|
sl@0
|
2019 |
*
|
sl@0
|
2020 |
* Multiplies elements in by and adds and then
|
sl@0
|
2021 |
* converts the result
|
sl@0
|
2022 |
* to the destination type and places the result in .
|
sl@0
|
2023 |
* Values outside the destination range are undefined and
|
sl@0
|
2024 |
* implementation dependent.
|
sl@0
|
2025 |
* See the comments at the beginning of this section.
|
sl@0
|
2026 |
*/
|
sl@0
|
2027 |
|
sl@0
|
2028 |
/**
|
sl@0
|
2029 |
* oil_scaleconv_u16_f32:
|
sl@0
|
2030 |
* @dest:
|
sl@0
|
2031 |
* @src:
|
sl@0
|
2032 |
* @n:
|
sl@0
|
2033 |
# @s2_1:
|
sl@0
|
2034 |
# @s3_1:
|
sl@0
|
2035 |
*
|
sl@0
|
2036 |
* Multiplies elements in by and adds and then
|
sl@0
|
2037 |
* converts the result
|
sl@0
|
2038 |
* to the destination type and places the result in .
|
sl@0
|
2039 |
* Values outside the destination range are undefined and
|
sl@0
|
2040 |
* implementation dependent.
|
sl@0
|
2041 |
* See the comments at the beginning of this section.
|
sl@0
|
2042 |
*/
|
sl@0
|
2043 |
|
sl@0
|
2044 |
/**
|
sl@0
|
2045 |
* oil_scaleconv_u16_f64:
|
sl@0
|
2046 |
* @dest:
|
sl@0
|
2047 |
* @src:
|
sl@0
|
2048 |
* @n:
|
sl@0
|
2049 |
# @s2_1:
|
sl@0
|
2050 |
# @s3_1:
|
sl@0
|
2051 |
*
|
sl@0
|
2052 |
* Multiplies elements in by and adds and then
|
sl@0
|
2053 |
* converts the result
|
sl@0
|
2054 |
* to the destination type and places the result in .
|
sl@0
|
2055 |
* Values outside the destination range are undefined and
|
sl@0
|
2056 |
* implementation dependent.
|
sl@0
|
2057 |
* See the comments at the beginning of this section.
|
sl@0
|
2058 |
*/
|
sl@0
|
2059 |
|
sl@0
|
2060 |
/**
|
sl@0
|
2061 |
* oil_scaleconv_u32_f32:
|
sl@0
|
2062 |
* @dest:
|
sl@0
|
2063 |
* @src:
|
sl@0
|
2064 |
* @n:
|
sl@0
|
2065 |
# @s2_1:
|
sl@0
|
2066 |
# @s3_1:
|
sl@0
|
2067 |
*
|
sl@0
|
2068 |
* Multiplies elements in by and adds and then
|
sl@0
|
2069 |
* converts the result
|
sl@0
|
2070 |
* to the destination type and places the result in .
|
sl@0
|
2071 |
* Values outside the destination range are undefined and
|
sl@0
|
2072 |
* implementation dependent.
|
sl@0
|
2073 |
* See the comments at the beginning of this section.
|
sl@0
|
2074 |
*/
|
sl@0
|
2075 |
|
sl@0
|
2076 |
/**
|
sl@0
|
2077 |
* oil_scaleconv_u32_f64:
|
sl@0
|
2078 |
* @dest:
|
sl@0
|
2079 |
* @src:
|
sl@0
|
2080 |
* @n:
|
sl@0
|
2081 |
# @s2_1:
|
sl@0
|
2082 |
# @s3_1:
|
sl@0
|
2083 |
*
|
sl@0
|
2084 |
* Multiplies elements in by and adds and then
|
sl@0
|
2085 |
* converts the result
|
sl@0
|
2086 |
* to the destination type and places the result in .
|
sl@0
|
2087 |
* Values outside the destination range are undefined and
|
sl@0
|
2088 |
* implementation dependent.
|
sl@0
|
2089 |
* See the comments at the beginning of this section.
|
sl@0
|
2090 |
*/
|
sl@0
|
2091 |
|
sl@0
|
2092 |
/**
|
sl@0
|
2093 |
* oil_scaleconv_u8_f32:
|
sl@0
|
2094 |
* @dest:
|
sl@0
|
2095 |
* @src:
|
sl@0
|
2096 |
* @n:
|
sl@0
|
2097 |
# @s2_1:
|
sl@0
|
2098 |
# @s3_1:
|
sl@0
|
2099 |
*
|
sl@0
|
2100 |
* Multiplies elements in by and adds and then
|
sl@0
|
2101 |
* converts the result
|
sl@0
|
2102 |
* to the destination type and places the result in .
|
sl@0
|
2103 |
* Values outside the destination range are undefined and
|
sl@0
|
2104 |
* implementation dependent.
|
sl@0
|
2105 |
* See the comments at the beginning of this section.
|
sl@0
|
2106 |
*/
|
sl@0
|
2107 |
|
sl@0
|
2108 |
/**
|
sl@0
|
2109 |
* oil_scaleconv_u8_f64:
|
sl@0
|
2110 |
* @dest:
|
sl@0
|
2111 |
* @src:
|
sl@0
|
2112 |
* @n:
|
sl@0
|
2113 |
# @s2_1:
|
sl@0
|
2114 |
# @s3_1:
|
sl@0
|
2115 |
*
|
sl@0
|
2116 |
* Multiplies elements in by and adds and then
|
sl@0
|
2117 |
* converts the result
|
sl@0
|
2118 |
* to the destination type and places the result in .
|
sl@0
|
2119 |
* Values outside the destination range are undefined and
|
sl@0
|
2120 |
* implementation dependent.
|
sl@0
|
2121 |
* See the comments at the beginning of this section.
|
sl@0
|
2122 |
*/
|
sl@0
|
2123 |
|
sl@0
|
2124 |
|
sl@0
|
2125 |
|
sl@0
|
2126 |
|
sl@0
|
2127 |
|
sl@0
|
2128 |
#ifdef __SYMBIAN32__
|
sl@0
|
2129 |
|
sl@0
|
2130 |
OilFunctionClass* __oil_function_class_conv_s8_u8() {
|
sl@0
|
2131 |
return &_oil_function_class_conv_s8_u8;
|
sl@0
|
2132 |
}
|
sl@0
|
2133 |
#endif
|
sl@0
|
2134 |
|
sl@0
|
2135 |
#ifdef __SYMBIAN32__
|
sl@0
|
2136 |
|
sl@0
|
2137 |
OilFunctionClass* __oil_function_class_conv_s8_s16() {
|
sl@0
|
2138 |
return &_oil_function_class_conv_s8_s16;
|
sl@0
|
2139 |
}
|
sl@0
|
2140 |
#endif
|
sl@0
|
2141 |
|
sl@0
|
2142 |
#ifdef __SYMBIAN32__
|
sl@0
|
2143 |
|
sl@0
|
2144 |
OilFunctionClass* __oil_function_class_conv_s8_u16() {
|
sl@0
|
2145 |
return &_oil_function_class_conv_s8_u16;
|
sl@0
|
2146 |
}
|
sl@0
|
2147 |
#endif
|
sl@0
|
2148 |
|
sl@0
|
2149 |
#ifdef __SYMBIAN32__
|
sl@0
|
2150 |
|
sl@0
|
2151 |
OilFunctionClass* __oil_function_class_conv_s8_s32() {
|
sl@0
|
2152 |
return &_oil_function_class_conv_s8_s32;
|
sl@0
|
2153 |
}
|
sl@0
|
2154 |
#endif
|
sl@0
|
2155 |
|
sl@0
|
2156 |
#ifdef __SYMBIAN32__
|
sl@0
|
2157 |
|
sl@0
|
2158 |
OilFunctionClass* __oil_function_class_conv_s8_u32() {
|
sl@0
|
2159 |
return &_oil_function_class_conv_s8_u32;
|
sl@0
|
2160 |
}
|
sl@0
|
2161 |
#endif
|
sl@0
|
2162 |
|
sl@0
|
2163 |
#ifdef __SYMBIAN32__
|
sl@0
|
2164 |
|
sl@0
|
2165 |
OilFunctionClass* __oil_function_class_conv_s8_f32() {
|
sl@0
|
2166 |
return &_oil_function_class_conv_s8_f32;
|
sl@0
|
2167 |
}
|
sl@0
|
2168 |
#endif
|
sl@0
|
2169 |
|
sl@0
|
2170 |
#ifdef __SYMBIAN32__
|
sl@0
|
2171 |
|
sl@0
|
2172 |
OilFunctionClass* __oil_function_class_conv_s8_f64() {
|
sl@0
|
2173 |
return &_oil_function_class_conv_s8_f64;
|
sl@0
|
2174 |
}
|
sl@0
|
2175 |
#endif
|
sl@0
|
2176 |
|
sl@0
|
2177 |
#ifdef __SYMBIAN32__
|
sl@0
|
2178 |
|
sl@0
|
2179 |
OilFunctionClass* __oil_function_class_conv_u8_s8() {
|
sl@0
|
2180 |
return &_oil_function_class_conv_u8_s8;
|
sl@0
|
2181 |
}
|
sl@0
|
2182 |
#endif
|
sl@0
|
2183 |
|
sl@0
|
2184 |
#ifdef __SYMBIAN32__
|
sl@0
|
2185 |
|
sl@0
|
2186 |
OilFunctionClass* __oil_function_class_conv_u8_s16() {
|
sl@0
|
2187 |
return &_oil_function_class_conv_u8_s16;
|
sl@0
|
2188 |
}
|
sl@0
|
2189 |
#endif
|
sl@0
|
2190 |
|
sl@0
|
2191 |
#ifdef __SYMBIAN32__
|
sl@0
|
2192 |
|
sl@0
|
2193 |
OilFunctionClass* __oil_function_class_conv_u8_u16() {
|
sl@0
|
2194 |
return &_oil_function_class_conv_u8_u16;
|
sl@0
|
2195 |
}
|
sl@0
|
2196 |
#endif
|
sl@0
|
2197 |
|
sl@0
|
2198 |
#ifdef __SYMBIAN32__
|
sl@0
|
2199 |
|
sl@0
|
2200 |
OilFunctionClass* __oil_function_class_conv_u8_s32() {
|
sl@0
|
2201 |
return &_oil_function_class_conv_u8_s32;
|
sl@0
|
2202 |
}
|
sl@0
|
2203 |
#endif
|
sl@0
|
2204 |
|
sl@0
|
2205 |
#ifdef __SYMBIAN32__
|
sl@0
|
2206 |
|
sl@0
|
2207 |
OilFunctionClass* __oil_function_class_conv_u8_u32() {
|
sl@0
|
2208 |
return &_oil_function_class_conv_u8_u32;
|
sl@0
|
2209 |
}
|
sl@0
|
2210 |
#endif
|
sl@0
|
2211 |
|
sl@0
|
2212 |
#ifdef __SYMBIAN32__
|
sl@0
|
2213 |
|
sl@0
|
2214 |
OilFunctionClass* __oil_function_class_conv_u8_f32() {
|
sl@0
|
2215 |
return &_oil_function_class_conv_u8_f32;
|
sl@0
|
2216 |
}
|
sl@0
|
2217 |
#endif
|
sl@0
|
2218 |
|
sl@0
|
2219 |
#ifdef __SYMBIAN32__
|
sl@0
|
2220 |
|
sl@0
|
2221 |
OilFunctionClass* __oil_function_class_conv_u8_f64() {
|
sl@0
|
2222 |
return &_oil_function_class_conv_u8_f64;
|
sl@0
|
2223 |
}
|
sl@0
|
2224 |
#endif
|
sl@0
|
2225 |
|
sl@0
|
2226 |
#ifdef __SYMBIAN32__
|
sl@0
|
2227 |
|
sl@0
|
2228 |
OilFunctionClass* __oil_function_class_conv_s16_s8() {
|
sl@0
|
2229 |
return &_oil_function_class_conv_s16_s8;
|
sl@0
|
2230 |
}
|
sl@0
|
2231 |
#endif
|
sl@0
|
2232 |
|
sl@0
|
2233 |
#ifdef __SYMBIAN32__
|
sl@0
|
2234 |
|
sl@0
|
2235 |
OilFunctionClass* __oil_function_class_conv_s16_u8() {
|
sl@0
|
2236 |
return &_oil_function_class_conv_s16_u8;
|
sl@0
|
2237 |
}
|
sl@0
|
2238 |
#endif
|
sl@0
|
2239 |
|
sl@0
|
2240 |
#ifdef __SYMBIAN32__
|
sl@0
|
2241 |
|
sl@0
|
2242 |
OilFunctionClass* __oil_function_class_conv_s16_u16() {
|
sl@0
|
2243 |
return &_oil_function_class_conv_s16_u16;
|
sl@0
|
2244 |
}
|
sl@0
|
2245 |
#endif
|
sl@0
|
2246 |
|
sl@0
|
2247 |
#ifdef __SYMBIAN32__
|
sl@0
|
2248 |
|
sl@0
|
2249 |
OilFunctionClass* __oil_function_class_conv_s16_s32() {
|
sl@0
|
2250 |
return &_oil_function_class_conv_s16_s32;
|
sl@0
|
2251 |
}
|
sl@0
|
2252 |
#endif
|
sl@0
|
2253 |
|
sl@0
|
2254 |
#ifdef __SYMBIAN32__
|
sl@0
|
2255 |
|
sl@0
|
2256 |
OilFunctionClass* __oil_function_class_conv_s16_u32() {
|
sl@0
|
2257 |
return &_oil_function_class_conv_s16_u32;
|
sl@0
|
2258 |
}
|
sl@0
|
2259 |
#endif
|
sl@0
|
2260 |
|
sl@0
|
2261 |
#ifdef __SYMBIAN32__
|
sl@0
|
2262 |
|
sl@0
|
2263 |
OilFunctionClass* __oil_function_class_conv_s16_f32() {
|
sl@0
|
2264 |
return &_oil_function_class_conv_s16_f32;
|
sl@0
|
2265 |
}
|
sl@0
|
2266 |
#endif
|
sl@0
|
2267 |
|
sl@0
|
2268 |
#ifdef __SYMBIAN32__
|
sl@0
|
2269 |
|
sl@0
|
2270 |
OilFunctionClass* __oil_function_class_conv_s16_f64() {
|
sl@0
|
2271 |
return &_oil_function_class_conv_s16_f64;
|
sl@0
|
2272 |
}
|
sl@0
|
2273 |
#endif
|
sl@0
|
2274 |
|
sl@0
|
2275 |
#ifdef __SYMBIAN32__
|
sl@0
|
2276 |
|
sl@0
|
2277 |
OilFunctionClass* __oil_function_class_conv_u16_s8() {
|
sl@0
|
2278 |
return &_oil_function_class_conv_u16_s8;
|
sl@0
|
2279 |
}
|
sl@0
|
2280 |
#endif
|
sl@0
|
2281 |
|
sl@0
|
2282 |
#ifdef __SYMBIAN32__
|
sl@0
|
2283 |
|
sl@0
|
2284 |
OilFunctionClass* __oil_function_class_conv_u16_u8() {
|
sl@0
|
2285 |
return &_oil_function_class_conv_u16_u8;
|
sl@0
|
2286 |
}
|
sl@0
|
2287 |
#endif
|
sl@0
|
2288 |
|
sl@0
|
2289 |
#ifdef __SYMBIAN32__
|
sl@0
|
2290 |
|
sl@0
|
2291 |
OilFunctionClass* __oil_function_class_conv_u16_s16() {
|
sl@0
|
2292 |
return &_oil_function_class_conv_u16_s16;
|
sl@0
|
2293 |
}
|
sl@0
|
2294 |
#endif
|
sl@0
|
2295 |
|
sl@0
|
2296 |
#ifdef __SYMBIAN32__
|
sl@0
|
2297 |
|
sl@0
|
2298 |
OilFunctionClass* __oil_function_class_conv_u16_s32() {
|
sl@0
|
2299 |
return &_oil_function_class_conv_u16_s32;
|
sl@0
|
2300 |
}
|
sl@0
|
2301 |
#endif
|
sl@0
|
2302 |
|
sl@0
|
2303 |
#ifdef __SYMBIAN32__
|
sl@0
|
2304 |
|
sl@0
|
2305 |
OilFunctionClass* __oil_function_class_conv_u16_u32() {
|
sl@0
|
2306 |
return &_oil_function_class_conv_u16_u32;
|
sl@0
|
2307 |
}
|
sl@0
|
2308 |
#endif
|
sl@0
|
2309 |
|
sl@0
|
2310 |
#ifdef __SYMBIAN32__
|
sl@0
|
2311 |
|
sl@0
|
2312 |
OilFunctionClass* __oil_function_class_conv_u16_f32() {
|
sl@0
|
2313 |
return &_oil_function_class_conv_u16_f32;
|
sl@0
|
2314 |
}
|
sl@0
|
2315 |
#endif
|
sl@0
|
2316 |
|
sl@0
|
2317 |
#ifdef __SYMBIAN32__
|
sl@0
|
2318 |
|
sl@0
|
2319 |
OilFunctionClass* __oil_function_class_conv_u16_f64() {
|
sl@0
|
2320 |
return &_oil_function_class_conv_u16_f64;
|
sl@0
|
2321 |
}
|
sl@0
|
2322 |
#endif
|
sl@0
|
2323 |
|
sl@0
|
2324 |
#ifdef __SYMBIAN32__
|
sl@0
|
2325 |
|
sl@0
|
2326 |
OilFunctionClass* __oil_function_class_conv_s32_s8() {
|
sl@0
|
2327 |
return &_oil_function_class_conv_s32_s8;
|
sl@0
|
2328 |
}
|
sl@0
|
2329 |
#endif
|
sl@0
|
2330 |
|
sl@0
|
2331 |
#ifdef __SYMBIAN32__
|
sl@0
|
2332 |
|
sl@0
|
2333 |
OilFunctionClass* __oil_function_class_conv_s32_s16() {
|
sl@0
|
2334 |
return &_oil_function_class_conv_s32_s16;
|
sl@0
|
2335 |
}
|
sl@0
|
2336 |
#endif
|
sl@0
|
2337 |
|
sl@0
|
2338 |
#ifdef __SYMBIAN32__
|
sl@0
|
2339 |
|
sl@0
|
2340 |
OilFunctionClass* __oil_function_class_conv_s32_u8() {
|
sl@0
|
2341 |
return &_oil_function_class_conv_s32_u8;
|
sl@0
|
2342 |
}
|
sl@0
|
2343 |
#endif
|
sl@0
|
2344 |
|
sl@0
|
2345 |
#ifdef __SYMBIAN32__
|
sl@0
|
2346 |
|
sl@0
|
2347 |
OilFunctionClass* __oil_function_class_conv_s32_u16() {
|
sl@0
|
2348 |
return &_oil_function_class_conv_s32_u16;
|
sl@0
|
2349 |
}
|
sl@0
|
2350 |
#endif
|
sl@0
|
2351 |
|
sl@0
|
2352 |
#ifdef __SYMBIAN32__
|
sl@0
|
2353 |
|
sl@0
|
2354 |
OilFunctionClass* __oil_function_class_conv_s32_u32() {
|
sl@0
|
2355 |
return &_oil_function_class_conv_s32_u32;
|
sl@0
|
2356 |
}
|
sl@0
|
2357 |
#endif
|
sl@0
|
2358 |
|
sl@0
|
2359 |
#ifdef __SYMBIAN32__
|
sl@0
|
2360 |
|
sl@0
|
2361 |
OilFunctionClass* __oil_function_class_conv_s32_f32() {
|
sl@0
|
2362 |
return &_oil_function_class_conv_s32_f32;
|
sl@0
|
2363 |
}
|
sl@0
|
2364 |
#endif
|
sl@0
|
2365 |
|
sl@0
|
2366 |
#ifdef __SYMBIAN32__
|
sl@0
|
2367 |
|
sl@0
|
2368 |
OilFunctionClass* __oil_function_class_conv_s32_f64() {
|
sl@0
|
2369 |
return &_oil_function_class_conv_s32_f64;
|
sl@0
|
2370 |
}
|
sl@0
|
2371 |
#endif
|
sl@0
|
2372 |
|
sl@0
|
2373 |
#ifdef __SYMBIAN32__
|
sl@0
|
2374 |
|
sl@0
|
2375 |
OilFunctionClass* __oil_function_class_conv_u32_s8() {
|
sl@0
|
2376 |
return &_oil_function_class_conv_u32_s8;
|
sl@0
|
2377 |
}
|
sl@0
|
2378 |
#endif
|
sl@0
|
2379 |
|
sl@0
|
2380 |
#ifdef __SYMBIAN32__
|
sl@0
|
2381 |
|
sl@0
|
2382 |
OilFunctionClass* __oil_function_class_conv_u32_s16() {
|
sl@0
|
2383 |
return &_oil_function_class_conv_u32_s16;
|
sl@0
|
2384 |
}
|
sl@0
|
2385 |
#endif
|
sl@0
|
2386 |
|
sl@0
|
2387 |
#ifdef __SYMBIAN32__
|
sl@0
|
2388 |
|
sl@0
|
2389 |
OilFunctionClass* __oil_function_class_conv_u32_u8() {
|
sl@0
|
2390 |
return &_oil_function_class_conv_u32_u8;
|
sl@0
|
2391 |
}
|
sl@0
|
2392 |
#endif
|
sl@0
|
2393 |
|
sl@0
|
2394 |
#ifdef __SYMBIAN32__
|
sl@0
|
2395 |
|
sl@0
|
2396 |
OilFunctionClass* __oil_function_class_conv_u32_u16() {
|
sl@0
|
2397 |
return &_oil_function_class_conv_u32_u16;
|
sl@0
|
2398 |
}
|
sl@0
|
2399 |
#endif
|
sl@0
|
2400 |
|
sl@0
|
2401 |
#ifdef __SYMBIAN32__
|
sl@0
|
2402 |
|
sl@0
|
2403 |
OilFunctionClass* __oil_function_class_conv_u32_s32() {
|
sl@0
|
2404 |
return &_oil_function_class_conv_u32_s32;
|
sl@0
|
2405 |
}
|
sl@0
|
2406 |
#endif
|
sl@0
|
2407 |
|
sl@0
|
2408 |
#ifdef __SYMBIAN32__
|
sl@0
|
2409 |
|
sl@0
|
2410 |
OilFunctionClass* __oil_function_class_conv_u32_f32() {
|
sl@0
|
2411 |
return &_oil_function_class_conv_u32_f32;
|
sl@0
|
2412 |
}
|
sl@0
|
2413 |
#endif
|
sl@0
|
2414 |
|
sl@0
|
2415 |
#ifdef __SYMBIAN32__
|
sl@0
|
2416 |
|
sl@0
|
2417 |
OilFunctionClass* __oil_function_class_conv_u32_f64() {
|
sl@0
|
2418 |
return &_oil_function_class_conv_u32_f64;
|
sl@0
|
2419 |
}
|
sl@0
|
2420 |
#endif
|
sl@0
|
2421 |
|
sl@0
|
2422 |
#ifdef __SYMBIAN32__
|
sl@0
|
2423 |
|
sl@0
|
2424 |
OilFunctionClass* __oil_function_class_conv_f32_s8() {
|
sl@0
|
2425 |
return &_oil_function_class_conv_f32_s8;
|
sl@0
|
2426 |
}
|
sl@0
|
2427 |
#endif
|
sl@0
|
2428 |
|
sl@0
|
2429 |
#ifdef __SYMBIAN32__
|
sl@0
|
2430 |
|
sl@0
|
2431 |
OilFunctionClass* __oil_function_class_conv_f32_s16() {
|
sl@0
|
2432 |
return &_oil_function_class_conv_f32_s16;
|
sl@0
|
2433 |
}
|
sl@0
|
2434 |
#endif
|
sl@0
|
2435 |
|
sl@0
|
2436 |
#ifdef __SYMBIAN32__
|
sl@0
|
2437 |
|
sl@0
|
2438 |
OilFunctionClass* __oil_function_class_conv_f32_u8() {
|
sl@0
|
2439 |
return &_oil_function_class_conv_f32_u8;
|
sl@0
|
2440 |
}
|
sl@0
|
2441 |
#endif
|
sl@0
|
2442 |
|
sl@0
|
2443 |
#ifdef __SYMBIAN32__
|
sl@0
|
2444 |
|
sl@0
|
2445 |
OilFunctionClass* __oil_function_class_conv_f32_u16() {
|
sl@0
|
2446 |
return &_oil_function_class_conv_f32_u16;
|
sl@0
|
2447 |
}
|
sl@0
|
2448 |
#endif
|
sl@0
|
2449 |
|
sl@0
|
2450 |
#ifdef __SYMBIAN32__
|
sl@0
|
2451 |
|
sl@0
|
2452 |
OilFunctionClass* __oil_function_class_conv_f32_s32() {
|
sl@0
|
2453 |
return &_oil_function_class_conv_f32_s32;
|
sl@0
|
2454 |
}
|
sl@0
|
2455 |
#endif
|
sl@0
|
2456 |
|
sl@0
|
2457 |
#ifdef __SYMBIAN32__
|
sl@0
|
2458 |
|
sl@0
|
2459 |
OilFunctionClass* __oil_function_class_conv_f32_u32() {
|
sl@0
|
2460 |
return &_oil_function_class_conv_f32_u32;
|
sl@0
|
2461 |
}
|
sl@0
|
2462 |
#endif
|
sl@0
|
2463 |
|
sl@0
|
2464 |
#ifdef __SYMBIAN32__
|
sl@0
|
2465 |
|
sl@0
|
2466 |
OilFunctionClass* __oil_function_class_conv_f32_f64() {
|
sl@0
|
2467 |
return &_oil_function_class_conv_f32_f64;
|
sl@0
|
2468 |
}
|
sl@0
|
2469 |
#endif
|
sl@0
|
2470 |
|
sl@0
|
2471 |
#ifdef __SYMBIAN32__
|
sl@0
|
2472 |
|
sl@0
|
2473 |
OilFunctionClass* __oil_function_class_conv_f64_s8() {
|
sl@0
|
2474 |
return &_oil_function_class_conv_f64_s8;
|
sl@0
|
2475 |
}
|
sl@0
|
2476 |
#endif
|
sl@0
|
2477 |
|
sl@0
|
2478 |
#ifdef __SYMBIAN32__
|
sl@0
|
2479 |
|
sl@0
|
2480 |
OilFunctionClass* __oil_function_class_conv_f64_u8() {
|
sl@0
|
2481 |
return &_oil_function_class_conv_f64_u8;
|
sl@0
|
2482 |
}
|
sl@0
|
2483 |
#endif
|
sl@0
|
2484 |
|
sl@0
|
2485 |
#ifdef __SYMBIAN32__
|
sl@0
|
2486 |
|
sl@0
|
2487 |
OilFunctionClass* __oil_function_class_conv_f64_s16() {
|
sl@0
|
2488 |
return &_oil_function_class_conv_f64_s16;
|
sl@0
|
2489 |
}
|
sl@0
|
2490 |
#endif
|
sl@0
|
2491 |
|
sl@0
|
2492 |
#ifdef __SYMBIAN32__
|
sl@0
|
2493 |
|
sl@0
|
2494 |
OilFunctionClass* __oil_function_class_conv_f64_u16() {
|
sl@0
|
2495 |
return &_oil_function_class_conv_f64_u16;
|
sl@0
|
2496 |
}
|
sl@0
|
2497 |
#endif
|
sl@0
|
2498 |
|
sl@0
|
2499 |
#ifdef __SYMBIAN32__
|
sl@0
|
2500 |
|
sl@0
|
2501 |
OilFunctionClass* __oil_function_class_conv_f64_s32() {
|
sl@0
|
2502 |
return &_oil_function_class_conv_f64_s32;
|
sl@0
|
2503 |
}
|
sl@0
|
2504 |
#endif
|
sl@0
|
2505 |
|
sl@0
|
2506 |
#ifdef __SYMBIAN32__
|
sl@0
|
2507 |
|
sl@0
|
2508 |
OilFunctionClass* __oil_function_class_conv_f64_u32() {
|
sl@0
|
2509 |
return &_oil_function_class_conv_f64_u32;
|
sl@0
|
2510 |
}
|
sl@0
|
2511 |
#endif
|
sl@0
|
2512 |
|
sl@0
|
2513 |
#ifdef __SYMBIAN32__
|
sl@0
|
2514 |
|
sl@0
|
2515 |
OilFunctionClass* __oil_function_class_conv_f64_f32() {
|
sl@0
|
2516 |
return &_oil_function_class_conv_f64_f32;
|
sl@0
|
2517 |
}
|
sl@0
|
2518 |
#endif
|
sl@0
|
2519 |
|
sl@0
|
2520 |
#ifdef __SYMBIAN32__
|
sl@0
|
2521 |
|
sl@0
|
2522 |
OilFunctionClass* __oil_function_class_clipconv_s8_u8() {
|
sl@0
|
2523 |
return &_oil_function_class_clipconv_s8_u8;
|
sl@0
|
2524 |
}
|
sl@0
|
2525 |
#endif
|
sl@0
|
2526 |
|
sl@0
|
2527 |
#ifdef __SYMBIAN32__
|
sl@0
|
2528 |
|
sl@0
|
2529 |
OilFunctionClass* __oil_function_class_clipconv_s8_u16() {
|
sl@0
|
2530 |
return &_oil_function_class_clipconv_s8_u16;
|
sl@0
|
2531 |
}
|
sl@0
|
2532 |
#endif
|
sl@0
|
2533 |
|
sl@0
|
2534 |
#ifdef __SYMBIAN32__
|
sl@0
|
2535 |
|
sl@0
|
2536 |
OilFunctionClass* __oil_function_class_clipconv_s8_u32() {
|
sl@0
|
2537 |
return &_oil_function_class_clipconv_s8_u32;
|
sl@0
|
2538 |
}
|
sl@0
|
2539 |
#endif
|
sl@0
|
2540 |
|
sl@0
|
2541 |
#ifdef __SYMBIAN32__
|
sl@0
|
2542 |
|
sl@0
|
2543 |
OilFunctionClass* __oil_function_class_clipconv_u8_u32() {
|
sl@0
|
2544 |
return &_oil_function_class_clipconv_u8_u32;
|
sl@0
|
2545 |
}
|
sl@0
|
2546 |
#endif
|
sl@0
|
2547 |
|
sl@0
|
2548 |
#ifdef __SYMBIAN32__
|
sl@0
|
2549 |
|
sl@0
|
2550 |
OilFunctionClass* __oil_function_class_clipconv_u8_u16() {
|
sl@0
|
2551 |
return &_oil_function_class_clipconv_u8_u16;
|
sl@0
|
2552 |
}
|
sl@0
|
2553 |
#endif
|
sl@0
|
2554 |
|
sl@0
|
2555 |
#ifdef __SYMBIAN32__
|
sl@0
|
2556 |
|
sl@0
|
2557 |
OilFunctionClass* __oil_function_class_clipconv_s16_u16() {
|
sl@0
|
2558 |
return &_oil_function_class_clipconv_s16_u16;
|
sl@0
|
2559 |
}
|
sl@0
|
2560 |
#endif
|
sl@0
|
2561 |
|
sl@0
|
2562 |
#ifdef __SYMBIAN32__
|
sl@0
|
2563 |
|
sl@0
|
2564 |
OilFunctionClass* __oil_function_class_clipconv_s16_u32() {
|
sl@0
|
2565 |
return &_oil_function_class_clipconv_s16_u32;
|
sl@0
|
2566 |
}
|
sl@0
|
2567 |
#endif
|
sl@0
|
2568 |
|
sl@0
|
2569 |
#ifdef __SYMBIAN32__
|
sl@0
|
2570 |
|
sl@0
|
2571 |
OilFunctionClass* __oil_function_class_clipconv_s32_u32() {
|
sl@0
|
2572 |
return &_oil_function_class_clipconv_s32_u32;
|
sl@0
|
2573 |
}
|
sl@0
|
2574 |
#endif
|
sl@0
|
2575 |
|
sl@0
|
2576 |
#ifdef __SYMBIAN32__
|
sl@0
|
2577 |
|
sl@0
|
2578 |
OilFunctionClass* __oil_function_class_clipconv_u16_u32() {
|
sl@0
|
2579 |
return &_oil_function_class_clipconv_u16_u32;
|
sl@0
|
2580 |
}
|
sl@0
|
2581 |
#endif
|
sl@0
|
2582 |
|
sl@0
|
2583 |
#ifdef __SYMBIAN32__
|
sl@0
|
2584 |
|
sl@0
|
2585 |
OilFunctionClass* __oil_function_class_clipconv_s8_s16() {
|
sl@0
|
2586 |
return &_oil_function_class_clipconv_s8_s16;
|
sl@0
|
2587 |
}
|
sl@0
|
2588 |
#endif
|
sl@0
|
2589 |
|
sl@0
|
2590 |
#ifdef __SYMBIAN32__
|
sl@0
|
2591 |
|
sl@0
|
2592 |
OilFunctionClass* __oil_function_class_clipconv_s8_s32() {
|
sl@0
|
2593 |
return &_oil_function_class_clipconv_s8_s32;
|
sl@0
|
2594 |
}
|
sl@0
|
2595 |
#endif
|
sl@0
|
2596 |
|
sl@0
|
2597 |
#ifdef __SYMBIAN32__
|
sl@0
|
2598 |
|
sl@0
|
2599 |
OilFunctionClass* __oil_function_class_clipconv_u8_s16() {
|
sl@0
|
2600 |
return &_oil_function_class_clipconv_u8_s16;
|
sl@0
|
2601 |
}
|
sl@0
|
2602 |
#endif
|
sl@0
|
2603 |
|
sl@0
|
2604 |
#ifdef __SYMBIAN32__
|
sl@0
|
2605 |
|
sl@0
|
2606 |
OilFunctionClass* __oil_function_class_clipconv_u8_s32() {
|
sl@0
|
2607 |
return &_oil_function_class_clipconv_u8_s32;
|
sl@0
|
2608 |
}
|
sl@0
|
2609 |
#endif
|
sl@0
|
2610 |
|
sl@0
|
2611 |
#ifdef __SYMBIAN32__
|
sl@0
|
2612 |
|
sl@0
|
2613 |
OilFunctionClass* __oil_function_class_clipconv_s16_s32() {
|
sl@0
|
2614 |
return &_oil_function_class_clipconv_s16_s32;
|
sl@0
|
2615 |
}
|
sl@0
|
2616 |
#endif
|
sl@0
|
2617 |
|
sl@0
|
2618 |
#ifdef __SYMBIAN32__
|
sl@0
|
2619 |
|
sl@0
|
2620 |
OilFunctionClass* __oil_function_class_clipconv_u16_s32() {
|
sl@0
|
2621 |
return &_oil_function_class_clipconv_u16_s32;
|
sl@0
|
2622 |
}
|
sl@0
|
2623 |
#endif
|
sl@0
|
2624 |
|
sl@0
|
2625 |
#ifdef __SYMBIAN32__
|
sl@0
|
2626 |
|
sl@0
|
2627 |
OilFunctionClass* __oil_function_class_clipconv_u8_s8() {
|
sl@0
|
2628 |
return &_oil_function_class_clipconv_u8_s8;
|
sl@0
|
2629 |
}
|
sl@0
|
2630 |
#endif
|
sl@0
|
2631 |
|
sl@0
|
2632 |
#ifdef __SYMBIAN32__
|
sl@0
|
2633 |
|
sl@0
|
2634 |
OilFunctionClass* __oil_function_class_clipconv_u16_s16() {
|
sl@0
|
2635 |
return &_oil_function_class_clipconv_u16_s16;
|
sl@0
|
2636 |
}
|
sl@0
|
2637 |
#endif
|
sl@0
|
2638 |
|
sl@0
|
2639 |
#ifdef __SYMBIAN32__
|
sl@0
|
2640 |
|
sl@0
|
2641 |
OilFunctionClass* __oil_function_class_clipconv_u32_s32() {
|
sl@0
|
2642 |
return &_oil_function_class_clipconv_u32_s32;
|
sl@0
|
2643 |
}
|
sl@0
|
2644 |
#endif
|
sl@0
|
2645 |
|
sl@0
|
2646 |
#ifdef __SYMBIAN32__
|
sl@0
|
2647 |
|
sl@0
|
2648 |
OilFunctionClass* __oil_function_class_clipconv_s8_f32() {
|
sl@0
|
2649 |
return &_oil_function_class_clipconv_s8_f32;
|
sl@0
|
2650 |
}
|
sl@0
|
2651 |
#endif
|
sl@0
|
2652 |
|
sl@0
|
2653 |
#ifdef __SYMBIAN32__
|
sl@0
|
2654 |
|
sl@0
|
2655 |
OilFunctionClass* __oil_function_class_clipconv_s8_f64() {
|
sl@0
|
2656 |
return &_oil_function_class_clipconv_s8_f64;
|
sl@0
|
2657 |
}
|
sl@0
|
2658 |
#endif
|
sl@0
|
2659 |
|
sl@0
|
2660 |
#ifdef __SYMBIAN32__
|
sl@0
|
2661 |
|
sl@0
|
2662 |
OilFunctionClass* __oil_function_class_clipconv_u8_f32() {
|
sl@0
|
2663 |
return &_oil_function_class_clipconv_u8_f32;
|
sl@0
|
2664 |
}
|
sl@0
|
2665 |
#endif
|
sl@0
|
2666 |
|
sl@0
|
2667 |
#ifdef __SYMBIAN32__
|
sl@0
|
2668 |
|
sl@0
|
2669 |
OilFunctionClass* __oil_function_class_clipconv_u8_f64() {
|
sl@0
|
2670 |
return &_oil_function_class_clipconv_u8_f64;
|
sl@0
|
2671 |
}
|
sl@0
|
2672 |
#endif
|
sl@0
|
2673 |
|
sl@0
|
2674 |
#ifdef __SYMBIAN32__
|
sl@0
|
2675 |
|
sl@0
|
2676 |
OilFunctionClass* __oil_function_class_clipconv_s16_f32() {
|
sl@0
|
2677 |
return &_oil_function_class_clipconv_s16_f32;
|
sl@0
|
2678 |
}
|
sl@0
|
2679 |
#endif
|
sl@0
|
2680 |
|
sl@0
|
2681 |
#ifdef __SYMBIAN32__
|
sl@0
|
2682 |
|
sl@0
|
2683 |
OilFunctionClass* __oil_function_class_clipconv_s16_f64() {
|
sl@0
|
2684 |
return &_oil_function_class_clipconv_s16_f64;
|
sl@0
|
2685 |
}
|
sl@0
|
2686 |
#endif
|
sl@0
|
2687 |
|
sl@0
|
2688 |
#ifdef __SYMBIAN32__
|
sl@0
|
2689 |
|
sl@0
|
2690 |
OilFunctionClass* __oil_function_class_clipconv_u16_f32() {
|
sl@0
|
2691 |
return &_oil_function_class_clipconv_u16_f32;
|
sl@0
|
2692 |
}
|
sl@0
|
2693 |
#endif
|
sl@0
|
2694 |
|
sl@0
|
2695 |
#ifdef __SYMBIAN32__
|
sl@0
|
2696 |
|
sl@0
|
2697 |
OilFunctionClass* __oil_function_class_clipconv_u16_f64() {
|
sl@0
|
2698 |
return &_oil_function_class_clipconv_u16_f64;
|
sl@0
|
2699 |
}
|
sl@0
|
2700 |
#endif
|
sl@0
|
2701 |
|
sl@0
|
2702 |
#ifdef __SYMBIAN32__
|
sl@0
|
2703 |
|
sl@0
|
2704 |
OilFunctionClass* __oil_function_class_clipconv_s32_f32() {
|
sl@0
|
2705 |
return &_oil_function_class_clipconv_s32_f32;
|
sl@0
|
2706 |
}
|
sl@0
|
2707 |
#endif
|
sl@0
|
2708 |
|
sl@0
|
2709 |
#ifdef __SYMBIAN32__
|
sl@0
|
2710 |
|
sl@0
|
2711 |
OilFunctionClass* __oil_function_class_clipconv_s32_f64() {
|
sl@0
|
2712 |
return &_oil_function_class_clipconv_s32_f64;
|
sl@0
|
2713 |
}
|
sl@0
|
2714 |
#endif
|
sl@0
|
2715 |
|
sl@0
|
2716 |
#ifdef __SYMBIAN32__
|
sl@0
|
2717 |
|
sl@0
|
2718 |
OilFunctionClass* __oil_function_class_clipconv_u32_f32() {
|
sl@0
|
2719 |
return &_oil_function_class_clipconv_u32_f32;
|
sl@0
|
2720 |
}
|
sl@0
|
2721 |
#endif
|
sl@0
|
2722 |
|
sl@0
|
2723 |
#ifdef __SYMBIAN32__
|
sl@0
|
2724 |
|
sl@0
|
2725 |
OilFunctionClass* __oil_function_class_clipconv_u32_f64() {
|
sl@0
|
2726 |
return &_oil_function_class_clipconv_u32_f64;
|
sl@0
|
2727 |
}
|
sl@0
|
2728 |
#endif
|
sl@0
|
2729 |
|
sl@0
|
2730 |
#ifdef __SYMBIAN32__
|
sl@0
|
2731 |
|
sl@0
|
2732 |
OilFunctionClass* __oil_function_class_scaleconv_s8_f32() {
|
sl@0
|
2733 |
return &_oil_function_class_scaleconv_s8_f32;
|
sl@0
|
2734 |
}
|
sl@0
|
2735 |
#endif
|
sl@0
|
2736 |
|
sl@0
|
2737 |
#ifdef __SYMBIAN32__
|
sl@0
|
2738 |
|
sl@0
|
2739 |
OilFunctionClass* __oil_function_class_scaleconv_u8_f32() {
|
sl@0
|
2740 |
return &_oil_function_class_scaleconv_u8_f32;
|
sl@0
|
2741 |
}
|
sl@0
|
2742 |
#endif
|
sl@0
|
2743 |
|
sl@0
|
2744 |
#ifdef __SYMBIAN32__
|
sl@0
|
2745 |
|
sl@0
|
2746 |
OilFunctionClass* __oil_function_class_scaleconv_s16_f32() {
|
sl@0
|
2747 |
return &_oil_function_class_scaleconv_s16_f32;
|
sl@0
|
2748 |
}
|
sl@0
|
2749 |
#endif
|
sl@0
|
2750 |
|
sl@0
|
2751 |
#ifdef __SYMBIAN32__
|
sl@0
|
2752 |
|
sl@0
|
2753 |
OilFunctionClass* __oil_function_class_scaleconv_u16_f32() {
|
sl@0
|
2754 |
return &_oil_function_class_scaleconv_u16_f32;
|
sl@0
|
2755 |
}
|
sl@0
|
2756 |
#endif
|
sl@0
|
2757 |
|
sl@0
|
2758 |
#ifdef __SYMBIAN32__
|
sl@0
|
2759 |
|
sl@0
|
2760 |
OilFunctionClass* __oil_function_class_scaleconv_s32_f32() {
|
sl@0
|
2761 |
return &_oil_function_class_scaleconv_s32_f32;
|
sl@0
|
2762 |
}
|
sl@0
|
2763 |
#endif
|
sl@0
|
2764 |
|
sl@0
|
2765 |
#ifdef __SYMBIAN32__
|
sl@0
|
2766 |
|
sl@0
|
2767 |
OilFunctionClass* __oil_function_class_scaleconv_u32_f32() {
|
sl@0
|
2768 |
return &_oil_function_class_scaleconv_u32_f32;
|
sl@0
|
2769 |
}
|
sl@0
|
2770 |
#endif
|
sl@0
|
2771 |
|
sl@0
|
2772 |
#ifdef __SYMBIAN32__
|
sl@0
|
2773 |
|
sl@0
|
2774 |
OilFunctionClass* __oil_function_class_scaleconv_s8_f64() {
|
sl@0
|
2775 |
return &_oil_function_class_scaleconv_s8_f64;
|
sl@0
|
2776 |
}
|
sl@0
|
2777 |
#endif
|
sl@0
|
2778 |
|
sl@0
|
2779 |
#ifdef __SYMBIAN32__
|
sl@0
|
2780 |
|
sl@0
|
2781 |
OilFunctionClass* __oil_function_class_scaleconv_u8_f64() {
|
sl@0
|
2782 |
return &_oil_function_class_scaleconv_u8_f64;
|
sl@0
|
2783 |
}
|
sl@0
|
2784 |
#endif
|
sl@0
|
2785 |
|
sl@0
|
2786 |
#ifdef __SYMBIAN32__
|
sl@0
|
2787 |
|
sl@0
|
2788 |
OilFunctionClass* __oil_function_class_scaleconv_s16_f64() {
|
sl@0
|
2789 |
return &_oil_function_class_scaleconv_s16_f64;
|
sl@0
|
2790 |
}
|
sl@0
|
2791 |
#endif
|
sl@0
|
2792 |
|
sl@0
|
2793 |
#ifdef __SYMBIAN32__
|
sl@0
|
2794 |
|
sl@0
|
2795 |
OilFunctionClass* __oil_function_class_scaleconv_u16_f64() {
|
sl@0
|
2796 |
return &_oil_function_class_scaleconv_u16_f64;
|
sl@0
|
2797 |
}
|
sl@0
|
2798 |
#endif
|
sl@0
|
2799 |
|
sl@0
|
2800 |
#ifdef __SYMBIAN32__
|
sl@0
|
2801 |
|
sl@0
|
2802 |
OilFunctionClass* __oil_function_class_scaleconv_s32_f64() {
|
sl@0
|
2803 |
return &_oil_function_class_scaleconv_s32_f64;
|
sl@0
|
2804 |
}
|
sl@0
|
2805 |
#endif
|
sl@0
|
2806 |
|
sl@0
|
2807 |
#ifdef __SYMBIAN32__
|
sl@0
|
2808 |
|
sl@0
|
2809 |
OilFunctionClass* __oil_function_class_scaleconv_u32_f64() {
|
sl@0
|
2810 |
return &_oil_function_class_scaleconv_u32_f64;
|
sl@0
|
2811 |
}
|
sl@0
|
2812 |
#endif
|
sl@0
|
2813 |
|
sl@0
|
2814 |
#ifdef __SYMBIAN32__
|
sl@0
|
2815 |
|
sl@0
|
2816 |
OilFunctionClass* __oil_function_class_scaleconv_f32_s8() {
|
sl@0
|
2817 |
return &_oil_function_class_scaleconv_f32_s8;
|
sl@0
|
2818 |
}
|
sl@0
|
2819 |
#endif
|
sl@0
|
2820 |
|
sl@0
|
2821 |
#ifdef __SYMBIAN32__
|
sl@0
|
2822 |
|
sl@0
|
2823 |
OilFunctionClass* __oil_function_class_scaleconv_f32_u8() {
|
sl@0
|
2824 |
return &_oil_function_class_scaleconv_f32_u8;
|
sl@0
|
2825 |
}
|
sl@0
|
2826 |
#endif
|
sl@0
|
2827 |
|
sl@0
|
2828 |
#ifdef __SYMBIAN32__
|
sl@0
|
2829 |
|
sl@0
|
2830 |
OilFunctionClass* __oil_function_class_scaleconv_f32_s16() {
|
sl@0
|
2831 |
return &_oil_function_class_scaleconv_f32_s16;
|
sl@0
|
2832 |
}
|
sl@0
|
2833 |
#endif
|
sl@0
|
2834 |
|
sl@0
|
2835 |
#ifdef __SYMBIAN32__
|
sl@0
|
2836 |
|
sl@0
|
2837 |
OilFunctionClass* __oil_function_class_scaleconv_f32_u16() {
|
sl@0
|
2838 |
return &_oil_function_class_scaleconv_f32_u16;
|
sl@0
|
2839 |
}
|
sl@0
|
2840 |
#endif
|
sl@0
|
2841 |
|
sl@0
|
2842 |
#ifdef __SYMBIAN32__
|
sl@0
|
2843 |
|
sl@0
|
2844 |
OilFunctionClass* __oil_function_class_scaleconv_f32_s32() {
|
sl@0
|
2845 |
return &_oil_function_class_scaleconv_f32_s32;
|
sl@0
|
2846 |
}
|
sl@0
|
2847 |
#endif
|
sl@0
|
2848 |
|
sl@0
|
2849 |
#ifdef __SYMBIAN32__
|
sl@0
|
2850 |
|
sl@0
|
2851 |
OilFunctionClass* __oil_function_class_scaleconv_f32_u32() {
|
sl@0
|
2852 |
return &_oil_function_class_scaleconv_f32_u32;
|
sl@0
|
2853 |
}
|
sl@0
|
2854 |
#endif
|
sl@0
|
2855 |
|
sl@0
|
2856 |
#ifdef __SYMBIAN32__
|
sl@0
|
2857 |
|
sl@0
|
2858 |
OilFunctionClass* __oil_function_class_scaleconv_f64_s8() {
|
sl@0
|
2859 |
return &_oil_function_class_scaleconv_f64_s8;
|
sl@0
|
2860 |
}
|
sl@0
|
2861 |
#endif
|
sl@0
|
2862 |
|
sl@0
|
2863 |
#ifdef __SYMBIAN32__
|
sl@0
|
2864 |
|
sl@0
|
2865 |
OilFunctionClass* __oil_function_class_scaleconv_f64_u8() {
|
sl@0
|
2866 |
return &_oil_function_class_scaleconv_f64_u8;
|
sl@0
|
2867 |
}
|
sl@0
|
2868 |
#endif
|
sl@0
|
2869 |
|
sl@0
|
2870 |
#ifdef __SYMBIAN32__
|
sl@0
|
2871 |
|
sl@0
|
2872 |
OilFunctionClass* __oil_function_class_scaleconv_f64_s16() {
|
sl@0
|
2873 |
return &_oil_function_class_scaleconv_f64_s16;
|
sl@0
|
2874 |
}
|
sl@0
|
2875 |
#endif
|
sl@0
|
2876 |
|
sl@0
|
2877 |
#ifdef __SYMBIAN32__
|
sl@0
|
2878 |
|
sl@0
|
2879 |
OilFunctionClass* __oil_function_class_scaleconv_f64_u16() {
|
sl@0
|
2880 |
return &_oil_function_class_scaleconv_f64_u16;
|
sl@0
|
2881 |
}
|
sl@0
|
2882 |
#endif
|
sl@0
|
2883 |
|
sl@0
|
2884 |
#ifdef __SYMBIAN32__
|
sl@0
|
2885 |
|
sl@0
|
2886 |
OilFunctionClass* __oil_function_class_scaleconv_f64_s32() {
|
sl@0
|
2887 |
return &_oil_function_class_scaleconv_f64_s32;
|
sl@0
|
2888 |
}
|
sl@0
|
2889 |
#endif
|
sl@0
|
2890 |
|
sl@0
|
2891 |
#ifdef __SYMBIAN32__
|
sl@0
|
2892 |
|
sl@0
|
2893 |
OilFunctionClass* __oil_function_class_scaleconv_f64_u32() {
|
sl@0
|
2894 |
return &_oil_function_class_scaleconv_f64_u32;
|
sl@0
|
2895 |
}
|
sl@0
|
2896 |
#endif
|
sl@0
|
2897 |
|
sl@0
|
2898 |
|
sl@0
|
2899 |
|
sl@0
|
2900 |
#ifdef __SYMBIAN32__
|
sl@0
|
2901 |
|
sl@0
|
2902 |
OilFunctionImpl* __oil_function_impl_conv_s8_u8_ref() {
|
sl@0
|
2903 |
return &_oil_function_impl_conv_s8_u8_ref;
|
sl@0
|
2904 |
}
|
sl@0
|
2905 |
#endif
|
sl@0
|
2906 |
|
sl@0
|
2907 |
#ifdef __SYMBIAN32__
|
sl@0
|
2908 |
|
sl@0
|
2909 |
OilFunctionImpl* __oil_function_impl_conv_s8_s16_ref() {
|
sl@0
|
2910 |
return &_oil_function_impl_conv_s8_s16_ref;
|
sl@0
|
2911 |
}
|
sl@0
|
2912 |
#endif
|
sl@0
|
2913 |
|
sl@0
|
2914 |
#ifdef __SYMBIAN32__
|
sl@0
|
2915 |
|
sl@0
|
2916 |
OilFunctionImpl* __oil_function_impl_conv_s8_u16_ref() {
|
sl@0
|
2917 |
return &_oil_function_impl_conv_s8_u16_ref;
|
sl@0
|
2918 |
}
|
sl@0
|
2919 |
#endif
|
sl@0
|
2920 |
|
sl@0
|
2921 |
#ifdef __SYMBIAN32__
|
sl@0
|
2922 |
|
sl@0
|
2923 |
OilFunctionImpl* __oil_function_impl_conv_s8_s32_ref() {
|
sl@0
|
2924 |
return &_oil_function_impl_conv_s8_s32_ref;
|
sl@0
|
2925 |
}
|
sl@0
|
2926 |
#endif
|
sl@0
|
2927 |
|
sl@0
|
2928 |
#ifdef __SYMBIAN32__
|
sl@0
|
2929 |
|
sl@0
|
2930 |
OilFunctionImpl* __oil_function_impl_conv_s8_u32_ref() {
|
sl@0
|
2931 |
return &_oil_function_impl_conv_s8_u32_ref;
|
sl@0
|
2932 |
}
|
sl@0
|
2933 |
#endif
|
sl@0
|
2934 |
|
sl@0
|
2935 |
#ifdef __SYMBIAN32__
|
sl@0
|
2936 |
|
sl@0
|
2937 |
OilFunctionImpl* __oil_function_impl_conv_s8_f32_ref() {
|
sl@0
|
2938 |
return &_oil_function_impl_conv_s8_f32_ref;
|
sl@0
|
2939 |
}
|
sl@0
|
2940 |
#endif
|
sl@0
|
2941 |
|
sl@0
|
2942 |
#ifdef __SYMBIAN32__
|
sl@0
|
2943 |
|
sl@0
|
2944 |
OilFunctionImpl* __oil_function_impl_conv_s8_f64_ref() {
|
sl@0
|
2945 |
return &_oil_function_impl_conv_s8_f64_ref;
|
sl@0
|
2946 |
}
|
sl@0
|
2947 |
#endif
|
sl@0
|
2948 |
|
sl@0
|
2949 |
#ifdef __SYMBIAN32__
|
sl@0
|
2950 |
|
sl@0
|
2951 |
OilFunctionImpl* __oil_function_impl_conv_u8_s8_ref() {
|
sl@0
|
2952 |
return &_oil_function_impl_conv_u8_s8_ref;
|
sl@0
|
2953 |
}
|
sl@0
|
2954 |
#endif
|
sl@0
|
2955 |
|
sl@0
|
2956 |
#ifdef __SYMBIAN32__
|
sl@0
|
2957 |
|
sl@0
|
2958 |
OilFunctionImpl* __oil_function_impl_conv_u8_s16_ref() {
|
sl@0
|
2959 |
return &_oil_function_impl_conv_u8_s16_ref;
|
sl@0
|
2960 |
}
|
sl@0
|
2961 |
#endif
|
sl@0
|
2962 |
|
sl@0
|
2963 |
#ifdef __SYMBIAN32__
|
sl@0
|
2964 |
|
sl@0
|
2965 |
OilFunctionImpl* __oil_function_impl_conv_u8_u16_ref() {
|
sl@0
|
2966 |
return &_oil_function_impl_conv_u8_u16_ref;
|
sl@0
|
2967 |
}
|
sl@0
|
2968 |
#endif
|
sl@0
|
2969 |
|
sl@0
|
2970 |
#ifdef __SYMBIAN32__
|
sl@0
|
2971 |
|
sl@0
|
2972 |
OilFunctionImpl* __oil_function_impl_conv_u8_s32_ref() {
|
sl@0
|
2973 |
return &_oil_function_impl_conv_u8_s32_ref;
|
sl@0
|
2974 |
}
|
sl@0
|
2975 |
#endif
|
sl@0
|
2976 |
|
sl@0
|
2977 |
#ifdef __SYMBIAN32__
|
sl@0
|
2978 |
|
sl@0
|
2979 |
OilFunctionImpl* __oil_function_impl_conv_u8_u32_ref() {
|
sl@0
|
2980 |
return &_oil_function_impl_conv_u8_u32_ref;
|
sl@0
|
2981 |
}
|
sl@0
|
2982 |
#endif
|
sl@0
|
2983 |
|
sl@0
|
2984 |
#ifdef __SYMBIAN32__
|
sl@0
|
2985 |
|
sl@0
|
2986 |
OilFunctionImpl* __oil_function_impl_conv_u8_f32_ref() {
|
sl@0
|
2987 |
return &_oil_function_impl_conv_u8_f32_ref;
|
sl@0
|
2988 |
}
|
sl@0
|
2989 |
#endif
|
sl@0
|
2990 |
|
sl@0
|
2991 |
#ifdef __SYMBIAN32__
|
sl@0
|
2992 |
|
sl@0
|
2993 |
OilFunctionImpl* __oil_function_impl_conv_u8_f64_ref() {
|
sl@0
|
2994 |
return &_oil_function_impl_conv_u8_f64_ref;
|
sl@0
|
2995 |
}
|
sl@0
|
2996 |
#endif
|
sl@0
|
2997 |
|
sl@0
|
2998 |
#ifdef __SYMBIAN32__
|
sl@0
|
2999 |
|
sl@0
|
3000 |
OilFunctionImpl* __oil_function_impl_conv_s16_s8_ref() {
|
sl@0
|
3001 |
return &_oil_function_impl_conv_s16_s8_ref;
|
sl@0
|
3002 |
}
|
sl@0
|
3003 |
#endif
|
sl@0
|
3004 |
|
sl@0
|
3005 |
#ifdef __SYMBIAN32__
|
sl@0
|
3006 |
|
sl@0
|
3007 |
OilFunctionImpl* __oil_function_impl_conv_s16_u8_ref() {
|
sl@0
|
3008 |
return &_oil_function_impl_conv_s16_u8_ref;
|
sl@0
|
3009 |
}
|
sl@0
|
3010 |
#endif
|
sl@0
|
3011 |
|
sl@0
|
3012 |
#ifdef __SYMBIAN32__
|
sl@0
|
3013 |
|
sl@0
|
3014 |
OilFunctionImpl* __oil_function_impl_conv_s16_u16_ref() {
|
sl@0
|
3015 |
return &_oil_function_impl_conv_s16_u16_ref;
|
sl@0
|
3016 |
}
|
sl@0
|
3017 |
#endif
|
sl@0
|
3018 |
|
sl@0
|
3019 |
#ifdef __SYMBIAN32__
|
sl@0
|
3020 |
|
sl@0
|
3021 |
OilFunctionImpl* __oil_function_impl_conv_s16_s32_ref() {
|
sl@0
|
3022 |
return &_oil_function_impl_conv_s16_s32_ref;
|
sl@0
|
3023 |
}
|
sl@0
|
3024 |
#endif
|
sl@0
|
3025 |
|
sl@0
|
3026 |
#ifdef __SYMBIAN32__
|
sl@0
|
3027 |
|
sl@0
|
3028 |
OilFunctionImpl* __oil_function_impl_conv_s16_u32_ref() {
|
sl@0
|
3029 |
return &_oil_function_impl_conv_s16_u32_ref;
|
sl@0
|
3030 |
}
|
sl@0
|
3031 |
#endif
|
sl@0
|
3032 |
|
sl@0
|
3033 |
#ifdef __SYMBIAN32__
|
sl@0
|
3034 |
|
sl@0
|
3035 |
OilFunctionImpl* __oil_function_impl_conv_s16_f32_ref() {
|
sl@0
|
3036 |
return &_oil_function_impl_conv_s16_f32_ref;
|
sl@0
|
3037 |
}
|
sl@0
|
3038 |
#endif
|
sl@0
|
3039 |
|
sl@0
|
3040 |
#ifdef __SYMBIAN32__
|
sl@0
|
3041 |
|
sl@0
|
3042 |
OilFunctionImpl* __oil_function_impl_conv_s16_f64_ref() {
|
sl@0
|
3043 |
return &_oil_function_impl_conv_s16_f64_ref;
|
sl@0
|
3044 |
}
|
sl@0
|
3045 |
#endif
|
sl@0
|
3046 |
|
sl@0
|
3047 |
#ifdef __SYMBIAN32__
|
sl@0
|
3048 |
|
sl@0
|
3049 |
OilFunctionImpl* __oil_function_impl_conv_u16_s8_ref() {
|
sl@0
|
3050 |
return &_oil_function_impl_conv_u16_s8_ref;
|
sl@0
|
3051 |
}
|
sl@0
|
3052 |
#endif
|
sl@0
|
3053 |
|
sl@0
|
3054 |
#ifdef __SYMBIAN32__
|
sl@0
|
3055 |
|
sl@0
|
3056 |
OilFunctionImpl* __oil_function_impl_conv_u16_u8_ref() {
|
sl@0
|
3057 |
return &_oil_function_impl_conv_u16_u8_ref;
|
sl@0
|
3058 |
}
|
sl@0
|
3059 |
#endif
|
sl@0
|
3060 |
|
sl@0
|
3061 |
#ifdef __SYMBIAN32__
|
sl@0
|
3062 |
|
sl@0
|
3063 |
OilFunctionImpl* __oil_function_impl_conv_u16_s16_ref() {
|
sl@0
|
3064 |
return &_oil_function_impl_conv_u16_s16_ref;
|
sl@0
|
3065 |
}
|
sl@0
|
3066 |
#endif
|
sl@0
|
3067 |
|
sl@0
|
3068 |
#ifdef __SYMBIAN32__
|
sl@0
|
3069 |
|
sl@0
|
3070 |
OilFunctionImpl* __oil_function_impl_conv_u16_s32_ref() {
|
sl@0
|
3071 |
return &_oil_function_impl_conv_u16_s32_ref;
|
sl@0
|
3072 |
}
|
sl@0
|
3073 |
#endif
|
sl@0
|
3074 |
|
sl@0
|
3075 |
#ifdef __SYMBIAN32__
|
sl@0
|
3076 |
|
sl@0
|
3077 |
OilFunctionImpl* __oil_function_impl_conv_u16_u32_ref() {
|
sl@0
|
3078 |
return &_oil_function_impl_conv_u16_u32_ref;
|
sl@0
|
3079 |
}
|
sl@0
|
3080 |
#endif
|
sl@0
|
3081 |
|
sl@0
|
3082 |
#ifdef __SYMBIAN32__
|
sl@0
|
3083 |
|
sl@0
|
3084 |
OilFunctionImpl* __oil_function_impl_conv_u16_f32_ref() {
|
sl@0
|
3085 |
return &_oil_function_impl_conv_u16_f32_ref;
|
sl@0
|
3086 |
}
|
sl@0
|
3087 |
#endif
|
sl@0
|
3088 |
|
sl@0
|
3089 |
#ifdef __SYMBIAN32__
|
sl@0
|
3090 |
|
sl@0
|
3091 |
OilFunctionImpl* __oil_function_impl_conv_u16_f64_ref() {
|
sl@0
|
3092 |
return &_oil_function_impl_conv_u16_f64_ref;
|
sl@0
|
3093 |
}
|
sl@0
|
3094 |
#endif
|
sl@0
|
3095 |
|
sl@0
|
3096 |
#ifdef __SYMBIAN32__
|
sl@0
|
3097 |
|
sl@0
|
3098 |
OilFunctionImpl* __oil_function_impl_conv_s32_s8_ref() {
|
sl@0
|
3099 |
return &_oil_function_impl_conv_s32_s8_ref;
|
sl@0
|
3100 |
}
|
sl@0
|
3101 |
#endif
|
sl@0
|
3102 |
|
sl@0
|
3103 |
#ifdef __SYMBIAN32__
|
sl@0
|
3104 |
|
sl@0
|
3105 |
OilFunctionImpl* __oil_function_impl_conv_s32_s16_ref() {
|
sl@0
|
3106 |
return &_oil_function_impl_conv_s32_s16_ref;
|
sl@0
|
3107 |
}
|
sl@0
|
3108 |
#endif
|
sl@0
|
3109 |
|
sl@0
|
3110 |
#ifdef __SYMBIAN32__
|
sl@0
|
3111 |
|
sl@0
|
3112 |
OilFunctionImpl* __oil_function_impl_conv_s32_u8_ref() {
|
sl@0
|
3113 |
return &_oil_function_impl_conv_s32_u8_ref;
|
sl@0
|
3114 |
}
|
sl@0
|
3115 |
#endif
|
sl@0
|
3116 |
|
sl@0
|
3117 |
#ifdef __SYMBIAN32__
|
sl@0
|
3118 |
|
sl@0
|
3119 |
OilFunctionImpl* __oil_function_impl_conv_s32_u16_ref() {
|
sl@0
|
3120 |
return &_oil_function_impl_conv_s32_u16_ref;
|
sl@0
|
3121 |
}
|
sl@0
|
3122 |
#endif
|
sl@0
|
3123 |
|
sl@0
|
3124 |
#ifdef __SYMBIAN32__
|
sl@0
|
3125 |
|
sl@0
|
3126 |
OilFunctionImpl* __oil_function_impl_conv_s32_u32_ref() {
|
sl@0
|
3127 |
return &_oil_function_impl_conv_s32_u32_ref;
|
sl@0
|
3128 |
}
|
sl@0
|
3129 |
#endif
|
sl@0
|
3130 |
|
sl@0
|
3131 |
#ifdef __SYMBIAN32__
|
sl@0
|
3132 |
|
sl@0
|
3133 |
OilFunctionImpl* __oil_function_impl_conv_s32_f32_ref() {
|
sl@0
|
3134 |
return &_oil_function_impl_conv_s32_f32_ref;
|
sl@0
|
3135 |
}
|
sl@0
|
3136 |
#endif
|
sl@0
|
3137 |
|
sl@0
|
3138 |
#ifdef __SYMBIAN32__
|
sl@0
|
3139 |
|
sl@0
|
3140 |
OilFunctionImpl* __oil_function_impl_conv_s32_f64_ref() {
|
sl@0
|
3141 |
return &_oil_function_impl_conv_s32_f64_ref;
|
sl@0
|
3142 |
}
|
sl@0
|
3143 |
#endif
|
sl@0
|
3144 |
|
sl@0
|
3145 |
#ifdef __SYMBIAN32__
|
sl@0
|
3146 |
|
sl@0
|
3147 |
OilFunctionImpl* __oil_function_impl_conv_u32_s8_ref() {
|
sl@0
|
3148 |
return &_oil_function_impl_conv_u32_s8_ref;
|
sl@0
|
3149 |
}
|
sl@0
|
3150 |
#endif
|
sl@0
|
3151 |
|
sl@0
|
3152 |
#ifdef __SYMBIAN32__
|
sl@0
|
3153 |
|
sl@0
|
3154 |
OilFunctionImpl* __oil_function_impl_conv_u32_s16_ref() {
|
sl@0
|
3155 |
return &_oil_function_impl_conv_u32_s16_ref;
|
sl@0
|
3156 |
}
|
sl@0
|
3157 |
#endif
|
sl@0
|
3158 |
|
sl@0
|
3159 |
#ifdef __SYMBIAN32__
|
sl@0
|
3160 |
|
sl@0
|
3161 |
OilFunctionImpl* __oil_function_impl_conv_u32_u8_ref() {
|
sl@0
|
3162 |
return &_oil_function_impl_conv_u32_u8_ref;
|
sl@0
|
3163 |
}
|
sl@0
|
3164 |
#endif
|
sl@0
|
3165 |
|
sl@0
|
3166 |
#ifdef __SYMBIAN32__
|
sl@0
|
3167 |
|
sl@0
|
3168 |
OilFunctionImpl* __oil_function_impl_conv_u32_u16_ref() {
|
sl@0
|
3169 |
return &_oil_function_impl_conv_u32_u16_ref;
|
sl@0
|
3170 |
}
|
sl@0
|
3171 |
#endif
|
sl@0
|
3172 |
|
sl@0
|
3173 |
#ifdef __SYMBIAN32__
|
sl@0
|
3174 |
|
sl@0
|
3175 |
OilFunctionImpl* __oil_function_impl_conv_u32_s32_ref() {
|
sl@0
|
3176 |
return &_oil_function_impl_conv_u32_s32_ref;
|
sl@0
|
3177 |
}
|
sl@0
|
3178 |
#endif
|
sl@0
|
3179 |
|
sl@0
|
3180 |
#ifdef __SYMBIAN32__
|
sl@0
|
3181 |
|
sl@0
|
3182 |
OilFunctionImpl* __oil_function_impl_conv_u32_f32_ref() {
|
sl@0
|
3183 |
return &_oil_function_impl_conv_u32_f32_ref;
|
sl@0
|
3184 |
}
|
sl@0
|
3185 |
#endif
|
sl@0
|
3186 |
|
sl@0
|
3187 |
#ifdef __SYMBIAN32__
|
sl@0
|
3188 |
|
sl@0
|
3189 |
OilFunctionImpl* __oil_function_impl_conv_u32_f64_ref() {
|
sl@0
|
3190 |
return &_oil_function_impl_conv_u32_f64_ref;
|
sl@0
|
3191 |
}
|
sl@0
|
3192 |
#endif
|
sl@0
|
3193 |
|
sl@0
|
3194 |
#ifdef __SYMBIAN32__
|
sl@0
|
3195 |
|
sl@0
|
3196 |
OilFunctionImpl* __oil_function_impl_conv_f32_s8_ref() {
|
sl@0
|
3197 |
return &_oil_function_impl_conv_f32_s8_ref;
|
sl@0
|
3198 |
}
|
sl@0
|
3199 |
#endif
|
sl@0
|
3200 |
|
sl@0
|
3201 |
#ifdef __SYMBIAN32__
|
sl@0
|
3202 |
|
sl@0
|
3203 |
OilFunctionImpl* __oil_function_impl_conv_f32_s16_ref() {
|
sl@0
|
3204 |
return &_oil_function_impl_conv_f32_s16_ref;
|
sl@0
|
3205 |
}
|
sl@0
|
3206 |
#endif
|
sl@0
|
3207 |
|
sl@0
|
3208 |
#ifdef __SYMBIAN32__
|
sl@0
|
3209 |
|
sl@0
|
3210 |
OilFunctionImpl* __oil_function_impl_conv_f32_u8_ref() {
|
sl@0
|
3211 |
return &_oil_function_impl_conv_f32_u8_ref;
|
sl@0
|
3212 |
}
|
sl@0
|
3213 |
#endif
|
sl@0
|
3214 |
|
sl@0
|
3215 |
#ifdef __SYMBIAN32__
|
sl@0
|
3216 |
|
sl@0
|
3217 |
OilFunctionImpl* __oil_function_impl_conv_f32_u16_ref() {
|
sl@0
|
3218 |
return &_oil_function_impl_conv_f32_u16_ref;
|
sl@0
|
3219 |
}
|
sl@0
|
3220 |
#endif
|
sl@0
|
3221 |
|
sl@0
|
3222 |
#ifdef __SYMBIAN32__
|
sl@0
|
3223 |
|
sl@0
|
3224 |
OilFunctionImpl* __oil_function_impl_conv_f32_s32_ref() {
|
sl@0
|
3225 |
return &_oil_function_impl_conv_f32_s32_ref;
|
sl@0
|
3226 |
}
|
sl@0
|
3227 |
#endif
|
sl@0
|
3228 |
|
sl@0
|
3229 |
#ifdef __SYMBIAN32__
|
sl@0
|
3230 |
|
sl@0
|
3231 |
OilFunctionImpl* __oil_function_impl_conv_f32_u32_ref() {
|
sl@0
|
3232 |
return &_oil_function_impl_conv_f32_u32_ref;
|
sl@0
|
3233 |
}
|
sl@0
|
3234 |
#endif
|
sl@0
|
3235 |
|
sl@0
|
3236 |
#ifdef __SYMBIAN32__
|
sl@0
|
3237 |
|
sl@0
|
3238 |
OilFunctionImpl* __oil_function_impl_conv_f32_f64_ref() {
|
sl@0
|
3239 |
return &_oil_function_impl_conv_f32_f64_ref;
|
sl@0
|
3240 |
}
|
sl@0
|
3241 |
#endif
|
sl@0
|
3242 |
|
sl@0
|
3243 |
#ifdef __SYMBIAN32__
|
sl@0
|
3244 |
|
sl@0
|
3245 |
OilFunctionImpl* __oil_function_impl_conv_f64_s8_ref() {
|
sl@0
|
3246 |
return &_oil_function_impl_conv_f64_s8_ref;
|
sl@0
|
3247 |
}
|
sl@0
|
3248 |
#endif
|
sl@0
|
3249 |
|
sl@0
|
3250 |
#ifdef __SYMBIAN32__
|
sl@0
|
3251 |
|
sl@0
|
3252 |
OilFunctionImpl* __oil_function_impl_conv_f64_u8_ref() {
|
sl@0
|
3253 |
return &_oil_function_impl_conv_f64_u8_ref;
|
sl@0
|
3254 |
}
|
sl@0
|
3255 |
#endif
|
sl@0
|
3256 |
|
sl@0
|
3257 |
#ifdef __SYMBIAN32__
|
sl@0
|
3258 |
|
sl@0
|
3259 |
OilFunctionImpl* __oil_function_impl_conv_f64_s16_ref() {
|
sl@0
|
3260 |
return &_oil_function_impl_conv_f64_s16_ref;
|
sl@0
|
3261 |
}
|
sl@0
|
3262 |
#endif
|
sl@0
|
3263 |
|
sl@0
|
3264 |
#ifdef __SYMBIAN32__
|
sl@0
|
3265 |
|
sl@0
|
3266 |
OilFunctionImpl* __oil_function_impl_conv_f64_u16_ref() {
|
sl@0
|
3267 |
return &_oil_function_impl_conv_f64_u16_ref;
|
sl@0
|
3268 |
}
|
sl@0
|
3269 |
#endif
|
sl@0
|
3270 |
|
sl@0
|
3271 |
#ifdef __SYMBIAN32__
|
sl@0
|
3272 |
|
sl@0
|
3273 |
OilFunctionImpl* __oil_function_impl_conv_f64_s32_ref() {
|
sl@0
|
3274 |
return &_oil_function_impl_conv_f64_s32_ref;
|
sl@0
|
3275 |
}
|
sl@0
|
3276 |
#endif
|
sl@0
|
3277 |
|
sl@0
|
3278 |
#ifdef __SYMBIAN32__
|
sl@0
|
3279 |
|
sl@0
|
3280 |
OilFunctionImpl* __oil_function_impl_conv_f64_u32_ref() {
|
sl@0
|
3281 |
return &_oil_function_impl_conv_f64_u32_ref;
|
sl@0
|
3282 |
}
|
sl@0
|
3283 |
#endif
|
sl@0
|
3284 |
|
sl@0
|
3285 |
#ifdef __SYMBIAN32__
|
sl@0
|
3286 |
|
sl@0
|
3287 |
OilFunctionImpl* __oil_function_impl_conv_f64_f32_ref() {
|
sl@0
|
3288 |
return &_oil_function_impl_conv_f64_f32_ref;
|
sl@0
|
3289 |
}
|
sl@0
|
3290 |
#endif
|
sl@0
|
3291 |
|
sl@0
|
3292 |
#ifdef __SYMBIAN32__
|
sl@0
|
3293 |
|
sl@0
|
3294 |
OilFunctionImpl* __oil_function_impl_clipconv_s8_u8_ref() {
|
sl@0
|
3295 |
return &_oil_function_impl_clipconv_s8_u8_ref;
|
sl@0
|
3296 |
}
|
sl@0
|
3297 |
#endif
|
sl@0
|
3298 |
|
sl@0
|
3299 |
#ifdef __SYMBIAN32__
|
sl@0
|
3300 |
|
sl@0
|
3301 |
OilFunctionImpl* __oil_function_impl_clipconv_s8_u16_ref() {
|
sl@0
|
3302 |
return &_oil_function_impl_clipconv_s8_u16_ref;
|
sl@0
|
3303 |
}
|
sl@0
|
3304 |
#endif
|
sl@0
|
3305 |
|
sl@0
|
3306 |
#ifdef __SYMBIAN32__
|
sl@0
|
3307 |
|
sl@0
|
3308 |
OilFunctionImpl* __oil_function_impl_clipconv_s8_u32_ref() {
|
sl@0
|
3309 |
return &_oil_function_impl_clipconv_s8_u32_ref;
|
sl@0
|
3310 |
}
|
sl@0
|
3311 |
#endif
|
sl@0
|
3312 |
|
sl@0
|
3313 |
#ifdef __SYMBIAN32__
|
sl@0
|
3314 |
|
sl@0
|
3315 |
OilFunctionImpl* __oil_function_impl_clipconv_u8_u32_ref() {
|
sl@0
|
3316 |
return &_oil_function_impl_clipconv_u8_u32_ref;
|
sl@0
|
3317 |
}
|
sl@0
|
3318 |
#endif
|
sl@0
|
3319 |
|
sl@0
|
3320 |
#ifdef __SYMBIAN32__
|
sl@0
|
3321 |
|
sl@0
|
3322 |
OilFunctionImpl* __oil_function_impl_clipconv_u8_u16_ref() {
|
sl@0
|
3323 |
return &_oil_function_impl_clipconv_u8_u16_ref;
|
sl@0
|
3324 |
}
|
sl@0
|
3325 |
#endif
|
sl@0
|
3326 |
|
sl@0
|
3327 |
#ifdef __SYMBIAN32__
|
sl@0
|
3328 |
|
sl@0
|
3329 |
OilFunctionImpl* __oil_function_impl_clipconv_s16_u16_ref() {
|
sl@0
|
3330 |
return &_oil_function_impl_clipconv_s16_u16_ref;
|
sl@0
|
3331 |
}
|
sl@0
|
3332 |
#endif
|
sl@0
|
3333 |
|
sl@0
|
3334 |
#ifdef __SYMBIAN32__
|
sl@0
|
3335 |
|
sl@0
|
3336 |
OilFunctionImpl* __oil_function_impl_clipconv_s16_u32_ref() {
|
sl@0
|
3337 |
return &_oil_function_impl_clipconv_s16_u32_ref;
|
sl@0
|
3338 |
}
|
sl@0
|
3339 |
#endif
|
sl@0
|
3340 |
|
sl@0
|
3341 |
#ifdef __SYMBIAN32__
|
sl@0
|
3342 |
|
sl@0
|
3343 |
OilFunctionImpl* __oil_function_impl_clipconv_s32_u32_ref() {
|
sl@0
|
3344 |
return &_oil_function_impl_clipconv_s32_u32_ref;
|
sl@0
|
3345 |
}
|
sl@0
|
3346 |
#endif
|
sl@0
|
3347 |
|
sl@0
|
3348 |
#ifdef __SYMBIAN32__
|
sl@0
|
3349 |
|
sl@0
|
3350 |
OilFunctionImpl* __oil_function_impl_clipconv_u16_u32_ref() {
|
sl@0
|
3351 |
return &_oil_function_impl_clipconv_u16_u32_ref;
|
sl@0
|
3352 |
}
|
sl@0
|
3353 |
#endif
|
sl@0
|
3354 |
|
sl@0
|
3355 |
#ifdef __SYMBIAN32__
|
sl@0
|
3356 |
|
sl@0
|
3357 |
OilFunctionImpl* __oil_function_impl_clipconv_s8_s16_ref() {
|
sl@0
|
3358 |
return &_oil_function_impl_clipconv_s8_s16_ref;
|
sl@0
|
3359 |
}
|
sl@0
|
3360 |
#endif
|
sl@0
|
3361 |
|
sl@0
|
3362 |
#ifdef __SYMBIAN32__
|
sl@0
|
3363 |
|
sl@0
|
3364 |
OilFunctionImpl* __oil_function_impl_clipconv_s8_s32_ref() {
|
sl@0
|
3365 |
return &_oil_function_impl_clipconv_s8_s32_ref;
|
sl@0
|
3366 |
}
|
sl@0
|
3367 |
#endif
|
sl@0
|
3368 |
|
sl@0
|
3369 |
#ifdef __SYMBIAN32__
|
sl@0
|
3370 |
|
sl@0
|
3371 |
OilFunctionImpl* __oil_function_impl_clipconv_u8_s16_ref() {
|
sl@0
|
3372 |
return &_oil_function_impl_clipconv_u8_s16_ref;
|
sl@0
|
3373 |
}
|
sl@0
|
3374 |
#endif
|
sl@0
|
3375 |
|
sl@0
|
3376 |
#ifdef __SYMBIAN32__
|
sl@0
|
3377 |
|
sl@0
|
3378 |
OilFunctionImpl* __oil_function_impl_clipconv_u8_s32_ref() {
|
sl@0
|
3379 |
return &_oil_function_impl_clipconv_u8_s32_ref;
|
sl@0
|
3380 |
}
|
sl@0
|
3381 |
#endif
|
sl@0
|
3382 |
|
sl@0
|
3383 |
#ifdef __SYMBIAN32__
|
sl@0
|
3384 |
|
sl@0
|
3385 |
OilFunctionImpl* __oil_function_impl_clipconv_s16_s32_ref() {
|
sl@0
|
3386 |
return &_oil_function_impl_clipconv_s16_s32_ref;
|
sl@0
|
3387 |
}
|
sl@0
|
3388 |
#endif
|
sl@0
|
3389 |
|
sl@0
|
3390 |
#ifdef __SYMBIAN32__
|
sl@0
|
3391 |
|
sl@0
|
3392 |
OilFunctionImpl* __oil_function_impl_clipconv_u16_s32_ref() {
|
sl@0
|
3393 |
return &_oil_function_impl_clipconv_u16_s32_ref;
|
sl@0
|
3394 |
}
|
sl@0
|
3395 |
#endif
|
sl@0
|
3396 |
|
sl@0
|
3397 |
#ifdef __SYMBIAN32__
|
sl@0
|
3398 |
|
sl@0
|
3399 |
OilFunctionImpl* __oil_function_impl_clipconv_u8_s8_ref() {
|
sl@0
|
3400 |
return &_oil_function_impl_clipconv_u8_s8_ref;
|
sl@0
|
3401 |
}
|
sl@0
|
3402 |
#endif
|
sl@0
|
3403 |
|
sl@0
|
3404 |
#ifdef __SYMBIAN32__
|
sl@0
|
3405 |
|
sl@0
|
3406 |
OilFunctionImpl* __oil_function_impl_clipconv_u16_s16_ref() {
|
sl@0
|
3407 |
return &_oil_function_impl_clipconv_u16_s16_ref;
|
sl@0
|
3408 |
}
|
sl@0
|
3409 |
#endif
|
sl@0
|
3410 |
|
sl@0
|
3411 |
#ifdef __SYMBIAN32__
|
sl@0
|
3412 |
|
sl@0
|
3413 |
OilFunctionImpl* __oil_function_impl_clipconv_u32_s32_ref() {
|
sl@0
|
3414 |
return &_oil_function_impl_clipconv_u32_s32_ref;
|
sl@0
|
3415 |
}
|
sl@0
|
3416 |
#endif
|
sl@0
|
3417 |
|
sl@0
|
3418 |
#ifdef __SYMBIAN32__
|
sl@0
|
3419 |
|
sl@0
|
3420 |
OilFunctionImpl* __oil_function_impl_clipconv_s8_f32_ref() {
|
sl@0
|
3421 |
return &_oil_function_impl_clipconv_s8_f32_ref;
|
sl@0
|
3422 |
}
|
sl@0
|
3423 |
#endif
|
sl@0
|
3424 |
|
sl@0
|
3425 |
#ifdef __SYMBIAN32__
|
sl@0
|
3426 |
|
sl@0
|
3427 |
OilFunctionImpl* __oil_function_impl_clipconv_s8_f64_ref() {
|
sl@0
|
3428 |
return &_oil_function_impl_clipconv_s8_f64_ref;
|
sl@0
|
3429 |
}
|
sl@0
|
3430 |
#endif
|
sl@0
|
3431 |
|
sl@0
|
3432 |
#ifdef __SYMBIAN32__
|
sl@0
|
3433 |
|
sl@0
|
3434 |
OilFunctionImpl* __oil_function_impl_clipconv_u8_f32_ref() {
|
sl@0
|
3435 |
return &_oil_function_impl_clipconv_u8_f32_ref;
|
sl@0
|
3436 |
}
|
sl@0
|
3437 |
#endif
|
sl@0
|
3438 |
|
sl@0
|
3439 |
#ifdef __SYMBIAN32__
|
sl@0
|
3440 |
|
sl@0
|
3441 |
OilFunctionImpl* __oil_function_impl_clipconv_u8_f64_ref() {
|
sl@0
|
3442 |
return &_oil_function_impl_clipconv_u8_f64_ref;
|
sl@0
|
3443 |
}
|
sl@0
|
3444 |
#endif
|
sl@0
|
3445 |
|
sl@0
|
3446 |
#ifdef __SYMBIAN32__
|
sl@0
|
3447 |
|
sl@0
|
3448 |
OilFunctionImpl* __oil_function_impl_clipconv_s16_f32_ref() {
|
sl@0
|
3449 |
return &_oil_function_impl_clipconv_s16_f32_ref;
|
sl@0
|
3450 |
}
|
sl@0
|
3451 |
#endif
|
sl@0
|
3452 |
|
sl@0
|
3453 |
#ifdef __SYMBIAN32__
|
sl@0
|
3454 |
|
sl@0
|
3455 |
OilFunctionImpl* __oil_function_impl_clipconv_s16_f64_ref() {
|
sl@0
|
3456 |
return &_oil_function_impl_clipconv_s16_f64_ref;
|
sl@0
|
3457 |
}
|
sl@0
|
3458 |
#endif
|
sl@0
|
3459 |
|
sl@0
|
3460 |
#ifdef __SYMBIAN32__
|
sl@0
|
3461 |
|
sl@0
|
3462 |
OilFunctionImpl* __oil_function_impl_clipconv_u16_f32_ref() {
|
sl@0
|
3463 |
return &_oil_function_impl_clipconv_u16_f32_ref;
|
sl@0
|
3464 |
}
|
sl@0
|
3465 |
#endif
|
sl@0
|
3466 |
|
sl@0
|
3467 |
#ifdef __SYMBIAN32__
|
sl@0
|
3468 |
|
sl@0
|
3469 |
OilFunctionImpl* __oil_function_impl_clipconv_u16_f64_ref() {
|
sl@0
|
3470 |
return &_oil_function_impl_clipconv_u16_f64_ref;
|
sl@0
|
3471 |
}
|
sl@0
|
3472 |
#endif
|
sl@0
|
3473 |
|
sl@0
|
3474 |
#ifdef __SYMBIAN32__
|
sl@0
|
3475 |
|
sl@0
|
3476 |
OilFunctionImpl* __oil_function_impl_clipconv_s32_f32_ref() {
|
sl@0
|
3477 |
return &_oil_function_impl_clipconv_s32_f32_ref;
|
sl@0
|
3478 |
}
|
sl@0
|
3479 |
#endif
|
sl@0
|
3480 |
|
sl@0
|
3481 |
#ifdef __SYMBIAN32__
|
sl@0
|
3482 |
|
sl@0
|
3483 |
OilFunctionImpl* __oil_function_impl_clipconv_s32_f64_ref() {
|
sl@0
|
3484 |
return &_oil_function_impl_clipconv_s32_f64_ref;
|
sl@0
|
3485 |
}
|
sl@0
|
3486 |
#endif
|
sl@0
|
3487 |
|
sl@0
|
3488 |
#ifdef __SYMBIAN32__
|
sl@0
|
3489 |
|
sl@0
|
3490 |
OilFunctionImpl* __oil_function_impl_clipconv_u32_f32_ref() {
|
sl@0
|
3491 |
return &_oil_function_impl_clipconv_u32_f32_ref;
|
sl@0
|
3492 |
}
|
sl@0
|
3493 |
#endif
|
sl@0
|
3494 |
|
sl@0
|
3495 |
#ifdef __SYMBIAN32__
|
sl@0
|
3496 |
|
sl@0
|
3497 |
OilFunctionImpl* __oil_function_impl_clipconv_u32_f64_ref() {
|
sl@0
|
3498 |
return &_oil_function_impl_clipconv_u32_f64_ref;
|
sl@0
|
3499 |
}
|
sl@0
|
3500 |
#endif
|
sl@0
|
3501 |
|
sl@0
|
3502 |
#ifdef __SYMBIAN32__
|
sl@0
|
3503 |
|
sl@0
|
3504 |
OilFunctionImpl* __oil_function_impl_scaleconv_s8_f32_ref() {
|
sl@0
|
3505 |
return &_oil_function_impl_scaleconv_s8_f32_ref;
|
sl@0
|
3506 |
}
|
sl@0
|
3507 |
#endif
|
sl@0
|
3508 |
|
sl@0
|
3509 |
#ifdef __SYMBIAN32__
|
sl@0
|
3510 |
|
sl@0
|
3511 |
OilFunctionImpl* __oil_function_impl_scaleconv_u8_f32_ref() {
|
sl@0
|
3512 |
return &_oil_function_impl_scaleconv_u8_f32_ref;
|
sl@0
|
3513 |
}
|
sl@0
|
3514 |
#endif
|
sl@0
|
3515 |
|
sl@0
|
3516 |
#ifdef __SYMBIAN32__
|
sl@0
|
3517 |
|
sl@0
|
3518 |
OilFunctionImpl* __oil_function_impl_scaleconv_s16_f32_ref() {
|
sl@0
|
3519 |
return &_oil_function_impl_scaleconv_s16_f32_ref;
|
sl@0
|
3520 |
}
|
sl@0
|
3521 |
#endif
|
sl@0
|
3522 |
|
sl@0
|
3523 |
#ifdef __SYMBIAN32__
|
sl@0
|
3524 |
|
sl@0
|
3525 |
OilFunctionImpl* __oil_function_impl_scaleconv_u16_f32_ref() {
|
sl@0
|
3526 |
return &_oil_function_impl_scaleconv_u16_f32_ref;
|
sl@0
|
3527 |
}
|
sl@0
|
3528 |
#endif
|
sl@0
|
3529 |
|
sl@0
|
3530 |
#ifdef __SYMBIAN32__
|
sl@0
|
3531 |
|
sl@0
|
3532 |
OilFunctionImpl* __oil_function_impl_scaleconv_s32_f32_ref() {
|
sl@0
|
3533 |
return &_oil_function_impl_scaleconv_s32_f32_ref;
|
sl@0
|
3534 |
}
|
sl@0
|
3535 |
#endif
|
sl@0
|
3536 |
|
sl@0
|
3537 |
#ifdef __SYMBIAN32__
|
sl@0
|
3538 |
|
sl@0
|
3539 |
OilFunctionImpl* __oil_function_impl_scaleconv_u32_f32_ref() {
|
sl@0
|
3540 |
return &_oil_function_impl_scaleconv_u32_f32_ref;
|
sl@0
|
3541 |
}
|
sl@0
|
3542 |
#endif
|
sl@0
|
3543 |
|
sl@0
|
3544 |
#ifdef __SYMBIAN32__
|
sl@0
|
3545 |
|
sl@0
|
3546 |
OilFunctionImpl* __oil_function_impl_scaleconv_s8_f64_ref() {
|
sl@0
|
3547 |
return &_oil_function_impl_scaleconv_s8_f64_ref;
|
sl@0
|
3548 |
}
|
sl@0
|
3549 |
#endif
|
sl@0
|
3550 |
|
sl@0
|
3551 |
#ifdef __SYMBIAN32__
|
sl@0
|
3552 |
|
sl@0
|
3553 |
OilFunctionImpl* __oil_function_impl_scaleconv_u8_f64_ref() {
|
sl@0
|
3554 |
return &_oil_function_impl_scaleconv_u8_f64_ref;
|
sl@0
|
3555 |
}
|
sl@0
|
3556 |
#endif
|
sl@0
|
3557 |
|
sl@0
|
3558 |
#ifdef __SYMBIAN32__
|
sl@0
|
3559 |
|
sl@0
|
3560 |
OilFunctionImpl* __oil_function_impl_scaleconv_s16_f64_ref() {
|
sl@0
|
3561 |
return &_oil_function_impl_scaleconv_s16_f64_ref;
|
sl@0
|
3562 |
}
|
sl@0
|
3563 |
#endif
|
sl@0
|
3564 |
|
sl@0
|
3565 |
#ifdef __SYMBIAN32__
|
sl@0
|
3566 |
|
sl@0
|
3567 |
OilFunctionImpl* __oil_function_impl_scaleconv_u16_f64_ref() {
|
sl@0
|
3568 |
return &_oil_function_impl_scaleconv_u16_f64_ref;
|
sl@0
|
3569 |
}
|
sl@0
|
3570 |
#endif
|
sl@0
|
3571 |
|
sl@0
|
3572 |
#ifdef __SYMBIAN32__
|
sl@0
|
3573 |
|
sl@0
|
3574 |
OilFunctionImpl* __oil_function_impl_scaleconv_s32_f64_ref() {
|
sl@0
|
3575 |
return &_oil_function_impl_scaleconv_s32_f64_ref;
|
sl@0
|
3576 |
}
|
sl@0
|
3577 |
#endif
|
sl@0
|
3578 |
|
sl@0
|
3579 |
#ifdef __SYMBIAN32__
|
sl@0
|
3580 |
|
sl@0
|
3581 |
OilFunctionImpl* __oil_function_impl_scaleconv_u32_f64_ref() {
|
sl@0
|
3582 |
return &_oil_function_impl_scaleconv_u32_f64_ref;
|
sl@0
|
3583 |
}
|
sl@0
|
3584 |
#endif
|
sl@0
|
3585 |
|
sl@0
|
3586 |
#ifdef __SYMBIAN32__
|
sl@0
|
3587 |
|
sl@0
|
3588 |
OilFunctionImpl* __oil_function_impl_scaleconv_f32_s8_ref() {
|
sl@0
|
3589 |
return &_oil_function_impl_scaleconv_f32_s8_ref;
|
sl@0
|
3590 |
}
|
sl@0
|
3591 |
#endif
|
sl@0
|
3592 |
|
sl@0
|
3593 |
#ifdef __SYMBIAN32__
|
sl@0
|
3594 |
|
sl@0
|
3595 |
OilFunctionImpl* __oil_function_impl_scaleconv_f32_u8_ref() {
|
sl@0
|
3596 |
return &_oil_function_impl_scaleconv_f32_u8_ref;
|
sl@0
|
3597 |
}
|
sl@0
|
3598 |
#endif
|
sl@0
|
3599 |
|
sl@0
|
3600 |
#ifdef __SYMBIAN32__
|
sl@0
|
3601 |
|
sl@0
|
3602 |
OilFunctionImpl* __oil_function_impl_scaleconv_f32_s16_ref() {
|
sl@0
|
3603 |
return &_oil_function_impl_scaleconv_f32_s16_ref;
|
sl@0
|
3604 |
}
|
sl@0
|
3605 |
#endif
|
sl@0
|
3606 |
|
sl@0
|
3607 |
#ifdef __SYMBIAN32__
|
sl@0
|
3608 |
|
sl@0
|
3609 |
OilFunctionImpl* __oil_function_impl_scaleconv_f32_u16_ref() {
|
sl@0
|
3610 |
return &_oil_function_impl_scaleconv_f32_u16_ref;
|
sl@0
|
3611 |
}
|
sl@0
|
3612 |
#endif
|
sl@0
|
3613 |
|
sl@0
|
3614 |
#ifdef __SYMBIAN32__
|
sl@0
|
3615 |
|
sl@0
|
3616 |
OilFunctionImpl* __oil_function_impl_scaleconv_f32_s32_ref() {
|
sl@0
|
3617 |
return &_oil_function_impl_scaleconv_f32_s32_ref;
|
sl@0
|
3618 |
}
|
sl@0
|
3619 |
#endif
|
sl@0
|
3620 |
|
sl@0
|
3621 |
#ifdef __SYMBIAN32__
|
sl@0
|
3622 |
|
sl@0
|
3623 |
OilFunctionImpl* __oil_function_impl_scaleconv_f32_u32_ref() {
|
sl@0
|
3624 |
return &_oil_function_impl_scaleconv_f32_u32_ref;
|
sl@0
|
3625 |
}
|
sl@0
|
3626 |
#endif
|
sl@0
|
3627 |
|
sl@0
|
3628 |
#ifdef __SYMBIAN32__
|
sl@0
|
3629 |
|
sl@0
|
3630 |
OilFunctionImpl* __oil_function_impl_scaleconv_f64_s8_ref() {
|
sl@0
|
3631 |
return &_oil_function_impl_scaleconv_f64_s8_ref;
|
sl@0
|
3632 |
}
|
sl@0
|
3633 |
#endif
|
sl@0
|
3634 |
|
sl@0
|
3635 |
#ifdef __SYMBIAN32__
|
sl@0
|
3636 |
|
sl@0
|
3637 |
OilFunctionImpl* __oil_function_impl_scaleconv_f64_u8_ref() {
|
sl@0
|
3638 |
return &_oil_function_impl_scaleconv_f64_u8_ref;
|
sl@0
|
3639 |
}
|
sl@0
|
3640 |
#endif
|
sl@0
|
3641 |
|
sl@0
|
3642 |
#ifdef __SYMBIAN32__
|
sl@0
|
3643 |
|
sl@0
|
3644 |
OilFunctionImpl* __oil_function_impl_scaleconv_f64_s16_ref() {
|
sl@0
|
3645 |
return &_oil_function_impl_scaleconv_f64_s16_ref;
|
sl@0
|
3646 |
}
|
sl@0
|
3647 |
#endif
|
sl@0
|
3648 |
|
sl@0
|
3649 |
#ifdef __SYMBIAN32__
|
sl@0
|
3650 |
|
sl@0
|
3651 |
OilFunctionImpl* __oil_function_impl_scaleconv_f64_u16_ref() {
|
sl@0
|
3652 |
return &_oil_function_impl_scaleconv_f64_u16_ref;
|
sl@0
|
3653 |
}
|
sl@0
|
3654 |
#endif
|
sl@0
|
3655 |
|
sl@0
|
3656 |
#ifdef __SYMBIAN32__
|
sl@0
|
3657 |
|
sl@0
|
3658 |
OilFunctionImpl* __oil_function_impl_scaleconv_f64_s32_ref() {
|
sl@0
|
3659 |
return &_oil_function_impl_scaleconv_f64_s32_ref;
|
sl@0
|
3660 |
}
|
sl@0
|
3661 |
#endif
|
sl@0
|
3662 |
|
sl@0
|
3663 |
#ifdef __SYMBIAN32__
|
sl@0
|
3664 |
|
sl@0
|
3665 |
OilFunctionImpl* __oil_function_impl_scaleconv_f64_u32_ref() {
|
sl@0
|
3666 |
return &_oil_function_impl_scaleconv_f64_u32_ref;
|
sl@0
|
3667 |
}
|
sl@0
|
3668 |
#endif
|
sl@0
|
3669 |
|
sl@0
|
3670 |
|
sl@0
|
3671 |
|
sl@0
|
3672 |
#ifdef __SYMBIAN32__
|
sl@0
|
3673 |
|
sl@0
|
3674 |
EXPORT_C void** _oil_function_class_ptr_conv_s8_u8 () {
|
sl@0
|
3675 |
oil_function_class_ptr_conv_s8_u8 = __oil_function_class_conv_s8_u8();
|
sl@0
|
3676 |
return &oil_function_class_ptr_conv_s8_u8->func;
|
sl@0
|
3677 |
}
|
sl@0
|
3678 |
#endif
|
sl@0
|
3679 |
|
sl@0
|
3680 |
#ifdef __SYMBIAN32__
|
sl@0
|
3681 |
|
sl@0
|
3682 |
EXPORT_C void** _oil_function_class_ptr_conv_s8_s16 () {
|
sl@0
|
3683 |
oil_function_class_ptr_conv_s8_s16 = __oil_function_class_conv_s8_s16();
|
sl@0
|
3684 |
return &oil_function_class_ptr_conv_s8_s16->func;
|
sl@0
|
3685 |
}
|
sl@0
|
3686 |
#endif
|
sl@0
|
3687 |
|
sl@0
|
3688 |
#ifdef __SYMBIAN32__
|
sl@0
|
3689 |
|
sl@0
|
3690 |
EXPORT_C void** _oil_function_class_ptr_conv_s8_u16 () {
|
sl@0
|
3691 |
oil_function_class_ptr_conv_s8_u16 = __oil_function_class_conv_s8_u16();
|
sl@0
|
3692 |
return &oil_function_class_ptr_conv_s8_u16->func;
|
sl@0
|
3693 |
}
|
sl@0
|
3694 |
#endif
|
sl@0
|
3695 |
|
sl@0
|
3696 |
#ifdef __SYMBIAN32__
|
sl@0
|
3697 |
|
sl@0
|
3698 |
EXPORT_C void** _oil_function_class_ptr_conv_s8_s32 () {
|
sl@0
|
3699 |
oil_function_class_ptr_conv_s8_s32 = __oil_function_class_conv_s8_s32();
|
sl@0
|
3700 |
return &oil_function_class_ptr_conv_s8_s32->func;
|
sl@0
|
3701 |
}
|
sl@0
|
3702 |
#endif
|
sl@0
|
3703 |
|
sl@0
|
3704 |
#ifdef __SYMBIAN32__
|
sl@0
|
3705 |
|
sl@0
|
3706 |
EXPORT_C void** _oil_function_class_ptr_conv_s8_u32 () {
|
sl@0
|
3707 |
oil_function_class_ptr_conv_s8_u32 = __oil_function_class_conv_s8_u32();
|
sl@0
|
3708 |
return &oil_function_class_ptr_conv_s8_u32->func;
|
sl@0
|
3709 |
}
|
sl@0
|
3710 |
#endif
|
sl@0
|
3711 |
|
sl@0
|
3712 |
#ifdef __SYMBIAN32__
|
sl@0
|
3713 |
|
sl@0
|
3714 |
EXPORT_C void** _oil_function_class_ptr_conv_s8_f32 () {
|
sl@0
|
3715 |
oil_function_class_ptr_conv_s8_f32 = __oil_function_class_conv_s8_f32();
|
sl@0
|
3716 |
return &oil_function_class_ptr_conv_s8_f32->func;
|
sl@0
|
3717 |
}
|
sl@0
|
3718 |
#endif
|
sl@0
|
3719 |
|
sl@0
|
3720 |
#ifdef __SYMBIAN32__
|
sl@0
|
3721 |
|
sl@0
|
3722 |
EXPORT_C void** _oil_function_class_ptr_conv_s8_f64 () {
|
sl@0
|
3723 |
oil_function_class_ptr_conv_s8_f64 = __oil_function_class_conv_s8_f64();
|
sl@0
|
3724 |
return &oil_function_class_ptr_conv_s8_f64->func;
|
sl@0
|
3725 |
}
|
sl@0
|
3726 |
#endif
|
sl@0
|
3727 |
|
sl@0
|
3728 |
#ifdef __SYMBIAN32__
|
sl@0
|
3729 |
|
sl@0
|
3730 |
EXPORT_C void** _oil_function_class_ptr_conv_u8_s8 () {
|
sl@0
|
3731 |
oil_function_class_ptr_conv_u8_s8 = __oil_function_class_conv_u8_s8();
|
sl@0
|
3732 |
return &oil_function_class_ptr_conv_u8_s8->func;
|
sl@0
|
3733 |
}
|
sl@0
|
3734 |
#endif
|
sl@0
|
3735 |
|
sl@0
|
3736 |
#ifdef __SYMBIAN32__
|
sl@0
|
3737 |
|
sl@0
|
3738 |
EXPORT_C void** _oil_function_class_ptr_conv_u8_s16 () {
|
sl@0
|
3739 |
oil_function_class_ptr_conv_u8_s16 = __oil_function_class_conv_u8_s16();
|
sl@0
|
3740 |
return &oil_function_class_ptr_conv_u8_s16->func;
|
sl@0
|
3741 |
}
|
sl@0
|
3742 |
#endif
|
sl@0
|
3743 |
|
sl@0
|
3744 |
#ifdef __SYMBIAN32__
|
sl@0
|
3745 |
|
sl@0
|
3746 |
EXPORT_C void** _oil_function_class_ptr_conv_u8_u16 () {
|
sl@0
|
3747 |
oil_function_class_ptr_conv_u8_u16 = __oil_function_class_conv_u8_u16();
|
sl@0
|
3748 |
return &oil_function_class_ptr_conv_u8_u16->func;
|
sl@0
|
3749 |
}
|
sl@0
|
3750 |
#endif
|
sl@0
|
3751 |
|
sl@0
|
3752 |
#ifdef __SYMBIAN32__
|
sl@0
|
3753 |
|
sl@0
|
3754 |
EXPORT_C void** _oil_function_class_ptr_conv_u8_s32 () {
|
sl@0
|
3755 |
oil_function_class_ptr_conv_u8_s32 = __oil_function_class_conv_u8_s32();
|
sl@0
|
3756 |
return &oil_function_class_ptr_conv_u8_s32->func;
|
sl@0
|
3757 |
}
|
sl@0
|
3758 |
#endif
|
sl@0
|
3759 |
|
sl@0
|
3760 |
#ifdef __SYMBIAN32__
|
sl@0
|
3761 |
|
sl@0
|
3762 |
EXPORT_C void** _oil_function_class_ptr_conv_u8_u32 () {
|
sl@0
|
3763 |
oil_function_class_ptr_conv_u8_u32 = __oil_function_class_conv_u8_u32();
|
sl@0
|
3764 |
return &oil_function_class_ptr_conv_u8_u32->func;
|
sl@0
|
3765 |
}
|
sl@0
|
3766 |
#endif
|
sl@0
|
3767 |
|
sl@0
|
3768 |
#ifdef __SYMBIAN32__
|
sl@0
|
3769 |
|
sl@0
|
3770 |
EXPORT_C void** _oil_function_class_ptr_conv_u8_f32 () {
|
sl@0
|
3771 |
oil_function_class_ptr_conv_u8_f32 = __oil_function_class_conv_u8_f32();
|
sl@0
|
3772 |
return &oil_function_class_ptr_conv_u8_f32->func;
|
sl@0
|
3773 |
}
|
sl@0
|
3774 |
#endif
|
sl@0
|
3775 |
|
sl@0
|
3776 |
#ifdef __SYMBIAN32__
|
sl@0
|
3777 |
|
sl@0
|
3778 |
EXPORT_C void** _oil_function_class_ptr_conv_u8_f64 () {
|
sl@0
|
3779 |
oil_function_class_ptr_conv_u8_f64 = __oil_function_class_conv_u8_f64();
|
sl@0
|
3780 |
return &oil_function_class_ptr_conv_u8_f64->func;
|
sl@0
|
3781 |
}
|
sl@0
|
3782 |
#endif
|
sl@0
|
3783 |
|
sl@0
|
3784 |
#ifdef __SYMBIAN32__
|
sl@0
|
3785 |
|
sl@0
|
3786 |
EXPORT_C void** _oil_function_class_ptr_conv_s16_s8 () {
|
sl@0
|
3787 |
oil_function_class_ptr_conv_s16_s8 = __oil_function_class_conv_s16_s8();
|
sl@0
|
3788 |
return &oil_function_class_ptr_conv_s16_s8->func;
|
sl@0
|
3789 |
}
|
sl@0
|
3790 |
#endif
|
sl@0
|
3791 |
|
sl@0
|
3792 |
#ifdef __SYMBIAN32__
|
sl@0
|
3793 |
|
sl@0
|
3794 |
EXPORT_C void** _oil_function_class_ptr_conv_s16_u8 () {
|
sl@0
|
3795 |
oil_function_class_ptr_conv_s16_u8 = __oil_function_class_conv_s16_u8();
|
sl@0
|
3796 |
return &oil_function_class_ptr_conv_s16_u8->func;
|
sl@0
|
3797 |
}
|
sl@0
|
3798 |
#endif
|
sl@0
|
3799 |
|
sl@0
|
3800 |
#ifdef __SYMBIAN32__
|
sl@0
|
3801 |
|
sl@0
|
3802 |
EXPORT_C void** _oil_function_class_ptr_conv_s16_u16 () {
|
sl@0
|
3803 |
oil_function_class_ptr_conv_s16_u16 = __oil_function_class_conv_s16_u16();
|
sl@0
|
3804 |
return &oil_function_class_ptr_conv_s16_u16->func;
|
sl@0
|
3805 |
}
|
sl@0
|
3806 |
#endif
|
sl@0
|
3807 |
|
sl@0
|
3808 |
#ifdef __SYMBIAN32__
|
sl@0
|
3809 |
|
sl@0
|
3810 |
EXPORT_C void** _oil_function_class_ptr_conv_s16_s32 () {
|
sl@0
|
3811 |
oil_function_class_ptr_conv_s16_s32 = __oil_function_class_conv_s16_s32();
|
sl@0
|
3812 |
return &oil_function_class_ptr_conv_s16_s32->func;
|
sl@0
|
3813 |
}
|
sl@0
|
3814 |
#endif
|
sl@0
|
3815 |
|
sl@0
|
3816 |
#ifdef __SYMBIAN32__
|
sl@0
|
3817 |
|
sl@0
|
3818 |
EXPORT_C void** _oil_function_class_ptr_conv_s16_u32 () {
|
sl@0
|
3819 |
oil_function_class_ptr_conv_s16_u32 = __oil_function_class_conv_s16_u32();
|
sl@0
|
3820 |
return &oil_function_class_ptr_conv_s16_u32->func;
|
sl@0
|
3821 |
}
|
sl@0
|
3822 |
#endif
|
sl@0
|
3823 |
|
sl@0
|
3824 |
#ifdef __SYMBIAN32__
|
sl@0
|
3825 |
|
sl@0
|
3826 |
EXPORT_C void** _oil_function_class_ptr_conv_s16_f32 () {
|
sl@0
|
3827 |
oil_function_class_ptr_conv_s16_f32 = __oil_function_class_conv_s16_f32();
|
sl@0
|
3828 |
return &oil_function_class_ptr_conv_s16_f32->func;
|
sl@0
|
3829 |
}
|
sl@0
|
3830 |
#endif
|
sl@0
|
3831 |
|
sl@0
|
3832 |
#ifdef __SYMBIAN32__
|
sl@0
|
3833 |
|
sl@0
|
3834 |
EXPORT_C void** _oil_function_class_ptr_conv_s16_f64 () {
|
sl@0
|
3835 |
oil_function_class_ptr_conv_s16_f64 = __oil_function_class_conv_s16_f64();
|
sl@0
|
3836 |
return &oil_function_class_ptr_conv_s16_f64->func;
|
sl@0
|
3837 |
}
|
sl@0
|
3838 |
#endif
|
sl@0
|
3839 |
|
sl@0
|
3840 |
#ifdef __SYMBIAN32__
|
sl@0
|
3841 |
|
sl@0
|
3842 |
EXPORT_C void** _oil_function_class_ptr_conv_u16_s8 () {
|
sl@0
|
3843 |
oil_function_class_ptr_conv_u16_s8 = __oil_function_class_conv_u16_s8();
|
sl@0
|
3844 |
return &oil_function_class_ptr_conv_u16_s8->func;
|
sl@0
|
3845 |
}
|
sl@0
|
3846 |
#endif
|
sl@0
|
3847 |
|
sl@0
|
3848 |
#ifdef __SYMBIAN32__
|
sl@0
|
3849 |
|
sl@0
|
3850 |
EXPORT_C void** _oil_function_class_ptr_conv_u16_u8 () {
|
sl@0
|
3851 |
oil_function_class_ptr_conv_u16_u8 = __oil_function_class_conv_u16_u8();
|
sl@0
|
3852 |
return &oil_function_class_ptr_conv_u16_u8->func;
|
sl@0
|
3853 |
}
|
sl@0
|
3854 |
#endif
|
sl@0
|
3855 |
|
sl@0
|
3856 |
#ifdef __SYMBIAN32__
|
sl@0
|
3857 |
|
sl@0
|
3858 |
EXPORT_C void** _oil_function_class_ptr_conv_u16_s16 () {
|
sl@0
|
3859 |
oil_function_class_ptr_conv_u16_s16 = __oil_function_class_conv_u16_s16();
|
sl@0
|
3860 |
return &oil_function_class_ptr_conv_u16_s16->func;
|
sl@0
|
3861 |
}
|
sl@0
|
3862 |
#endif
|
sl@0
|
3863 |
|
sl@0
|
3864 |
#ifdef __SYMBIAN32__
|
sl@0
|
3865 |
|
sl@0
|
3866 |
EXPORT_C void** _oil_function_class_ptr_conv_u16_s32 () {
|
sl@0
|
3867 |
oil_function_class_ptr_conv_u16_s32 = __oil_function_class_conv_u16_s32();
|
sl@0
|
3868 |
return &oil_function_class_ptr_conv_u16_s32->func;
|
sl@0
|
3869 |
}
|
sl@0
|
3870 |
#endif
|
sl@0
|
3871 |
|
sl@0
|
3872 |
#ifdef __SYMBIAN32__
|
sl@0
|
3873 |
|
sl@0
|
3874 |
EXPORT_C void** _oil_function_class_ptr_conv_u16_u32 () {
|
sl@0
|
3875 |
oil_function_class_ptr_conv_u16_u32 = __oil_function_class_conv_u16_u32();
|
sl@0
|
3876 |
return &oil_function_class_ptr_conv_u16_u32->func;
|
sl@0
|
3877 |
}
|
sl@0
|
3878 |
#endif
|
sl@0
|
3879 |
|
sl@0
|
3880 |
#ifdef __SYMBIAN32__
|
sl@0
|
3881 |
|
sl@0
|
3882 |
EXPORT_C void** _oil_function_class_ptr_conv_u16_f32 () {
|
sl@0
|
3883 |
oil_function_class_ptr_conv_u16_f32 = __oil_function_class_conv_u16_f32();
|
sl@0
|
3884 |
return &oil_function_class_ptr_conv_u16_f32->func;
|
sl@0
|
3885 |
}
|
sl@0
|
3886 |
#endif
|
sl@0
|
3887 |
|
sl@0
|
3888 |
#ifdef __SYMBIAN32__
|
sl@0
|
3889 |
|
sl@0
|
3890 |
EXPORT_C void** _oil_function_class_ptr_conv_u16_f64 () {
|
sl@0
|
3891 |
oil_function_class_ptr_conv_u16_f64 = __oil_function_class_conv_u16_f64();
|
sl@0
|
3892 |
return &oil_function_class_ptr_conv_u16_f64->func;
|
sl@0
|
3893 |
}
|
sl@0
|
3894 |
#endif
|
sl@0
|
3895 |
|
sl@0
|
3896 |
#ifdef __SYMBIAN32__
|
sl@0
|
3897 |
|
sl@0
|
3898 |
EXPORT_C void** _oil_function_class_ptr_conv_s32_s8 () {
|
sl@0
|
3899 |
oil_function_class_ptr_conv_s32_s8 = __oil_function_class_conv_s32_s8();
|
sl@0
|
3900 |
return &oil_function_class_ptr_conv_s32_s8->func;
|
sl@0
|
3901 |
}
|
sl@0
|
3902 |
#endif
|
sl@0
|
3903 |
|
sl@0
|
3904 |
#ifdef __SYMBIAN32__
|
sl@0
|
3905 |
|
sl@0
|
3906 |
EXPORT_C void** _oil_function_class_ptr_conv_s32_s16 () {
|
sl@0
|
3907 |
oil_function_class_ptr_conv_s32_s16 = __oil_function_class_conv_s32_s16();
|
sl@0
|
3908 |
return &oil_function_class_ptr_conv_s32_s16->func;
|
sl@0
|
3909 |
}
|
sl@0
|
3910 |
#endif
|
sl@0
|
3911 |
|
sl@0
|
3912 |
#ifdef __SYMBIAN32__
|
sl@0
|
3913 |
|
sl@0
|
3914 |
EXPORT_C void** _oil_function_class_ptr_conv_s32_u8 () {
|
sl@0
|
3915 |
oil_function_class_ptr_conv_s32_u8 = __oil_function_class_conv_s32_u8();
|
sl@0
|
3916 |
return &oil_function_class_ptr_conv_s32_u8->func;
|
sl@0
|
3917 |
}
|
sl@0
|
3918 |
#endif
|
sl@0
|
3919 |
|
sl@0
|
3920 |
#ifdef __SYMBIAN32__
|
sl@0
|
3921 |
|
sl@0
|
3922 |
EXPORT_C void** _oil_function_class_ptr_conv_s32_u16 () {
|
sl@0
|
3923 |
oil_function_class_ptr_conv_s32_u16 = __oil_function_class_conv_s32_u16();
|
sl@0
|
3924 |
return &oil_function_class_ptr_conv_s32_u16->func;
|
sl@0
|
3925 |
}
|
sl@0
|
3926 |
#endif
|
sl@0
|
3927 |
|
sl@0
|
3928 |
#ifdef __SYMBIAN32__
|
sl@0
|
3929 |
|
sl@0
|
3930 |
EXPORT_C void** _oil_function_class_ptr_conv_s32_u32 () {
|
sl@0
|
3931 |
oil_function_class_ptr_conv_s32_u32 = __oil_function_class_conv_s32_u32();
|
sl@0
|
3932 |
return &oil_function_class_ptr_conv_s32_u32->func;
|
sl@0
|
3933 |
}
|
sl@0
|
3934 |
#endif
|
sl@0
|
3935 |
|
sl@0
|
3936 |
#ifdef __SYMBIAN32__
|
sl@0
|
3937 |
|
sl@0
|
3938 |
EXPORT_C void** _oil_function_class_ptr_conv_s32_f32 () {
|
sl@0
|
3939 |
oil_function_class_ptr_conv_s32_f32 = __oil_function_class_conv_s32_f32();
|
sl@0
|
3940 |
return &oil_function_class_ptr_conv_s32_f32->func;
|
sl@0
|
3941 |
}
|
sl@0
|
3942 |
#endif
|
sl@0
|
3943 |
|
sl@0
|
3944 |
#ifdef __SYMBIAN32__
|
sl@0
|
3945 |
|
sl@0
|
3946 |
EXPORT_C void** _oil_function_class_ptr_conv_s32_f64 () {
|
sl@0
|
3947 |
oil_function_class_ptr_conv_s32_f64 = __oil_function_class_conv_s32_f64();
|
sl@0
|
3948 |
return &oil_function_class_ptr_conv_s32_f64->func;
|
sl@0
|
3949 |
}
|
sl@0
|
3950 |
#endif
|
sl@0
|
3951 |
|
sl@0
|
3952 |
#ifdef __SYMBIAN32__
|
sl@0
|
3953 |
|
sl@0
|
3954 |
EXPORT_C void** _oil_function_class_ptr_conv_u32_s8 () {
|
sl@0
|
3955 |
oil_function_class_ptr_conv_u32_s8 = __oil_function_class_conv_u32_s8();
|
sl@0
|
3956 |
return &oil_function_class_ptr_conv_u32_s8->func;
|
sl@0
|
3957 |
}
|
sl@0
|
3958 |
#endif
|
sl@0
|
3959 |
|
sl@0
|
3960 |
#ifdef __SYMBIAN32__
|
sl@0
|
3961 |
|
sl@0
|
3962 |
EXPORT_C void** _oil_function_class_ptr_conv_u32_s16 () {
|
sl@0
|
3963 |
oil_function_class_ptr_conv_u32_s16 = __oil_function_class_conv_u32_s16();
|
sl@0
|
3964 |
return &oil_function_class_ptr_conv_u32_s16->func;
|
sl@0
|
3965 |
}
|
sl@0
|
3966 |
#endif
|
sl@0
|
3967 |
|
sl@0
|
3968 |
#ifdef __SYMBIAN32__
|
sl@0
|
3969 |
|
sl@0
|
3970 |
EXPORT_C void** _oil_function_class_ptr_conv_u32_u8 () {
|
sl@0
|
3971 |
oil_function_class_ptr_conv_u32_u8 = __oil_function_class_conv_u32_u8();
|
sl@0
|
3972 |
return &oil_function_class_ptr_conv_u32_u8->func;
|
sl@0
|
3973 |
}
|
sl@0
|
3974 |
#endif
|
sl@0
|
3975 |
|
sl@0
|
3976 |
#ifdef __SYMBIAN32__
|
sl@0
|
3977 |
|
sl@0
|
3978 |
EXPORT_C void** _oil_function_class_ptr_conv_u32_u16 () {
|
sl@0
|
3979 |
oil_function_class_ptr_conv_u32_u16 = __oil_function_class_conv_u32_u16();
|
sl@0
|
3980 |
return &oil_function_class_ptr_conv_u32_u16->func;
|
sl@0
|
3981 |
}
|
sl@0
|
3982 |
#endif
|
sl@0
|
3983 |
|
sl@0
|
3984 |
#ifdef __SYMBIAN32__
|
sl@0
|
3985 |
|
sl@0
|
3986 |
EXPORT_C void** _oil_function_class_ptr_conv_u32_s32 () {
|
sl@0
|
3987 |
oil_function_class_ptr_conv_u32_s32 = __oil_function_class_conv_u32_s32();
|
sl@0
|
3988 |
return &oil_function_class_ptr_conv_u32_s32->func;
|
sl@0
|
3989 |
}
|
sl@0
|
3990 |
#endif
|
sl@0
|
3991 |
|
sl@0
|
3992 |
#ifdef __SYMBIAN32__
|
sl@0
|
3993 |
|
sl@0
|
3994 |
EXPORT_C void** _oil_function_class_ptr_conv_u32_f32 () {
|
sl@0
|
3995 |
oil_function_class_ptr_conv_u32_f32 = __oil_function_class_conv_u32_f32();
|
sl@0
|
3996 |
return &oil_function_class_ptr_conv_u32_f32->func;
|
sl@0
|
3997 |
}
|
sl@0
|
3998 |
#endif
|
sl@0
|
3999 |
|
sl@0
|
4000 |
#ifdef __SYMBIAN32__
|
sl@0
|
4001 |
|
sl@0
|
4002 |
EXPORT_C void** _oil_function_class_ptr_conv_u32_f64 () {
|
sl@0
|
4003 |
oil_function_class_ptr_conv_u32_f64 = __oil_function_class_conv_u32_f64();
|
sl@0
|
4004 |
return &oil_function_class_ptr_conv_u32_f64->func;
|
sl@0
|
4005 |
}
|
sl@0
|
4006 |
#endif
|
sl@0
|
4007 |
|
sl@0
|
4008 |
#ifdef __SYMBIAN32__
|
sl@0
|
4009 |
|
sl@0
|
4010 |
EXPORT_C void** _oil_function_class_ptr_conv_f32_s8 () {
|
sl@0
|
4011 |
oil_function_class_ptr_conv_f32_s8 = __oil_function_class_conv_f32_s8();
|
sl@0
|
4012 |
return &oil_function_class_ptr_conv_f32_s8->func;
|
sl@0
|
4013 |
}
|
sl@0
|
4014 |
#endif
|
sl@0
|
4015 |
|
sl@0
|
4016 |
#ifdef __SYMBIAN32__
|
sl@0
|
4017 |
|
sl@0
|
4018 |
EXPORT_C void** _oil_function_class_ptr_conv_f32_s16 () {
|
sl@0
|
4019 |
oil_function_class_ptr_conv_f32_s16 = __oil_function_class_conv_f32_s16();
|
sl@0
|
4020 |
return &oil_function_class_ptr_conv_f32_s16->func;
|
sl@0
|
4021 |
}
|
sl@0
|
4022 |
#endif
|
sl@0
|
4023 |
|
sl@0
|
4024 |
#ifdef __SYMBIAN32__
|
sl@0
|
4025 |
|
sl@0
|
4026 |
EXPORT_C void** _oil_function_class_ptr_conv_f32_u8 () {
|
sl@0
|
4027 |
oil_function_class_ptr_conv_f32_u8 = __oil_function_class_conv_f32_u8();
|
sl@0
|
4028 |
return &oil_function_class_ptr_conv_f32_u8->func;
|
sl@0
|
4029 |
}
|
sl@0
|
4030 |
#endif
|
sl@0
|
4031 |
|
sl@0
|
4032 |
#ifdef __SYMBIAN32__
|
sl@0
|
4033 |
|
sl@0
|
4034 |
EXPORT_C void** _oil_function_class_ptr_conv_f32_u16 () {
|
sl@0
|
4035 |
oil_function_class_ptr_conv_f32_u16 = __oil_function_class_conv_f32_u16();
|
sl@0
|
4036 |
return &oil_function_class_ptr_conv_f32_u16->func;
|
sl@0
|
4037 |
}
|
sl@0
|
4038 |
#endif
|
sl@0
|
4039 |
|
sl@0
|
4040 |
#ifdef __SYMBIAN32__
|
sl@0
|
4041 |
|
sl@0
|
4042 |
EXPORT_C void** _oil_function_class_ptr_conv_f32_s32 () {
|
sl@0
|
4043 |
oil_function_class_ptr_conv_f32_s32 = __oil_function_class_conv_f32_s32();
|
sl@0
|
4044 |
return &oil_function_class_ptr_conv_f32_s32->func;
|
sl@0
|
4045 |
}
|
sl@0
|
4046 |
#endif
|
sl@0
|
4047 |
|
sl@0
|
4048 |
#ifdef __SYMBIAN32__
|
sl@0
|
4049 |
|
sl@0
|
4050 |
EXPORT_C void** _oil_function_class_ptr_conv_f32_u32 () {
|
sl@0
|
4051 |
oil_function_class_ptr_conv_f32_u32 = __oil_function_class_conv_f32_u32();
|
sl@0
|
4052 |
return &oil_function_class_ptr_conv_f32_u32->func;
|
sl@0
|
4053 |
}
|
sl@0
|
4054 |
#endif
|
sl@0
|
4055 |
|
sl@0
|
4056 |
#ifdef __SYMBIAN32__
|
sl@0
|
4057 |
|
sl@0
|
4058 |
EXPORT_C void** _oil_function_class_ptr_conv_f32_f64 () {
|
sl@0
|
4059 |
oil_function_class_ptr_conv_f32_f64 = __oil_function_class_conv_f32_f64();
|
sl@0
|
4060 |
return &oil_function_class_ptr_conv_f32_f64->func;
|
sl@0
|
4061 |
}
|
sl@0
|
4062 |
#endif
|
sl@0
|
4063 |
|
sl@0
|
4064 |
#ifdef __SYMBIAN32__
|
sl@0
|
4065 |
|
sl@0
|
4066 |
EXPORT_C void** _oil_function_class_ptr_conv_f64_s8 () {
|
sl@0
|
4067 |
oil_function_class_ptr_conv_f64_s8 = __oil_function_class_conv_f64_s8();
|
sl@0
|
4068 |
return &oil_function_class_ptr_conv_f64_s8->func;
|
sl@0
|
4069 |
}
|
sl@0
|
4070 |
#endif
|
sl@0
|
4071 |
|
sl@0
|
4072 |
#ifdef __SYMBIAN32__
|
sl@0
|
4073 |
|
sl@0
|
4074 |
EXPORT_C void** _oil_function_class_ptr_conv_f64_u8 () {
|
sl@0
|
4075 |
oil_function_class_ptr_conv_f64_u8 = __oil_function_class_conv_f64_u8();
|
sl@0
|
4076 |
return &oil_function_class_ptr_conv_f64_u8->func;
|
sl@0
|
4077 |
}
|
sl@0
|
4078 |
#endif
|
sl@0
|
4079 |
|
sl@0
|
4080 |
#ifdef __SYMBIAN32__
|
sl@0
|
4081 |
|
sl@0
|
4082 |
EXPORT_C void** _oil_function_class_ptr_conv_f64_s16 () {
|
sl@0
|
4083 |
oil_function_class_ptr_conv_f64_s16 = __oil_function_class_conv_f64_s16();
|
sl@0
|
4084 |
return &oil_function_class_ptr_conv_f64_s16->func;
|
sl@0
|
4085 |
}
|
sl@0
|
4086 |
#endif
|
sl@0
|
4087 |
|
sl@0
|
4088 |
#ifdef __SYMBIAN32__
|
sl@0
|
4089 |
|
sl@0
|
4090 |
EXPORT_C void** _oil_function_class_ptr_conv_f64_u16 () {
|
sl@0
|
4091 |
oil_function_class_ptr_conv_f64_u16 = __oil_function_class_conv_f64_u16();
|
sl@0
|
4092 |
return &oil_function_class_ptr_conv_f64_u16->func;
|
sl@0
|
4093 |
}
|
sl@0
|
4094 |
#endif
|
sl@0
|
4095 |
|
sl@0
|
4096 |
#ifdef __SYMBIAN32__
|
sl@0
|
4097 |
|
sl@0
|
4098 |
EXPORT_C void** _oil_function_class_ptr_conv_f64_s32 () {
|
sl@0
|
4099 |
oil_function_class_ptr_conv_f64_s32 = __oil_function_class_conv_f64_s32();
|
sl@0
|
4100 |
return &oil_function_class_ptr_conv_f64_s32->func;
|
sl@0
|
4101 |
}
|
sl@0
|
4102 |
#endif
|
sl@0
|
4103 |
|
sl@0
|
4104 |
#ifdef __SYMBIAN32__
|
sl@0
|
4105 |
|
sl@0
|
4106 |
EXPORT_C void** _oil_function_class_ptr_conv_f64_u32 () {
|
sl@0
|
4107 |
oil_function_class_ptr_conv_f64_u32 = __oil_function_class_conv_f64_u32();
|
sl@0
|
4108 |
return &oil_function_class_ptr_conv_f64_u32->func;
|
sl@0
|
4109 |
}
|
sl@0
|
4110 |
#endif
|
sl@0
|
4111 |
|
sl@0
|
4112 |
#ifdef __SYMBIAN32__
|
sl@0
|
4113 |
|
sl@0
|
4114 |
EXPORT_C void** _oil_function_class_ptr_conv_f64_f32 () {
|
sl@0
|
4115 |
oil_function_class_ptr_conv_f64_f32 = __oil_function_class_conv_f64_f32();
|
sl@0
|
4116 |
return &oil_function_class_ptr_conv_f64_f32->func;
|
sl@0
|
4117 |
}
|
sl@0
|
4118 |
#endif
|
sl@0
|
4119 |
|
sl@0
|
4120 |
#ifdef __SYMBIAN32__
|
sl@0
|
4121 |
|
sl@0
|
4122 |
EXPORT_C void** _oil_function_class_ptr_clipconv_s8_u8 () {
|
sl@0
|
4123 |
oil_function_class_ptr_clipconv_s8_u8 = __oil_function_class_clipconv_s8_u8();
|
sl@0
|
4124 |
return &oil_function_class_ptr_clipconv_s8_u8->func;
|
sl@0
|
4125 |
}
|
sl@0
|
4126 |
#endif
|
sl@0
|
4127 |
|
sl@0
|
4128 |
#ifdef __SYMBIAN32__
|
sl@0
|
4129 |
|
sl@0
|
4130 |
EXPORT_C void** _oil_function_class_ptr_clipconv_s8_u16 () {
|
sl@0
|
4131 |
oil_function_class_ptr_clipconv_s8_u16 = __oil_function_class_clipconv_s8_u16();
|
sl@0
|
4132 |
return &oil_function_class_ptr_clipconv_s8_u16->func;
|
sl@0
|
4133 |
}
|
sl@0
|
4134 |
#endif
|
sl@0
|
4135 |
|
sl@0
|
4136 |
#ifdef __SYMBIAN32__
|
sl@0
|
4137 |
|
sl@0
|
4138 |
EXPORT_C void** _oil_function_class_ptr_clipconv_s8_u32 () {
|
sl@0
|
4139 |
oil_function_class_ptr_clipconv_s8_u32 = __oil_function_class_clipconv_s8_u32();
|
sl@0
|
4140 |
return &oil_function_class_ptr_clipconv_s8_u32->func;
|
sl@0
|
4141 |
}
|
sl@0
|
4142 |
#endif
|
sl@0
|
4143 |
|
sl@0
|
4144 |
#ifdef __SYMBIAN32__
|
sl@0
|
4145 |
|
sl@0
|
4146 |
EXPORT_C void** _oil_function_class_ptr_clipconv_u8_u32 () {
|
sl@0
|
4147 |
oil_function_class_ptr_clipconv_u8_u32 = __oil_function_class_clipconv_u8_u32();
|
sl@0
|
4148 |
return &oil_function_class_ptr_clipconv_u8_u32->func;
|
sl@0
|
4149 |
}
|
sl@0
|
4150 |
#endif
|
sl@0
|
4151 |
|
sl@0
|
4152 |
#ifdef __SYMBIAN32__
|
sl@0
|
4153 |
|
sl@0
|
4154 |
EXPORT_C void** _oil_function_class_ptr_clipconv_u8_u16 () {
|
sl@0
|
4155 |
oil_function_class_ptr_clipconv_u8_u16 = __oil_function_class_clipconv_u8_u16();
|
sl@0
|
4156 |
return &oil_function_class_ptr_clipconv_u8_u16->func;
|
sl@0
|
4157 |
}
|
sl@0
|
4158 |
#endif
|
sl@0
|
4159 |
|
sl@0
|
4160 |
#ifdef __SYMBIAN32__
|
sl@0
|
4161 |
|
sl@0
|
4162 |
EXPORT_C void** _oil_function_class_ptr_clipconv_s16_u16 () {
|
sl@0
|
4163 |
oil_function_class_ptr_clipconv_s16_u16 = __oil_function_class_clipconv_s16_u16();
|
sl@0
|
4164 |
return &oil_function_class_ptr_clipconv_s16_u16->func;
|
sl@0
|
4165 |
}
|
sl@0
|
4166 |
#endif
|
sl@0
|
4167 |
|
sl@0
|
4168 |
#ifdef __SYMBIAN32__
|
sl@0
|
4169 |
|
sl@0
|
4170 |
EXPORT_C void** _oil_function_class_ptr_clipconv_s16_u32 () {
|
sl@0
|
4171 |
oil_function_class_ptr_clipconv_s16_u32 = __oil_function_class_clipconv_s16_u32();
|
sl@0
|
4172 |
return &oil_function_class_ptr_clipconv_s16_u32->func;
|
sl@0
|
4173 |
}
|
sl@0
|
4174 |
#endif
|
sl@0
|
4175 |
|
sl@0
|
4176 |
#ifdef __SYMBIAN32__
|
sl@0
|
4177 |
|
sl@0
|
4178 |
EXPORT_C void** _oil_function_class_ptr_clipconv_s32_u32 () {
|
sl@0
|
4179 |
oil_function_class_ptr_clipconv_s32_u32 = __oil_function_class_clipconv_s32_u32();
|
sl@0
|
4180 |
return &oil_function_class_ptr_clipconv_s32_u32->func;
|
sl@0
|
4181 |
}
|
sl@0
|
4182 |
#endif
|
sl@0
|
4183 |
|
sl@0
|
4184 |
#ifdef __SYMBIAN32__
|
sl@0
|
4185 |
|
sl@0
|
4186 |
EXPORT_C void** _oil_function_class_ptr_clipconv_u16_u32 () {
|
sl@0
|
4187 |
oil_function_class_ptr_clipconv_u16_u32 = __oil_function_class_clipconv_u16_u32();
|
sl@0
|
4188 |
return &oil_function_class_ptr_clipconv_u16_u32->func;
|
sl@0
|
4189 |
}
|
sl@0
|
4190 |
#endif
|
sl@0
|
4191 |
|
sl@0
|
4192 |
#ifdef __SYMBIAN32__
|
sl@0
|
4193 |
|
sl@0
|
4194 |
EXPORT_C void** _oil_function_class_ptr_clipconv_s8_s16 () {
|
sl@0
|
4195 |
oil_function_class_ptr_clipconv_s8_s16 = __oil_function_class_clipconv_s8_s16();
|
sl@0
|
4196 |
return &oil_function_class_ptr_clipconv_s8_s16->func;
|
sl@0
|
4197 |
}
|
sl@0
|
4198 |
#endif
|
sl@0
|
4199 |
|
sl@0
|
4200 |
#ifdef __SYMBIAN32__
|
sl@0
|
4201 |
|
sl@0
|
4202 |
EXPORT_C void** _oil_function_class_ptr_clipconv_s8_s32 () {
|
sl@0
|
4203 |
oil_function_class_ptr_clipconv_s8_s32 = __oil_function_class_clipconv_s8_s32();
|
sl@0
|
4204 |
return &oil_function_class_ptr_clipconv_s8_s32->func;
|
sl@0
|
4205 |
}
|
sl@0
|
4206 |
#endif
|
sl@0
|
4207 |
|
sl@0
|
4208 |
#ifdef __SYMBIAN32__
|
sl@0
|
4209 |
|
sl@0
|
4210 |
EXPORT_C void** _oil_function_class_ptr_clipconv_u8_s16 () {
|
sl@0
|
4211 |
oil_function_class_ptr_clipconv_u8_s16 = __oil_function_class_clipconv_u8_s16();
|
sl@0
|
4212 |
return &oil_function_class_ptr_clipconv_u8_s16->func;
|
sl@0
|
4213 |
}
|
sl@0
|
4214 |
#endif
|
sl@0
|
4215 |
|
sl@0
|
4216 |
#ifdef __SYMBIAN32__
|
sl@0
|
4217 |
|
sl@0
|
4218 |
EXPORT_C void** _oil_function_class_ptr_clipconv_u8_s32 () {
|
sl@0
|
4219 |
oil_function_class_ptr_clipconv_u8_s32 = __oil_function_class_clipconv_u8_s32();
|
sl@0
|
4220 |
return &oil_function_class_ptr_clipconv_u8_s32->func;
|
sl@0
|
4221 |
}
|
sl@0
|
4222 |
#endif
|
sl@0
|
4223 |
|
sl@0
|
4224 |
#ifdef __SYMBIAN32__
|
sl@0
|
4225 |
|
sl@0
|
4226 |
EXPORT_C void** _oil_function_class_ptr_clipconv_s16_s32 () {
|
sl@0
|
4227 |
oil_function_class_ptr_clipconv_s16_s32 = __oil_function_class_clipconv_s16_s32();
|
sl@0
|
4228 |
return &oil_function_class_ptr_clipconv_s16_s32->func;
|
sl@0
|
4229 |
}
|
sl@0
|
4230 |
#endif
|
sl@0
|
4231 |
|
sl@0
|
4232 |
#ifdef __SYMBIAN32__
|
sl@0
|
4233 |
|
sl@0
|
4234 |
EXPORT_C void** _oil_function_class_ptr_clipconv_u16_s32 () {
|
sl@0
|
4235 |
oil_function_class_ptr_clipconv_u16_s32 = __oil_function_class_clipconv_u16_s32();
|
sl@0
|
4236 |
return &oil_function_class_ptr_clipconv_u16_s32->func;
|
sl@0
|
4237 |
}
|
sl@0
|
4238 |
#endif
|
sl@0
|
4239 |
|
sl@0
|
4240 |
#ifdef __SYMBIAN32__
|
sl@0
|
4241 |
|
sl@0
|
4242 |
EXPORT_C void** _oil_function_class_ptr_clipconv_u8_s8 () {
|
sl@0
|
4243 |
oil_function_class_ptr_clipconv_u8_s8 = __oil_function_class_clipconv_u8_s8();
|
sl@0
|
4244 |
return &oil_function_class_ptr_clipconv_u8_s8->func;
|
sl@0
|
4245 |
}
|
sl@0
|
4246 |
#endif
|
sl@0
|
4247 |
|
sl@0
|
4248 |
#ifdef __SYMBIAN32__
|
sl@0
|
4249 |
|
sl@0
|
4250 |
EXPORT_C void** _oil_function_class_ptr_clipconv_u16_s16 () {
|
sl@0
|
4251 |
oil_function_class_ptr_clipconv_u16_s16 = __oil_function_class_clipconv_u16_s16();
|
sl@0
|
4252 |
return &oil_function_class_ptr_clipconv_u16_s16->func;
|
sl@0
|
4253 |
}
|
sl@0
|
4254 |
#endif
|
sl@0
|
4255 |
|
sl@0
|
4256 |
#ifdef __SYMBIAN32__
|
sl@0
|
4257 |
|
sl@0
|
4258 |
EXPORT_C void** _oil_function_class_ptr_clipconv_u32_s32 () {
|
sl@0
|
4259 |
oil_function_class_ptr_clipconv_u32_s32 = __oil_function_class_clipconv_u32_s32();
|
sl@0
|
4260 |
return &oil_function_class_ptr_clipconv_u32_s32->func;
|
sl@0
|
4261 |
}
|
sl@0
|
4262 |
#endif
|
sl@0
|
4263 |
|
sl@0
|
4264 |
#ifdef __SYMBIAN32__
|
sl@0
|
4265 |
|
sl@0
|
4266 |
EXPORT_C void** _oil_function_class_ptr_clipconv_s8_f32 () {
|
sl@0
|
4267 |
oil_function_class_ptr_clipconv_s8_f32 = __oil_function_class_clipconv_s8_f32();
|
sl@0
|
4268 |
return &oil_function_class_ptr_clipconv_s8_f32->func;
|
sl@0
|
4269 |
}
|
sl@0
|
4270 |
#endif
|
sl@0
|
4271 |
|
sl@0
|
4272 |
#ifdef __SYMBIAN32__
|
sl@0
|
4273 |
|
sl@0
|
4274 |
EXPORT_C void** _oil_function_class_ptr_clipconv_s8_f64 () {
|
sl@0
|
4275 |
oil_function_class_ptr_clipconv_s8_f64 = __oil_function_class_clipconv_s8_f64();
|
sl@0
|
4276 |
return &oil_function_class_ptr_clipconv_s8_f64->func;
|
sl@0
|
4277 |
}
|
sl@0
|
4278 |
#endif
|
sl@0
|
4279 |
|
sl@0
|
4280 |
#ifdef __SYMBIAN32__
|
sl@0
|
4281 |
|
sl@0
|
4282 |
EXPORT_C void** _oil_function_class_ptr_clipconv_u8_f32 () {
|
sl@0
|
4283 |
oil_function_class_ptr_clipconv_u8_f32 = __oil_function_class_clipconv_u8_f32();
|
sl@0
|
4284 |
return &oil_function_class_ptr_clipconv_u8_f32->func;
|
sl@0
|
4285 |
}
|
sl@0
|
4286 |
#endif
|
sl@0
|
4287 |
|
sl@0
|
4288 |
#ifdef __SYMBIAN32__
|
sl@0
|
4289 |
|
sl@0
|
4290 |
EXPORT_C void** _oil_function_class_ptr_clipconv_u8_f64 () {
|
sl@0
|
4291 |
oil_function_class_ptr_clipconv_u8_f64 = __oil_function_class_clipconv_u8_f64();
|
sl@0
|
4292 |
return &oil_function_class_ptr_clipconv_u8_f64->func;
|
sl@0
|
4293 |
}
|
sl@0
|
4294 |
#endif
|
sl@0
|
4295 |
|
sl@0
|
4296 |
#ifdef __SYMBIAN32__
|
sl@0
|
4297 |
|
sl@0
|
4298 |
EXPORT_C void** _oil_function_class_ptr_clipconv_s16_f32 () {
|
sl@0
|
4299 |
oil_function_class_ptr_clipconv_s16_f32 = __oil_function_class_clipconv_s16_f32();
|
sl@0
|
4300 |
return &oil_function_class_ptr_clipconv_s16_f32->func;
|
sl@0
|
4301 |
}
|
sl@0
|
4302 |
#endif
|
sl@0
|
4303 |
|
sl@0
|
4304 |
#ifdef __SYMBIAN32__
|
sl@0
|
4305 |
|
sl@0
|
4306 |
EXPORT_C void** _oil_function_class_ptr_clipconv_s16_f64 () {
|
sl@0
|
4307 |
oil_function_class_ptr_clipconv_s16_f64 = __oil_function_class_clipconv_s16_f64();
|
sl@0
|
4308 |
return &oil_function_class_ptr_clipconv_s16_f64->func;
|
sl@0
|
4309 |
}
|
sl@0
|
4310 |
#endif
|
sl@0
|
4311 |
|
sl@0
|
4312 |
#ifdef __SYMBIAN32__
|
sl@0
|
4313 |
|
sl@0
|
4314 |
EXPORT_C void** _oil_function_class_ptr_clipconv_u16_f32 () {
|
sl@0
|
4315 |
oil_function_class_ptr_clipconv_u16_f32 = __oil_function_class_clipconv_u16_f32();
|
sl@0
|
4316 |
return &oil_function_class_ptr_clipconv_u16_f32->func;
|
sl@0
|
4317 |
}
|
sl@0
|
4318 |
#endif
|
sl@0
|
4319 |
|
sl@0
|
4320 |
#ifdef __SYMBIAN32__
|
sl@0
|
4321 |
|
sl@0
|
4322 |
EXPORT_C void** _oil_function_class_ptr_clipconv_u16_f64 () {
|
sl@0
|
4323 |
oil_function_class_ptr_clipconv_u16_f64 = __oil_function_class_clipconv_u16_f64();
|
sl@0
|
4324 |
return &oil_function_class_ptr_clipconv_u16_f64->func;
|
sl@0
|
4325 |
}
|
sl@0
|
4326 |
#endif
|
sl@0
|
4327 |
|
sl@0
|
4328 |
#ifdef __SYMBIAN32__
|
sl@0
|
4329 |
|
sl@0
|
4330 |
EXPORT_C void** _oil_function_class_ptr_clipconv_s32_f32 () {
|
sl@0
|
4331 |
oil_function_class_ptr_clipconv_s32_f32 = __oil_function_class_clipconv_s32_f32();
|
sl@0
|
4332 |
return &oil_function_class_ptr_clipconv_s32_f32->func;
|
sl@0
|
4333 |
}
|
sl@0
|
4334 |
#endif
|
sl@0
|
4335 |
|
sl@0
|
4336 |
#ifdef __SYMBIAN32__
|
sl@0
|
4337 |
|
sl@0
|
4338 |
EXPORT_C void** _oil_function_class_ptr_clipconv_s32_f64 () {
|
sl@0
|
4339 |
oil_function_class_ptr_clipconv_s32_f64 = __oil_function_class_clipconv_s32_f64();
|
sl@0
|
4340 |
return &oil_function_class_ptr_clipconv_s32_f64->func;
|
sl@0
|
4341 |
}
|
sl@0
|
4342 |
#endif
|
sl@0
|
4343 |
|
sl@0
|
4344 |
#ifdef __SYMBIAN32__
|
sl@0
|
4345 |
|
sl@0
|
4346 |
EXPORT_C void** _oil_function_class_ptr_clipconv_u32_f32 () {
|
sl@0
|
4347 |
oil_function_class_ptr_clipconv_u32_f32 = __oil_function_class_clipconv_u32_f32();
|
sl@0
|
4348 |
return &oil_function_class_ptr_clipconv_u32_f32->func;
|
sl@0
|
4349 |
}
|
sl@0
|
4350 |
#endif
|
sl@0
|
4351 |
|
sl@0
|
4352 |
#ifdef __SYMBIAN32__
|
sl@0
|
4353 |
|
sl@0
|
4354 |
EXPORT_C void** _oil_function_class_ptr_clipconv_u32_f64 () {
|
sl@0
|
4355 |
oil_function_class_ptr_clipconv_u32_f64 = __oil_function_class_clipconv_u32_f64();
|
sl@0
|
4356 |
return &oil_function_class_ptr_clipconv_u32_f64->func;
|
sl@0
|
4357 |
}
|
sl@0
|
4358 |
#endif
|
sl@0
|
4359 |
|
sl@0
|
4360 |
#ifdef __SYMBIAN32__
|
sl@0
|
4361 |
|
sl@0
|
4362 |
EXPORT_C void** _oil_function_class_ptr_scaleconv_s8_f32 () {
|
sl@0
|
4363 |
oil_function_class_ptr_scaleconv_s8_f32 = __oil_function_class_scaleconv_s8_f32();
|
sl@0
|
4364 |
return &oil_function_class_ptr_scaleconv_s8_f32->func;
|
sl@0
|
4365 |
}
|
sl@0
|
4366 |
#endif
|
sl@0
|
4367 |
|
sl@0
|
4368 |
#ifdef __SYMBIAN32__
|
sl@0
|
4369 |
|
sl@0
|
4370 |
EXPORT_C void** _oil_function_class_ptr_scaleconv_u8_f32 () {
|
sl@0
|
4371 |
oil_function_class_ptr_scaleconv_u8_f32 = __oil_function_class_scaleconv_u8_f32();
|
sl@0
|
4372 |
return &oil_function_class_ptr_scaleconv_u8_f32->func;
|
sl@0
|
4373 |
}
|
sl@0
|
4374 |
#endif
|
sl@0
|
4375 |
|
sl@0
|
4376 |
#ifdef __SYMBIAN32__
|
sl@0
|
4377 |
|
sl@0
|
4378 |
EXPORT_C void** _oil_function_class_ptr_scaleconv_s16_f32 () {
|
sl@0
|
4379 |
oil_function_class_ptr_scaleconv_s16_f32 = __oil_function_class_scaleconv_s16_f32();
|
sl@0
|
4380 |
return &oil_function_class_ptr_scaleconv_s16_f32->func;
|
sl@0
|
4381 |
}
|
sl@0
|
4382 |
#endif
|
sl@0
|
4383 |
|
sl@0
|
4384 |
#ifdef __SYMBIAN32__
|
sl@0
|
4385 |
|
sl@0
|
4386 |
EXPORT_C void** _oil_function_class_ptr_scaleconv_u16_f32 () {
|
sl@0
|
4387 |
oil_function_class_ptr_scaleconv_u16_f32 = __oil_function_class_scaleconv_u16_f32();
|
sl@0
|
4388 |
return &oil_function_class_ptr_scaleconv_u16_f32->func;
|
sl@0
|
4389 |
}
|
sl@0
|
4390 |
#endif
|
sl@0
|
4391 |
|
sl@0
|
4392 |
#ifdef __SYMBIAN32__
|
sl@0
|
4393 |
|
sl@0
|
4394 |
EXPORT_C void** _oil_function_class_ptr_scaleconv_s32_f32 () {
|
sl@0
|
4395 |
oil_function_class_ptr_scaleconv_s32_f32 = __oil_function_class_scaleconv_s32_f32();
|
sl@0
|
4396 |
return &oil_function_class_ptr_scaleconv_s32_f32->func;
|
sl@0
|
4397 |
}
|
sl@0
|
4398 |
#endif
|
sl@0
|
4399 |
|
sl@0
|
4400 |
#ifdef __SYMBIAN32__
|
sl@0
|
4401 |
|
sl@0
|
4402 |
EXPORT_C void** _oil_function_class_ptr_scaleconv_u32_f32 () {
|
sl@0
|
4403 |
oil_function_class_ptr_scaleconv_u32_f32 = __oil_function_class_scaleconv_u32_f32();
|
sl@0
|
4404 |
return &oil_function_class_ptr_scaleconv_u32_f32->func;
|
sl@0
|
4405 |
}
|
sl@0
|
4406 |
#endif
|
sl@0
|
4407 |
|
sl@0
|
4408 |
#ifdef __SYMBIAN32__
|
sl@0
|
4409 |
|
sl@0
|
4410 |
EXPORT_C void** _oil_function_class_ptr_scaleconv_s8_f64 () {
|
sl@0
|
4411 |
oil_function_class_ptr_scaleconv_s8_f64 = __oil_function_class_scaleconv_s8_f64();
|
sl@0
|
4412 |
return &oil_function_class_ptr_scaleconv_s8_f64->func;
|
sl@0
|
4413 |
}
|
sl@0
|
4414 |
#endif
|
sl@0
|
4415 |
|
sl@0
|
4416 |
#ifdef __SYMBIAN32__
|
sl@0
|
4417 |
|
sl@0
|
4418 |
EXPORT_C void** _oil_function_class_ptr_scaleconv_u8_f64 () {
|
sl@0
|
4419 |
oil_function_class_ptr_scaleconv_u8_f64 = __oil_function_class_scaleconv_u8_f64();
|
sl@0
|
4420 |
return &oil_function_class_ptr_scaleconv_u8_f64->func;
|
sl@0
|
4421 |
}
|
sl@0
|
4422 |
#endif
|
sl@0
|
4423 |
|
sl@0
|
4424 |
#ifdef __SYMBIAN32__
|
sl@0
|
4425 |
|
sl@0
|
4426 |
EXPORT_C void** _oil_function_class_ptr_scaleconv_s16_f64 () {
|
sl@0
|
4427 |
oil_function_class_ptr_scaleconv_s16_f64 = __oil_function_class_scaleconv_s16_f64();
|
sl@0
|
4428 |
return &oil_function_class_ptr_scaleconv_s16_f64->func;
|
sl@0
|
4429 |
}
|
sl@0
|
4430 |
#endif
|
sl@0
|
4431 |
|
sl@0
|
4432 |
#ifdef __SYMBIAN32__
|
sl@0
|
4433 |
|
sl@0
|
4434 |
EXPORT_C void** _oil_function_class_ptr_scaleconv_u16_f64 () {
|
sl@0
|
4435 |
oil_function_class_ptr_scaleconv_u16_f64 = __oil_function_class_scaleconv_u16_f64();
|
sl@0
|
4436 |
return &oil_function_class_ptr_scaleconv_u16_f64->func;
|
sl@0
|
4437 |
}
|
sl@0
|
4438 |
#endif
|
sl@0
|
4439 |
|
sl@0
|
4440 |
#ifdef __SYMBIAN32__
|
sl@0
|
4441 |
|
sl@0
|
4442 |
EXPORT_C void** _oil_function_class_ptr_scaleconv_s32_f64 () {
|
sl@0
|
4443 |
oil_function_class_ptr_scaleconv_s32_f64 = __oil_function_class_scaleconv_s32_f64();
|
sl@0
|
4444 |
return &oil_function_class_ptr_scaleconv_s32_f64->func;
|
sl@0
|
4445 |
}
|
sl@0
|
4446 |
#endif
|
sl@0
|
4447 |
|
sl@0
|
4448 |
#ifdef __SYMBIAN32__
|
sl@0
|
4449 |
|
sl@0
|
4450 |
EXPORT_C void** _oil_function_class_ptr_scaleconv_u32_f64 () {
|
sl@0
|
4451 |
oil_function_class_ptr_scaleconv_u32_f64 = __oil_function_class_scaleconv_u32_f64();
|
sl@0
|
4452 |
return &oil_function_class_ptr_scaleconv_u32_f64->func;
|
sl@0
|
4453 |
}
|
sl@0
|
4454 |
#endif
|
sl@0
|
4455 |
|
sl@0
|
4456 |
#ifdef __SYMBIAN32__
|
sl@0
|
4457 |
|
sl@0
|
4458 |
EXPORT_C void** _oil_function_class_ptr_scaleconv_f32_s8 () {
|
sl@0
|
4459 |
oil_function_class_ptr_scaleconv_f32_s8 = __oil_function_class_scaleconv_f32_s8();
|
sl@0
|
4460 |
return &oil_function_class_ptr_scaleconv_f32_s8->func;
|
sl@0
|
4461 |
}
|
sl@0
|
4462 |
#endif
|
sl@0
|
4463 |
|
sl@0
|
4464 |
#ifdef __SYMBIAN32__
|
sl@0
|
4465 |
|
sl@0
|
4466 |
EXPORT_C void** _oil_function_class_ptr_scaleconv_f32_u8 () {
|
sl@0
|
4467 |
oil_function_class_ptr_scaleconv_f32_u8 = __oil_function_class_scaleconv_f32_u8();
|
sl@0
|
4468 |
return &oil_function_class_ptr_scaleconv_f32_u8->func;
|
sl@0
|
4469 |
}
|
sl@0
|
4470 |
#endif
|
sl@0
|
4471 |
|
sl@0
|
4472 |
#ifdef __SYMBIAN32__
|
sl@0
|
4473 |
|
sl@0
|
4474 |
EXPORT_C void** _oil_function_class_ptr_scaleconv_f32_s16 () {
|
sl@0
|
4475 |
oil_function_class_ptr_scaleconv_f32_s16 = __oil_function_class_scaleconv_f32_s16();
|
sl@0
|
4476 |
return &oil_function_class_ptr_scaleconv_f32_s16->func;
|
sl@0
|
4477 |
}
|
sl@0
|
4478 |
#endif
|
sl@0
|
4479 |
|
sl@0
|
4480 |
#ifdef __SYMBIAN32__
|
sl@0
|
4481 |
|
sl@0
|
4482 |
EXPORT_C void** _oil_function_class_ptr_scaleconv_f32_u16 () {
|
sl@0
|
4483 |
oil_function_class_ptr_scaleconv_f32_u16 = __oil_function_class_scaleconv_f32_u16();
|
sl@0
|
4484 |
return &oil_function_class_ptr_scaleconv_f32_u16->func;
|
sl@0
|
4485 |
}
|
sl@0
|
4486 |
#endif
|
sl@0
|
4487 |
|
sl@0
|
4488 |
#ifdef __SYMBIAN32__
|
sl@0
|
4489 |
|
sl@0
|
4490 |
EXPORT_C void** _oil_function_class_ptr_scaleconv_f32_s32 () {
|
sl@0
|
4491 |
oil_function_class_ptr_scaleconv_f32_s32 = __oil_function_class_scaleconv_f32_s32();
|
sl@0
|
4492 |
return &oil_function_class_ptr_scaleconv_f32_s32->func;
|
sl@0
|
4493 |
}
|
sl@0
|
4494 |
#endif
|
sl@0
|
4495 |
|
sl@0
|
4496 |
#ifdef __SYMBIAN32__
|
sl@0
|
4497 |
|
sl@0
|
4498 |
EXPORT_C void** _oil_function_class_ptr_scaleconv_f32_u32 () {
|
sl@0
|
4499 |
oil_function_class_ptr_scaleconv_f32_u32 = __oil_function_class_scaleconv_f32_u32();
|
sl@0
|
4500 |
return &oil_function_class_ptr_scaleconv_f32_u32->func;
|
sl@0
|
4501 |
}
|
sl@0
|
4502 |
#endif
|
sl@0
|
4503 |
|
sl@0
|
4504 |
#ifdef __SYMBIAN32__
|
sl@0
|
4505 |
|
sl@0
|
4506 |
EXPORT_C void** _oil_function_class_ptr_scaleconv_f64_s8 () {
|
sl@0
|
4507 |
oil_function_class_ptr_scaleconv_f64_s8 = __oil_function_class_scaleconv_f64_s8();
|
sl@0
|
4508 |
return &oil_function_class_ptr_scaleconv_f64_s8->func;
|
sl@0
|
4509 |
}
|
sl@0
|
4510 |
#endif
|
sl@0
|
4511 |
|
sl@0
|
4512 |
#ifdef __SYMBIAN32__
|
sl@0
|
4513 |
|
sl@0
|
4514 |
EXPORT_C void** _oil_function_class_ptr_scaleconv_f64_u8 () {
|
sl@0
|
4515 |
oil_function_class_ptr_scaleconv_f64_u8 = __oil_function_class_scaleconv_f64_u8();
|
sl@0
|
4516 |
return &oil_function_class_ptr_scaleconv_f64_u8->func;
|
sl@0
|
4517 |
}
|
sl@0
|
4518 |
#endif
|
sl@0
|
4519 |
|
sl@0
|
4520 |
#ifdef __SYMBIAN32__
|
sl@0
|
4521 |
|
sl@0
|
4522 |
EXPORT_C void** _oil_function_class_ptr_scaleconv_f64_s16 () {
|
sl@0
|
4523 |
oil_function_class_ptr_scaleconv_f64_s16 = __oil_function_class_scaleconv_f64_s16();
|
sl@0
|
4524 |
return &oil_function_class_ptr_scaleconv_f64_s16->func;
|
sl@0
|
4525 |
}
|
sl@0
|
4526 |
#endif
|
sl@0
|
4527 |
|
sl@0
|
4528 |
#ifdef __SYMBIAN32__
|
sl@0
|
4529 |
|
sl@0
|
4530 |
EXPORT_C void** _oil_function_class_ptr_scaleconv_f64_u16 () {
|
sl@0
|
4531 |
oil_function_class_ptr_scaleconv_f64_u16 = __oil_function_class_scaleconv_f64_u16();
|
sl@0
|
4532 |
return &oil_function_class_ptr_scaleconv_f64_u16->func;
|
sl@0
|
4533 |
}
|
sl@0
|
4534 |
#endif
|
sl@0
|
4535 |
|
sl@0
|
4536 |
#ifdef __SYMBIAN32__
|
sl@0
|
4537 |
|
sl@0
|
4538 |
EXPORT_C void** _oil_function_class_ptr_scaleconv_f64_s32 () {
|
sl@0
|
4539 |
oil_function_class_ptr_scaleconv_f64_s32 = __oil_function_class_scaleconv_f64_s32();
|
sl@0
|
4540 |
return &oil_function_class_ptr_scaleconv_f64_s32->func;
|
sl@0
|
4541 |
}
|
sl@0
|
4542 |
#endif
|
sl@0
|
4543 |
|
sl@0
|
4544 |
#ifdef __SYMBIAN32__
|
sl@0
|
4545 |
|
sl@0
|
4546 |
EXPORT_C void** _oil_function_class_ptr_scaleconv_f64_u32 () {
|
sl@0
|
4547 |
oil_function_class_ptr_scaleconv_f64_u32 = __oil_function_class_scaleconv_f64_u32();
|
sl@0
|
4548 |
return &oil_function_class_ptr_scaleconv_f64_u32->func;
|
sl@0
|
4549 |
}
|
sl@0
|
4550 |
#endif
|
sl@0
|
4551 |
|