os/ossrv/genericopenlibs/liboil/src/deprecated/conv_c_dep.c
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/genericopenlibs/liboil/src/deprecated/conv_c_dep.c	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,4551 @@
     1.4 +/*
     1.5 + * LIBOIL - Library of Optimized Inner Loops
     1.6 + * Copyright (c) 2001,2003,2004 David A. Schleef <ds@schleef.org>
     1.7 + * All rights reserved.
     1.8 + *
     1.9 + * Redistribution and use in source and binary forms, with or without
    1.10 + * modification, are permitted provided that the following conditions
    1.11 + * are met:
    1.12 + * 1. Redistributions of source code must retain the above copyright
    1.13 + *    notice, this list of conditions and the following disclaimer.
    1.14 + * 2. Redistributions in binary form must reproduce the above copyright
    1.15 + *    notice, this list of conditions and the following disclaimer in the
    1.16 + *    documentation and/or other materials provided with the distribution.
    1.17 + * 
    1.18 + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
    1.19 + * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
    1.20 + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    1.21 + * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
    1.22 + * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    1.23 + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
    1.24 + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    1.25 + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
    1.26 + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
    1.27 + * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    1.28 + * POSSIBILITY OF SUCH DAMAGE.
    1.29 + */
    1.30 +//Portions Copyright (c)  2008-2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. 
    1.31 +
    1.32 +#ifdef HAVE_CONFIG_H
    1.33 +#include "config.h"
    1.34 +#endif
    1.35 +#include <liboil/liboilfunction.h>
    1.36 +#include <liboil/liboiltest.h>
    1.37 +#include <liboil/liboilrandom.h>
    1.38 +
    1.39 +#include <math.h>
    1.40 +#include <string.h>
    1.41 +#include <stdlib.h>
    1.42 +
    1.43 +
    1.44 +/**
    1.45 + * SECTION:liboilfuncs-conv
    1.46 + * @title: Type Conversion
    1.47 + * @short_description: Type conversion
    1.48 + *
    1.49 + * The functions in this section perform type conversion.
    1.50 + *
    1.51 + * The <i>conv</i> functions convert value from the source type to
    1.52 + * the destination type.  Conversion of values outside the destination
    1.53 + * range is undefined and may vary between implementations.
    1.54 + *
    1.55 + * The <i>clipconv</i> functions convert values from the source
    1.56 + * type to the destination type.  Conversion of values outside the
    1.57 + * destination range are saturated to the destination range.
    1.58 + *
    1.59 + * The <i>scaleconv</i> functions multiply the source values by a
    1.60 + * constant factor before converting to the destination type.  Conversion
    1.61 + * of values outside the destination range is undefined and may vary
    1.62 + * between implementations.
    1.63 + * 
    1.64 + * Conversion of values from floating point types to integer types
    1.65 + * is done using a round-to-nearest policy.  Rounding of half-integers
    1.66 + * is undefined and may vary between implementations.
    1.67 + */
    1.68 +
    1.69 +
    1.70 +static void
    1.71 +conv_test (OilTest *test)
    1.72 +{
    1.73 +  int i;
    1.74 +  int n;
    1.75 +  double min = 0;
    1.76 +  double max = 1;
    1.77 +  int stride = test->params[OIL_ARG_SRC1].stride;
    1.78 +  void *data = oil_test_get_source_data (test, OIL_ARG_SRC1);
    1.79 +
    1.80 +  n = test->params[OIL_ARG_SRC1].post_n;
    1.81 +
    1.82 +  switch(test->params[OIL_ARG_DEST1].type) {
    1.83 +    case OIL_TYPE_s8p:
    1.84 +      min = oil_type_min_s8;
    1.85 +      max = oil_type_max_s8;
    1.86 +      break;
    1.87 +    case OIL_TYPE_u8p:
    1.88 +      min = oil_type_min_u8;
    1.89 +      max = oil_type_max_u8;
    1.90 +      break;
    1.91 +    case OIL_TYPE_s16p:
    1.92 +      min = oil_type_min_s16;
    1.93 +      max = oil_type_max_s16;
    1.94 +      break;
    1.95 +    case OIL_TYPE_u16p:
    1.96 +      min = oil_type_min_u16;
    1.97 +      max = oil_type_max_u16;
    1.98 +      break;
    1.99 +    case OIL_TYPE_s32p:
   1.100 +      min = oil_type_min_s32;
   1.101 +      max = oil_type_max_s32;
   1.102 +      break;
   1.103 +    case OIL_TYPE_u32p:
   1.104 +      min = oil_type_min_u32;
   1.105 +      max = oil_type_max_u32;
   1.106 +      break;
   1.107 +    default:
   1.108 +      break;
   1.109 +  }
   1.110 +
   1.111 +  switch (test->params[OIL_ARG_SRC1].type) {
   1.112 +    case OIL_TYPE_f32p:
   1.113 +      for(i=0;i<n;i++){
   1.114 +        int x;
   1.115 +        x = oil_rand_u8() & 0x1;
   1.116 +        switch (x) {
   1.117 +          case 0:
   1.118 +            OIL_GET(data, stride * i, float) =
   1.119 +              oil_rand_f32() * (max - min) + min;
   1.120 +            break;
   1.121 +          case 1:
   1.122 +            if (min < 0) {
   1.123 +              OIL_GET(data, stride * i, float) =
   1.124 +                (oil_rand_f32() - 0.5) * 10;
   1.125 +            } else {
   1.126 +              OIL_GET(data, stride * i, float) = oil_rand_f32() * 10;
   1.127 +            }
   1.128 +            break;
   1.129 +        }
   1.130 +      }
   1.131 +      break;
   1.132 +    case OIL_TYPE_f64p:
   1.133 +      for(i=0;i<n;i++){
   1.134 +        OIL_GET(data, stride * i, double) = oil_rand_f64() * (max - min) + min;
   1.135 +      }
   1.136 +      break;
   1.137 +    default:
   1.138 +      break;
   1.139 +  }
   1.140 +}
   1.141 +
   1.142 +#define CONV_DEFINE_REF_CAST(desttype,srctype) \
   1.143 +static void conv_ ## desttype ## _ ## srctype ## _ref ( \
   1.144 +    oil_type_ ## desttype *dest,    \
   1.145 +    int dest_stride,        \
   1.146 +    oil_type_ ## srctype *src,      \
   1.147 +    int src_stride, int n)      \
   1.148 +{                   \
   1.149 +    int i;              \
   1.150 +    for(i=0;i<n;i++){       \
   1.151 +        OIL_GET(dest,i*dest_stride, oil_type_ ## desttype) = \
   1.152 +            OIL_GET(src,i*src_stride, oil_type_ ## srctype);    \
   1.153 +    }               \
   1.154 +}                   \
   1.155 +OIL_DEFINE_CLASS(conv_ ## desttype ## _ ## srctype, \
   1.156 +    "oil_type_" #desttype " *dest, "    \
   1.157 +    "int dstr, "            \
   1.158 +    "oil_type_" #srctype " *src, "  \
   1.159 +    "int sstr, int n");     \
   1.160 +OIL_DEFINE_IMPL_REF(conv_ ## desttype ## _ ## srctype ## _ref,  \
   1.161 +    conv_ ## desttype ## _ ## srctype)
   1.162 +
   1.163 +#define CONV_DEFINE_FLOAT_REF(desttype,srctype) \
   1.164 +static void conv_ ## desttype ## _ ## srctype ## _ref ( \
   1.165 +    oil_type_ ## desttype *dest,    \
   1.166 +    int dest_stride,        \
   1.167 +    oil_type_ ## srctype *src,      \
   1.168 +    int src_stride, int n)      \
   1.169 +{                   \
   1.170 +    int i;              \
   1.171 +    for(i=0;i<n;i++){       \
   1.172 +        OIL_GET(dest,i*dest_stride, oil_type_ ## desttype) =        \
   1.173 +            rint(OIL_GET(src,i*src_stride, oil_type_ ## srctype));  \
   1.174 +    }               \
   1.175 +}                   \
   1.176 +OIL_DEFINE_CLASS_FULL(conv_ ## desttype ## _ ## srctype,    \
   1.177 +    "oil_type_" #desttype " *dest, "    \
   1.178 +    "int dstr, "            \
   1.179 +    "oil_type_" #srctype " *src, "  \
   1.180 +    "int sstr, int n", conv_test);  \
   1.181 +OIL_DEFINE_IMPL_REF(conv_ ## desttype ## _ ## srctype ## _ref,  \
   1.182 +    conv_ ## desttype ## _ ## srctype)
   1.183 +
   1.184 +CONV_DEFINE_REF_CAST(s8,u8);
   1.185 +CONV_DEFINE_REF_CAST(s8,s16);
   1.186 +CONV_DEFINE_REF_CAST(s8,u16);
   1.187 +CONV_DEFINE_REF_CAST(s8,s32);
   1.188 +CONV_DEFINE_REF_CAST(s8,u32);
   1.189 +CONV_DEFINE_FLOAT_REF(s8,f32);
   1.190 +CONV_DEFINE_FLOAT_REF(s8,f64);
   1.191 +
   1.192 +CONV_DEFINE_REF_CAST(u8,s8);
   1.193 +CONV_DEFINE_REF_CAST(u8,s16);
   1.194 +CONV_DEFINE_REF_CAST(u8,u16);
   1.195 +CONV_DEFINE_REF_CAST(u8,s32);
   1.196 +CONV_DEFINE_REF_CAST(u8,u32);
   1.197 +CONV_DEFINE_FLOAT_REF(u8,f32);
   1.198 +CONV_DEFINE_FLOAT_REF(u8,f64);
   1.199 +
   1.200 +CONV_DEFINE_REF_CAST(s16,s8);
   1.201 +CONV_DEFINE_REF_CAST(s16,u8);
   1.202 +CONV_DEFINE_REF_CAST(s16,u16);
   1.203 +CONV_DEFINE_REF_CAST(s16,s32);
   1.204 +CONV_DEFINE_REF_CAST(s16,u32);
   1.205 +CONV_DEFINE_FLOAT_REF(s16,f32);
   1.206 +CONV_DEFINE_FLOAT_REF(s16,f64);
   1.207 +
   1.208 +CONV_DEFINE_REF_CAST(u16,s8);
   1.209 +CONV_DEFINE_REF_CAST(u16,u8);
   1.210 +CONV_DEFINE_REF_CAST(u16,s16);
   1.211 +CONV_DEFINE_REF_CAST(u16,s32);
   1.212 +CONV_DEFINE_REF_CAST(u16,u32);
   1.213 +CONV_DEFINE_FLOAT_REF(u16,f32);
   1.214 +CONV_DEFINE_FLOAT_REF(u16,f64);
   1.215 +
   1.216 +CONV_DEFINE_REF_CAST(s32,s8);
   1.217 +CONV_DEFINE_REF_CAST(s32,s16);
   1.218 +CONV_DEFINE_REF_CAST(s32,u8);
   1.219 +CONV_DEFINE_REF_CAST(s32,u16);
   1.220 +CONV_DEFINE_REF_CAST(s32,u32);
   1.221 +CONV_DEFINE_FLOAT_REF(s32,f32);
   1.222 +CONV_DEFINE_FLOAT_REF(s32,f64);
   1.223 +
   1.224 +CONV_DEFINE_REF_CAST(u32,s8);
   1.225 +CONV_DEFINE_REF_CAST(u32,s16);
   1.226 +CONV_DEFINE_REF_CAST(u32,u8);
   1.227 +CONV_DEFINE_REF_CAST(u32,u16);
   1.228 +CONV_DEFINE_REF_CAST(u32,s32);
   1.229 +CONV_DEFINE_FLOAT_REF(u32,f32);
   1.230 +CONV_DEFINE_FLOAT_REF(u32,f64);
   1.231 +
   1.232 +CONV_DEFINE_REF_CAST(f32,s8);
   1.233 +CONV_DEFINE_REF_CAST(f32,s16);
   1.234 +CONV_DEFINE_REF_CAST(f32,u8);
   1.235 +CONV_DEFINE_REF_CAST(f32,u16);
   1.236 +CONV_DEFINE_REF_CAST(f32,s32);
   1.237 +CONV_DEFINE_REF_CAST(f32,u32);
   1.238 +CONV_DEFINE_REF_CAST(f32,f64);
   1.239 +
   1.240 +CONV_DEFINE_REF_CAST(f64,s8);
   1.241 +CONV_DEFINE_REF_CAST(f64,u8);
   1.242 +CONV_DEFINE_REF_CAST(f64,s16);
   1.243 +CONV_DEFINE_REF_CAST(f64,u16);
   1.244 +CONV_DEFINE_REF_CAST(f64,s32);
   1.245 +CONV_DEFINE_REF_CAST(f64,u32);
   1.246 +CONV_DEFINE_REF_CAST(f64,f32);
   1.247 +
   1.248 +
   1.249 +
   1.250 +
   1.251 +#define CLIPCONV_DEFINE_BOTH_REF(desttype,srctype) \
   1.252 +static void clipconv_ ## desttype ## _ ## srctype ## _ref ( \
   1.253 +    oil_type_ ## desttype *dest,    \
   1.254 +    int dest_stride,        \
   1.255 +    oil_type_ ## srctype *src,      \
   1.256 +    int src_stride, int n)      \
   1.257 +{                   \
   1.258 +    int i;              \
   1.259 +    oil_type_ ## srctype x;     \
   1.260 +    for(i=0;i<n;i++){       \
   1.261 +        x = OIL_GET(src,i*src_stride, oil_type_ ## srctype);            \
   1.262 +        if(x<oil_type_min_ ## desttype) x=oil_type_min_ ## desttype;    \
   1.263 +        if(x>oil_type_max_ ## desttype) x=oil_type_max_ ## desttype;    \
   1.264 +        OIL_GET(dest,i*dest_stride, oil_type_ ## desttype) = x;         \
   1.265 +    }               \
   1.266 +}                   \
   1.267 +OIL_DEFINE_CLASS(clipconv_ ## desttype ## _ ## srctype, \
   1.268 +    "oil_type_" #desttype " *dest, "    \
   1.269 +    "int dstr, "            \
   1.270 +    "oil_type_" #srctype " *src, "  \
   1.271 +    "int sstr, int n");     \
   1.272 +OIL_DEFINE_IMPL_REF(clipconv_ ## desttype ## _ ## srctype ## _ref,  \
   1.273 +    clipconv_ ## desttype ## _ ## srctype)
   1.274 +
   1.275 +#define CLIPCONV_DEFINE_UPPER_REF(desttype,srctype) \
   1.276 +static void clipconv_ ## desttype ## _ ## srctype ## _ref ( \
   1.277 +    oil_type_ ## desttype *dest,    \
   1.278 +    int dest_stride,        \
   1.279 +    oil_type_ ## srctype *src,      \
   1.280 +    int src_stride, int n)      \
   1.281 +{                   \
   1.282 +    int i;              \
   1.283 +    oil_type_ ## srctype x;     \
   1.284 +    for(i=0;i<n;i++){       \
   1.285 +        x = OIL_GET(src,i*src_stride, oil_type_ ## srctype);            \
   1.286 +        if(x>oil_type_max_ ## desttype) x=oil_type_max_ ## desttype;    \
   1.287 +        OIL_GET(dest,i*dest_stride, oil_type_ ## desttype) = x;         \
   1.288 +    }               \
   1.289 +}                   \
   1.290 +OIL_DEFINE_CLASS(clipconv_ ## desttype ## _ ## srctype, \
   1.291 +    "oil_type_" #desttype " *dest, "    \
   1.292 +    "int dstr, "            \
   1.293 +    "oil_type_" #srctype " *src, "  \
   1.294 +    "int sstr, int n");     \
   1.295 +OIL_DEFINE_IMPL_REF(clipconv_ ## desttype ## _ ## srctype ## _ref,  \
   1.296 +    clipconv_ ## desttype ## _ ## srctype)
   1.297 +
   1.298 +#define CLIPCONV_DEFINE_LOWER_REF(desttype,srctype) \
   1.299 +static void clipconv_ ## desttype ## _ ## srctype ## _ref ( \
   1.300 +    oil_type_ ## desttype *dest,    \
   1.301 +    int dest_stride,        \
   1.302 +    oil_type_ ## srctype *src,      \
   1.303 +    int src_stride, int n)      \
   1.304 +{                   \
   1.305 +    int i;              \
   1.306 +    oil_type_ ## srctype x;     \
   1.307 +    for(i=0;i<n;i++){       \
   1.308 +        x = OIL_GET(src,i*src_stride, oil_type_ ## srctype);            \
   1.309 +        if(x<oil_type_min_ ## desttype) x=oil_type_min_ ## desttype;    \
   1.310 +        OIL_GET(dest,i*dest_stride, oil_type_ ## desttype) = x;         \
   1.311 +    }               \
   1.312 +}                   \
   1.313 +OIL_DEFINE_CLASS(clipconv_ ## desttype ## _ ## srctype, \
   1.314 +    "oil_type_" #desttype " *dest, "    \
   1.315 +    "int dstr, "            \
   1.316 +    "oil_type_" #srctype " *src, "  \
   1.317 +    "int sstr, int n");     \
   1.318 +OIL_DEFINE_IMPL_REF(clipconv_ ## desttype ## _ ## srctype ## _ref,  \
   1.319 +    clipconv_ ## desttype ## _ ## srctype)
   1.320 +
   1.321 +#define CLIPCONV_DEFINE_FLOAT_REF(desttype,srctype) \
   1.322 +static void clipconv_ ## desttype ## _ ## srctype ## _ref ( \
   1.323 +    oil_type_ ## desttype *dest,    \
   1.324 +    int dest_stride,        \
   1.325 +    oil_type_ ## srctype *src,      \
   1.326 +    int src_stride, int n)      \
   1.327 +{                   \
   1.328 +    int i;              \
   1.329 +    oil_type_ ## srctype x;     \
   1.330 +    for(i=0;i<n;i++){       \
   1.331 +        x = OIL_GET(src,i*src_stride, oil_type_ ## srctype);            \
   1.332 +        if(x<oil_type_min_ ## desttype) x=oil_type_min_ ## desttype;    \
   1.333 +        if(x>oil_type_max_ ## desttype) x=oil_type_max_ ## desttype;    \
   1.334 +        OIL_GET(dest,i*dest_stride, oil_type_ ## desttype) = rint(x);       \
   1.335 +    }               \
   1.336 +}                   \
   1.337 +OIL_DEFINE_CLASS(clipconv_ ## desttype ## _ ## srctype, \
   1.338 +    "oil_type_" #desttype " *dest, "    \
   1.339 +    "int dstr, "            \
   1.340 +    "oil_type_" #srctype " *src, "  \
   1.341 +    "int sstr, int n");     \
   1.342 +OIL_DEFINE_IMPL_REF(clipconv_ ## desttype ## _ ## srctype ## _ref,  \
   1.343 +    clipconv_ ## desttype ## _ ## srctype)
   1.344 +
   1.345 +/* clip upper */
   1.346 +CLIPCONV_DEFINE_UPPER_REF(s8,u8);
   1.347 +CLIPCONV_DEFINE_UPPER_REF(s8,u16);
   1.348 +CLIPCONV_DEFINE_UPPER_REF(s8,u32);
   1.349 +CLIPCONV_DEFINE_UPPER_REF(u8,u32);
   1.350 +CLIPCONV_DEFINE_UPPER_REF(u8,u16);
   1.351 +CLIPCONV_DEFINE_UPPER_REF(s16,u16);
   1.352 +CLIPCONV_DEFINE_UPPER_REF(s16,u32);
   1.353 +CLIPCONV_DEFINE_UPPER_REF(s32,u32);
   1.354 +CLIPCONV_DEFINE_UPPER_REF(u16,u32);
   1.355 +
   1.356 +/* clip both */
   1.357 +CLIPCONV_DEFINE_BOTH_REF(s8,s16);
   1.358 +CLIPCONV_DEFINE_BOTH_REF(s8,s32);
   1.359 +CLIPCONV_DEFINE_BOTH_REF(u8,s16);
   1.360 +CLIPCONV_DEFINE_BOTH_REF(u8,s32);
   1.361 +CLIPCONV_DEFINE_BOTH_REF(s16,s32);
   1.362 +CLIPCONV_DEFINE_BOTH_REF(u16,s32);
   1.363 +
   1.364 +/* clip lower */
   1.365 +CLIPCONV_DEFINE_LOWER_REF(u8,s8);
   1.366 +CLIPCONV_DEFINE_LOWER_REF(u16,s16);
   1.367 +CLIPCONV_DEFINE_LOWER_REF(u32,s32);
   1.368 +
   1.369 +/* clip both, float */
   1.370 +CLIPCONV_DEFINE_FLOAT_REF(s8,f32);
   1.371 +CLIPCONV_DEFINE_FLOAT_REF(s8,f64);
   1.372 +CLIPCONV_DEFINE_FLOAT_REF(u8,f32);
   1.373 +CLIPCONV_DEFINE_FLOAT_REF(u8,f64);
   1.374 +CLIPCONV_DEFINE_FLOAT_REF(s16,f32);
   1.375 +CLIPCONV_DEFINE_FLOAT_REF(s16,f64);
   1.376 +CLIPCONV_DEFINE_FLOAT_REF(u16,f32);
   1.377 +CLIPCONV_DEFINE_FLOAT_REF(u16,f64);
   1.378 +CLIPCONV_DEFINE_FLOAT_REF(s32,f32);
   1.379 +CLIPCONV_DEFINE_FLOAT_REF(s32,f64);
   1.380 +CLIPCONV_DEFINE_FLOAT_REF(u32,f32);
   1.381 +CLIPCONV_DEFINE_FLOAT_REF(u32,f64);
   1.382 +
   1.383 +
   1.384 +
   1.385 +#define SCALECONV_DEFINE_REF_RINT(desttype,srctype) \
   1.386 +static void scaleconv_ ## desttype ## _ ## srctype ## _ref ( \
   1.387 +    oil_type_ ## desttype *dest,    \
   1.388 +    oil_type_ ## srctype *src,      \
   1.389 +    int n, double *offset, double *multiplier) \
   1.390 +{                   \
   1.391 +    int i;              \
   1.392 +        double x;                       \
   1.393 +    for(i=0;i<n;i++){       \
   1.394 +        x = *offset + *multiplier * src[i]; \
   1.395 +        if(x<oil_type_min_ ## desttype) x=oil_type_min_ ## desttype;    \
   1.396 +        if(x>oil_type_max_ ## desttype) x=oil_type_max_ ## desttype;    \
   1.397 +        dest[i] = rint(x);  \
   1.398 +    }               \
   1.399 +}                   \
   1.400 +OIL_DEFINE_CLASS(scaleconv_ ## desttype ## _ ## srctype,    \
   1.401 +    "oil_type_" #desttype " *dest, "    \
   1.402 +    "oil_type_" #srctype " *src, "  \
   1.403 +    "int n, double *s2_1, double *s3_1"); \
   1.404 +OIL_DEFINE_IMPL_REF(scaleconv_ ## desttype ## _ ## srctype ## _ref, \
   1.405 +    scaleconv_ ## desttype ## _ ## srctype)
   1.406 +
   1.407 +#define SCALECONV_DEFINE_REF_CAST(desttype,srctype) \
   1.408 +static void scaleconv_ ## desttype ## _ ## srctype ## _ref ( \
   1.409 +    oil_type_ ## desttype *dest,    \
   1.410 +    oil_type_ ## srctype *src,      \
   1.411 +    int n, double *offset, double *multiplier) \
   1.412 +{                   \
   1.413 +    int i;              \
   1.414 +    for(i=0;i<n;i++){       \
   1.415 +        dest[i] = *offset + *multiplier * src[i];   \
   1.416 +    }               \
   1.417 +}                   \
   1.418 +OIL_DEFINE_CLASS(scaleconv_ ## desttype ## _ ## srctype,    \
   1.419 +    "oil_type_" #desttype " *dest, "    \
   1.420 +    "oil_type_" #srctype " *src, "  \
   1.421 +    "int n, double *s2_1, double *s3_1"); \
   1.422 +OIL_DEFINE_IMPL_REF(scaleconv_ ## desttype ## _ ## srctype ## _ref, \
   1.423 +    scaleconv_ ## desttype ## _ ## srctype)
   1.424 +
   1.425 +SCALECONV_DEFINE_REF_RINT(s8,f32);
   1.426 +SCALECONV_DEFINE_REF_RINT(u8,f32);
   1.427 +SCALECONV_DEFINE_REF_RINT(s16,f32);
   1.428 +SCALECONV_DEFINE_REF_RINT(u16,f32);
   1.429 +SCALECONV_DEFINE_REF_RINT(s32,f32);
   1.430 +SCALECONV_DEFINE_REF_RINT(u32,f32);
   1.431 +
   1.432 +SCALECONV_DEFINE_REF_RINT(s8,f64);
   1.433 +SCALECONV_DEFINE_REF_RINT(u8,f64);
   1.434 +SCALECONV_DEFINE_REF_RINT(s16,f64);
   1.435 +SCALECONV_DEFINE_REF_RINT(u16,f64);
   1.436 +SCALECONV_DEFINE_REF_RINT(s32,f64);
   1.437 +SCALECONV_DEFINE_REF_RINT(u32,f64);
   1.438 +
   1.439 +SCALECONV_DEFINE_REF_CAST(f32,s8);
   1.440 +SCALECONV_DEFINE_REF_CAST(f32,u8);
   1.441 +SCALECONV_DEFINE_REF_CAST(f32,s16);
   1.442 +SCALECONV_DEFINE_REF_CAST(f32,u16);
   1.443 +SCALECONV_DEFINE_REF_CAST(f32,s32);
   1.444 +SCALECONV_DEFINE_REF_CAST(f32,u32);
   1.445 +
   1.446 +SCALECONV_DEFINE_REF_CAST(f64,s8);
   1.447 +SCALECONV_DEFINE_REF_CAST(f64,u8);
   1.448 +SCALECONV_DEFINE_REF_CAST(f64,s16);
   1.449 +SCALECONV_DEFINE_REF_CAST(f64,u16);
   1.450 +SCALECONV_DEFINE_REF_CAST(f64,s32);
   1.451 +SCALECONV_DEFINE_REF_CAST(f64,u32);
   1.452 +
   1.453 +/**
   1.454 + * oil_conv_f32_f64:
   1.455 + * @dest:
   1.456 + * @dstr:
   1.457 + * @src:
   1.458 + * @sstr:
   1.459 + * @n:
   1.460 + * 
   1.461 + * Converts elements in  from the source type
   1.462 + * to the destination type and places the result in .
   1.463 + * Values outside the destination range are undefined
   1.464 + * and implementation dependent.
   1.465 + * See the comments at the beginning of this section.
   1.466 + */
   1.467 +
   1.468 +/**
   1.469 + * oil_conv_f32_s16:
   1.470 + * @dest:
   1.471 + * @dstr:
   1.472 + * @src:
   1.473 + * @sstr:
   1.474 + * @n:
   1.475 + * 
   1.476 + * Converts elements in  from the source type
   1.477 + * to the destination type and places the result in .
   1.478 + * Values outside the destination range are undefined
   1.479 + * and implementation dependent.
   1.480 + * See the comments at the beginning of this section.
   1.481 + */
   1.482 +
   1.483 +/**
   1.484 + * oil_conv_f32_s32:
   1.485 + * @dest:
   1.486 + * @dstr:
   1.487 + * @src:
   1.488 + * @sstr:
   1.489 + * @n:
   1.490 + * 
   1.491 + * Converts elements in  from the source type
   1.492 + * to the destination type and places the result in .
   1.493 + * Values outside the destination range are undefined
   1.494 + * and implementation dependent.
   1.495 + * See the comments at the beginning of this section.
   1.496 + */
   1.497 +
   1.498 +/**
   1.499 + * oil_conv_f32_s8:
   1.500 + * @dest:
   1.501 + * @dstr:
   1.502 + * @src:
   1.503 + * @sstr:
   1.504 + * @n:
   1.505 + * 
   1.506 + * Converts elements in  from the source type
   1.507 + * to the destination type and places the result in .
   1.508 + * Values outside the destination range are undefined
   1.509 + * and implementation dependent.
   1.510 + * See the comments at the beginning of this section.
   1.511 + */
   1.512 +
   1.513 +/**
   1.514 + * oil_conv_f32_u16:
   1.515 + * @dest:
   1.516 + * @dstr:
   1.517 + * @src:
   1.518 + * @sstr:
   1.519 + * @n:
   1.520 + * 
   1.521 + * Converts elements in  from the source type
   1.522 + * to the destination type and places the result in .
   1.523 + * Values outside the destination range are undefined
   1.524 + * and implementation dependent.
   1.525 + * See the comments at the beginning of this section.
   1.526 + */
   1.527 +
   1.528 +/**
   1.529 + * oil_conv_f32_u32:
   1.530 + * @dest:
   1.531 + * @dstr:
   1.532 + * @src:
   1.533 + * @sstr:
   1.534 + * @n:
   1.535 + * 
   1.536 + * Converts elements in  from the source type
   1.537 + * to the destination type and places the result in .
   1.538 + * Values outside the destination range are undefined
   1.539 + * and implementation dependent.
   1.540 + * See the comments at the beginning of this section.
   1.541 + */
   1.542 +
   1.543 +/**
   1.544 + * oil_conv_f32_u8:
   1.545 + * @dest:
   1.546 + * @dstr:
   1.547 + * @src:
   1.548 + * @sstr:
   1.549 + * @n:
   1.550 + * 
   1.551 + * Converts elements in  from the source type
   1.552 + * to the destination type and places the result in .
   1.553 + * Values outside the destination range are undefined
   1.554 + * and implementation dependent.
   1.555 + * See the comments at the beginning of this section.
   1.556 + */
   1.557 +
   1.558 +/**
   1.559 + * oil_conv_f64_f32:
   1.560 + * @dest:
   1.561 + * @dstr:
   1.562 + * @src:
   1.563 + * @sstr:
   1.564 + * @n:
   1.565 + * 
   1.566 + * Converts elements in  from the source type
   1.567 + * to the destination type and places the result in .
   1.568 + * Values outside the destination range are undefined
   1.569 + * and implementation dependent.
   1.570 + * See the comments at the beginning of this section.
   1.571 + */
   1.572 +
   1.573 +/**
   1.574 + * oil_conv_f64_s16:
   1.575 + * @dest:
   1.576 + * @dstr:
   1.577 + * @src:
   1.578 + * @sstr:
   1.579 + * @n:
   1.580 + * 
   1.581 + * Converts elements in  from the source type
   1.582 + * to the destination type and places the result in .
   1.583 + * Values outside the destination range are undefined
   1.584 + * and implementation dependent.
   1.585 + * See the comments at the beginning of this section.
   1.586 + */
   1.587 +
   1.588 +/**
   1.589 + * oil_conv_f64_s32:
   1.590 + * @dest:
   1.591 + * @dstr:
   1.592 + * @src:
   1.593 + * @sstr:
   1.594 + * @n:
   1.595 + * 
   1.596 + * Converts elements in  from the source type
   1.597 + * to the destination type and places the result in .
   1.598 + * Values outside the destination range are undefined
   1.599 + * and implementation dependent.
   1.600 + * See the comments at the beginning of this section.
   1.601 + */
   1.602 +
   1.603 +/**
   1.604 + * oil_conv_f64_s8:
   1.605 + * @dest:
   1.606 + * @dstr:
   1.607 + * @src:
   1.608 + * @sstr:
   1.609 + * @n:
   1.610 + * 
   1.611 + * Converts elements in  from the source type
   1.612 + * to the destination type and places the result in .
   1.613 + * Values outside the destination range are undefined
   1.614 + * and implementation dependent.
   1.615 + * See the comments at the beginning of this section.
   1.616 + */
   1.617 +
   1.618 +/**
   1.619 + * oil_conv_f64_u16:
   1.620 + * @dest:
   1.621 + * @dstr:
   1.622 + * @src:
   1.623 + * @sstr:
   1.624 + * @n:
   1.625 + * 
   1.626 + * Converts elements in  from the source type
   1.627 + * to the destination type and places the result in .
   1.628 + * Values outside the destination range are undefined
   1.629 + * and implementation dependent.
   1.630 + * See the comments at the beginning of this section.
   1.631 + */
   1.632 +
   1.633 +/**
   1.634 + * oil_conv_f64_u32:
   1.635 + * @dest:
   1.636 + * @dstr:
   1.637 + * @src:
   1.638 + * @sstr:
   1.639 + * @n:
   1.640 + * 
   1.641 + * Converts elements in  from the source type
   1.642 + * to the destination type and places the result in .
   1.643 + * Values outside the destination range are undefined
   1.644 + * and implementation dependent.
   1.645 + * See the comments at the beginning of this section.
   1.646 + */
   1.647 +
   1.648 +/**
   1.649 + * oil_conv_f64_u8:
   1.650 + * @dest:
   1.651 + * @dstr:
   1.652 + * @src:
   1.653 + * @sstr:
   1.654 + * @n:
   1.655 + * 
   1.656 + * Converts elements in  from the source type
   1.657 + * to the destination type and places the result in .
   1.658 + * Values outside the destination range are undefined
   1.659 + * and implementation dependent.
   1.660 + * See the comments at the beginning of this section.
   1.661 + */
   1.662 +
   1.663 +/**
   1.664 + * oil_conv_s16_f32:
   1.665 + * @dest:
   1.666 + * @dstr:
   1.667 + * @src:
   1.668 + * @sstr:
   1.669 + * @n:
   1.670 + * 
   1.671 + * Converts elements in  from the source type
   1.672 + * to the destination type and places the result in .
   1.673 + * Values outside the destination range are undefined
   1.674 + * and implementation dependent.
   1.675 + * See the comments at the beginning of this section.
   1.676 + */
   1.677 +
   1.678 +/**
   1.679 + * oil_conv_s16_f64:
   1.680 + * @dest:
   1.681 + * @dstr:
   1.682 + * @src:
   1.683 + * @sstr:
   1.684 + * @n:
   1.685 + * 
   1.686 + * Converts elements in  from the source type
   1.687 + * to the destination type and places the result in .
   1.688 + * Values outside the destination range are undefined
   1.689 + * and implementation dependent.
   1.690 + * See the comments at the beginning of this section.
   1.691 + */
   1.692 +
   1.693 +/**
   1.694 + * oil_conv_s16_s32:
   1.695 + * @dest:
   1.696 + * @dstr:
   1.697 + * @src:
   1.698 + * @sstr:
   1.699 + * @n:
   1.700 + * 
   1.701 + * Converts elements in  from the source type
   1.702 + * to the destination type and places the result in .
   1.703 + * Values outside the destination range are undefined
   1.704 + * and implementation dependent.
   1.705 + * See the comments at the beginning of this section.
   1.706 + */
   1.707 +
   1.708 +/**
   1.709 + * oil_conv_s16_s8:
   1.710 + * @dest:
   1.711 + * @dstr:
   1.712 + * @src:
   1.713 + * @sstr:
   1.714 + * @n:
   1.715 + * 
   1.716 + * Converts elements in  from the source type
   1.717 + * to the destination type and places the result in .
   1.718 + * Values outside the destination range are undefined
   1.719 + * and implementation dependent.
   1.720 + * See the comments at the beginning of this section.
   1.721 + */
   1.722 +
   1.723 +/**
   1.724 + * oil_conv_s16_u16:
   1.725 + * @dest:
   1.726 + * @dstr:
   1.727 + * @src:
   1.728 + * @sstr:
   1.729 + * @n:
   1.730 + * 
   1.731 + * Converts elements in  from the source type
   1.732 + * to the destination type and places the result in .
   1.733 + * Values outside the destination range are undefined
   1.734 + * and implementation dependent.
   1.735 + * See the comments at the beginning of this section.
   1.736 + */
   1.737 +
   1.738 +/**
   1.739 + * oil_conv_s16_u32:
   1.740 + * @dest:
   1.741 + * @dstr:
   1.742 + * @src:
   1.743 + * @sstr:
   1.744 + * @n:
   1.745 + * 
   1.746 + * Converts elements in  from the source type
   1.747 + * to the destination type and places the result in .
   1.748 + * Values outside the destination range are undefined
   1.749 + * and implementation dependent.
   1.750 + * See the comments at the beginning of this section.
   1.751 + */
   1.752 +
   1.753 +/**
   1.754 + * oil_conv_s16_u8:
   1.755 + * @dest:
   1.756 + * @dstr:
   1.757 + * @src:
   1.758 + * @sstr:
   1.759 + * @n:
   1.760 + * 
   1.761 + * Converts elements in  from the source type
   1.762 + * to the destination type and places the result in .
   1.763 + * Values outside the destination range are undefined
   1.764 + * and implementation dependent.
   1.765 + * See the comments at the beginning of this section.
   1.766 + */
   1.767 +
   1.768 +/**
   1.769 + * oil_conv_s32_f32:
   1.770 + * @dest:
   1.771 + * @dstr:
   1.772 + * @src:
   1.773 + * @sstr:
   1.774 + * @n:
   1.775 + * 
   1.776 + * Converts elements in  from the source type
   1.777 + * to the destination type and places the result in .
   1.778 + * Values outside the destination range are undefined
   1.779 + * and implementation dependent.
   1.780 + * See the comments at the beginning of this section.
   1.781 + */
   1.782 +
   1.783 +/**
   1.784 + * oil_conv_s32_f64:
   1.785 + * @dest:
   1.786 + * @dstr:
   1.787 + * @src:
   1.788 + * @sstr:
   1.789 + * @n:
   1.790 + * 
   1.791 + * Converts elements in  from the source type
   1.792 + * to the destination type and places the result in .
   1.793 + * Values outside the destination range are undefined
   1.794 + * and implementation dependent.
   1.795 + * See the comments at the beginning of this section.
   1.796 + */
   1.797 +
   1.798 +/**
   1.799 + * oil_conv_s32_s16:
   1.800 + * @dest:
   1.801 + * @dstr:
   1.802 + * @src:
   1.803 + * @sstr:
   1.804 + * @n:
   1.805 + * 
   1.806 + * Converts elements in  from the source type
   1.807 + * to the destination type and places the result in .
   1.808 + * Values outside the destination range are undefined
   1.809 + * and implementation dependent.
   1.810 + * See the comments at the beginning of this section.
   1.811 + */
   1.812 +
   1.813 +/**
   1.814 + * oil_conv_s32_s8:
   1.815 + * @dest:
   1.816 + * @dstr:
   1.817 + * @src:
   1.818 + * @sstr:
   1.819 + * @n:
   1.820 + * 
   1.821 + * Converts elements in  from the source type
   1.822 + * to the destination type and places the result in .
   1.823 + * Values outside the destination range are undefined
   1.824 + * and implementation dependent.
   1.825 + * See the comments at the beginning of this section.
   1.826 + */
   1.827 +
   1.828 +/**
   1.829 + * oil_conv_s32_u16:
   1.830 + * @dest:
   1.831 + * @dstr:
   1.832 + * @src:
   1.833 + * @sstr:
   1.834 + * @n:
   1.835 + * 
   1.836 + * Converts elements in  from the source type
   1.837 + * to the destination type and places the result in .
   1.838 + * Values outside the destination range are undefined
   1.839 + * and implementation dependent.
   1.840 + * See the comments at the beginning of this section.
   1.841 + */
   1.842 +
   1.843 +/**
   1.844 + * oil_conv_s32_u32:
   1.845 + * @dest:
   1.846 + * @dstr:
   1.847 + * @src:
   1.848 + * @sstr:
   1.849 + * @n:
   1.850 + * 
   1.851 + * Converts elements in  from the source type
   1.852 + * to the destination type and places the result in .
   1.853 + * Values outside the destination range are undefined
   1.854 + * and implementation dependent.
   1.855 + * See the comments at the beginning of this section.
   1.856 + */
   1.857 +
   1.858 +/**
   1.859 + * oil_conv_s32_u8:
   1.860 + * @dest:
   1.861 + * @dstr:
   1.862 + * @src:
   1.863 + * @sstr:
   1.864 + * @n:
   1.865 + * 
   1.866 + * Converts elements in  from the source type
   1.867 + * to the destination type and places the result in .
   1.868 + * Values outside the destination range are undefined
   1.869 + * and implementation dependent.
   1.870 + * See the comments at the beginning of this section.
   1.871 + */
   1.872 +
   1.873 +/**
   1.874 + * oil_conv_s8_f32:
   1.875 + * @dest:
   1.876 + * @dstr:
   1.877 + * @src:
   1.878 + * @sstr:
   1.879 + * @n:
   1.880 + * 
   1.881 + * Converts elements in  from the source type
   1.882 + * to the destination type and places the result in .
   1.883 + * Values outside the destination range are undefined
   1.884 + * and implementation dependent.
   1.885 + * See the comments at the beginning of this section.
   1.886 + */
   1.887 +
   1.888 +/**
   1.889 + * oil_conv_s8_f64:
   1.890 + * @dest:
   1.891 + * @dstr:
   1.892 + * @src:
   1.893 + * @sstr:
   1.894 + * @n:
   1.895 + * 
   1.896 + * Converts elements in  from the source type
   1.897 + * to the destination type and places the result in .
   1.898 + * Values outside the destination range are undefined
   1.899 + * and implementation dependent.
   1.900 + * See the comments at the beginning of this section.
   1.901 + */
   1.902 +
   1.903 +/**
   1.904 + * oil_conv_s8_s16:
   1.905 + * @dest:
   1.906 + * @dstr:
   1.907 + * @src:
   1.908 + * @sstr:
   1.909 + * @n:
   1.910 + * 
   1.911 + * Converts elements in  from the source type
   1.912 + * to the destination type and places the result in .
   1.913 + * Values outside the destination range are undefined
   1.914 + * and implementation dependent.
   1.915 + * See the comments at the beginning of this section.
   1.916 + */
   1.917 +
   1.918 +/**
   1.919 + * oil_conv_s8_s32:
   1.920 + * @dest:
   1.921 + * @dstr:
   1.922 + * @src:
   1.923 + * @sstr:
   1.924 + * @n:
   1.925 + * 
   1.926 + * Converts elements in  from the source type
   1.927 + * to the destination type and places the result in .
   1.928 + * Values outside the destination range are undefined
   1.929 + * and implementation dependent.
   1.930 + * See the comments at the beginning of this section.
   1.931 + */
   1.932 +
   1.933 +/**
   1.934 + * oil_conv_s8_u16:
   1.935 + * @dest:
   1.936 + * @dstr:
   1.937 + * @src:
   1.938 + * @sstr:
   1.939 + * @n:
   1.940 + * 
   1.941 + * Converts elements in  from the source type
   1.942 + * to the destination type and places the result in .
   1.943 + * Values outside the destination range are undefined
   1.944 + * and implementation dependent.
   1.945 + * See the comments at the beginning of this section.
   1.946 + */
   1.947 +
   1.948 +/**
   1.949 + * oil_conv_s8_u32:
   1.950 + * @dest:
   1.951 + * @dstr:
   1.952 + * @src:
   1.953 + * @sstr:
   1.954 + * @n:
   1.955 + * 
   1.956 + * Converts elements in  from the source type
   1.957 + * to the destination type and places the result in .
   1.958 + * Values outside the destination range are undefined
   1.959 + * and implementation dependent.
   1.960 + * See the comments at the beginning of this section.
   1.961 + */
   1.962 +
   1.963 +/**
   1.964 + * oil_conv_s8_u8:
   1.965 + * @dest:
   1.966 + * @dstr:
   1.967 + * @src:
   1.968 + * @sstr:
   1.969 + * @n:
   1.970 + * 
   1.971 + * Converts elements in  from the source type
   1.972 + * to the destination type and places the result in .
   1.973 + * Values outside the destination range are undefined
   1.974 + * and implementation dependent.
   1.975 + * See the comments at the beginning of this section.
   1.976 + */
   1.977 +
   1.978 +/**
   1.979 + * oil_conv_u16_f32:
   1.980 + * @dest:
   1.981 + * @dstr:
   1.982 + * @src:
   1.983 + * @sstr:
   1.984 + * @n:
   1.985 + * 
   1.986 + * Converts elements in  from the source type
   1.987 + * to the destination type and places the result in .
   1.988 + * Values outside the destination range are undefined
   1.989 + * and implementation dependent.
   1.990 + * See the comments at the beginning of this section.
   1.991 + */
   1.992 +
   1.993 +/**
   1.994 + * oil_conv_u16_f64:
   1.995 + * @dest:
   1.996 + * @dstr:
   1.997 + * @src:
   1.998 + * @sstr:
   1.999 + * @n:
  1.1000 + * 
  1.1001 + * Converts elements in  from the source type
  1.1002 + * to the destination type and places the result in .
  1.1003 + * Values outside the destination range are undefined
  1.1004 + * and implementation dependent.
  1.1005 + * See the comments at the beginning of this section.
  1.1006 + */
  1.1007 +
  1.1008 +/**
  1.1009 + * oil_conv_u16_s16:
  1.1010 + * @dest:
  1.1011 + * @dstr:
  1.1012 + * @src:
  1.1013 + * @sstr:
  1.1014 + * @n:
  1.1015 + * 
  1.1016 + * Converts elements in  from the source type
  1.1017 + * to the destination type and places the result in .
  1.1018 + * Values outside the destination range are undefined
  1.1019 + * and implementation dependent.
  1.1020 + * See the comments at the beginning of this section.
  1.1021 + */
  1.1022 +
  1.1023 +/**
  1.1024 + * oil_conv_u16_s32:
  1.1025 + * @dest:
  1.1026 + * @dstr:
  1.1027 + * @src:
  1.1028 + * @sstr:
  1.1029 + * @n:
  1.1030 + * 
  1.1031 + * Converts elements in  from the source type
  1.1032 + * to the destination type and places the result in .
  1.1033 + * Values outside the destination range are undefined
  1.1034 + * and implementation dependent.
  1.1035 + * See the comments at the beginning of this section.
  1.1036 + */
  1.1037 +
  1.1038 +/**
  1.1039 + * oil_conv_u16_s8:
  1.1040 + * @dest:
  1.1041 + * @dstr:
  1.1042 + * @src:
  1.1043 + * @sstr:
  1.1044 + * @n:
  1.1045 + * 
  1.1046 + * Converts elements in  from the source type
  1.1047 + * to the destination type and places the result in .
  1.1048 + * Values outside the destination range are undefined
  1.1049 + * and implementation dependent.
  1.1050 + * See the comments at the beginning of this section.
  1.1051 + */
  1.1052 +
  1.1053 +/**
  1.1054 + * oil_conv_u16_u32:
  1.1055 + * @dest:
  1.1056 + * @dstr:
  1.1057 + * @src:
  1.1058 + * @sstr:
  1.1059 + * @n:
  1.1060 + * 
  1.1061 + * Converts elements in  from the source type
  1.1062 + * to the destination type and places the result in .
  1.1063 + * Values outside the destination range are undefined
  1.1064 + * and implementation dependent.
  1.1065 + * See the comments at the beginning of this section.
  1.1066 + */
  1.1067 +
  1.1068 +/**
  1.1069 + * oil_conv_u16_u8:
  1.1070 + * @dest:
  1.1071 + * @dstr:
  1.1072 + * @src:
  1.1073 + * @sstr:
  1.1074 + * @n:
  1.1075 + * 
  1.1076 + * Converts elements in  from the source type
  1.1077 + * to the destination type and places the result in .
  1.1078 + * Values outside the destination range are undefined
  1.1079 + * and implementation dependent.
  1.1080 + * See the comments at the beginning of this section.
  1.1081 + */
  1.1082 +
  1.1083 +/**
  1.1084 + * oil_conv_u32_f32:
  1.1085 + * @dest:
  1.1086 + * @dstr:
  1.1087 + * @src:
  1.1088 + * @sstr:
  1.1089 + * @n:
  1.1090 + * 
  1.1091 + * Converts elements in  from the source type
  1.1092 + * to the destination type and places the result in .
  1.1093 + * Values outside the destination range are undefined
  1.1094 + * and implementation dependent.
  1.1095 + * See the comments at the beginning of this section.
  1.1096 + */
  1.1097 +
  1.1098 +/**
  1.1099 + * oil_conv_u32_f64:
  1.1100 + * @dest:
  1.1101 + * @dstr:
  1.1102 + * @src:
  1.1103 + * @sstr:
  1.1104 + * @n:
  1.1105 + * 
  1.1106 + * Converts elements in  from the source type
  1.1107 + * to the destination type and places the result in .
  1.1108 + * Values outside the destination range are undefined
  1.1109 + * and implementation dependent.
  1.1110 + * See the comments at the beginning of this section.
  1.1111 + */
  1.1112 +
  1.1113 +/**
  1.1114 + * oil_conv_u32_s16:
  1.1115 + * @dest:
  1.1116 + * @dstr:
  1.1117 + * @src:
  1.1118 + * @sstr:
  1.1119 + * @n:
  1.1120 + * 
  1.1121 + * Converts elements in  from the source type
  1.1122 + * to the destination type and places the result in .
  1.1123 + * Values outside the destination range are undefined
  1.1124 + * and implementation dependent.
  1.1125 + * See the comments at the beginning of this section.
  1.1126 + */
  1.1127 +
  1.1128 +/**
  1.1129 + * oil_conv_u32_s32:
  1.1130 + * @dest:
  1.1131 + * @dstr:
  1.1132 + * @src:
  1.1133 + * @sstr:
  1.1134 + * @n:
  1.1135 + * 
  1.1136 + * Converts elements in  from the source type
  1.1137 + * to the destination type and places the result in .
  1.1138 + * Values outside the destination range are undefined
  1.1139 + * and implementation dependent.
  1.1140 + * See the comments at the beginning of this section.
  1.1141 + */
  1.1142 +
  1.1143 +/**
  1.1144 + * oil_conv_u32_s8:
  1.1145 + * @dest:
  1.1146 + * @dstr:
  1.1147 + * @src:
  1.1148 + * @sstr:
  1.1149 + * @n:
  1.1150 + * 
  1.1151 + * Converts elements in  from the source type
  1.1152 + * to the destination type and places the result in .
  1.1153 + * Values outside the destination range are undefined
  1.1154 + * and implementation dependent.
  1.1155 + * See the comments at the beginning of this section.
  1.1156 + */
  1.1157 +
  1.1158 +/**
  1.1159 + * oil_conv_u32_u16:
  1.1160 + * @dest:
  1.1161 + * @dstr:
  1.1162 + * @src:
  1.1163 + * @sstr:
  1.1164 + * @n:
  1.1165 + * 
  1.1166 + * Converts elements in  from the source type
  1.1167 + * to the destination type and places the result in .
  1.1168 + * Values outside the destination range are undefined
  1.1169 + * and implementation dependent.
  1.1170 + * See the comments at the beginning of this section.
  1.1171 + */
  1.1172 +
  1.1173 +/**
  1.1174 + * oil_conv_u32_u8:
  1.1175 + * @dest:
  1.1176 + * @dstr:
  1.1177 + * @src:
  1.1178 + * @sstr:
  1.1179 + * @n:
  1.1180 + * 
  1.1181 + * Converts elements in  from the source type
  1.1182 + * to the destination type and places the result in .
  1.1183 + * Values outside the destination range are undefined
  1.1184 + * and implementation dependent.
  1.1185 + * See the comments at the beginning of this section.
  1.1186 + */
  1.1187 +
  1.1188 +/**
  1.1189 + * oil_conv_u8_f32:
  1.1190 + * @dest:
  1.1191 + * @dstr:
  1.1192 + * @src:
  1.1193 + * @sstr:
  1.1194 + * @n:
  1.1195 + * 
  1.1196 + * Converts elements in  from the source type
  1.1197 + * to the destination type and places the result in .
  1.1198 + * Values outside the destination range are undefined
  1.1199 + * and implementation dependent.
  1.1200 + * See the comments at the beginning of this section.
  1.1201 + */
  1.1202 +
  1.1203 +/**
  1.1204 + * oil_conv_u8_f64:
  1.1205 + * @dest:
  1.1206 + * @dstr:
  1.1207 + * @src:
  1.1208 + * @sstr:
  1.1209 + * @n:
  1.1210 + * 
  1.1211 + * Converts elements in  from the source type
  1.1212 + * to the destination type and places the result in .
  1.1213 + * Values outside the destination range are undefined
  1.1214 + * and implementation dependent.
  1.1215 + * See the comments at the beginning of this section.
  1.1216 + */
  1.1217 +
  1.1218 +/**
  1.1219 + * oil_conv_u8_s16:
  1.1220 + * @dest:
  1.1221 + * @dstr:
  1.1222 + * @src:
  1.1223 + * @sstr:
  1.1224 + * @n:
  1.1225 + * 
  1.1226 + * Converts elements in  from the source type
  1.1227 + * to the destination type and places the result in .
  1.1228 + * Values outside the destination range are undefined
  1.1229 + * and implementation dependent.
  1.1230 + * See the comments at the beginning of this section.
  1.1231 + */
  1.1232 +
  1.1233 +/**
  1.1234 + * oil_conv_u8_s32:
  1.1235 + * @dest:
  1.1236 + * @dstr:
  1.1237 + * @src:
  1.1238 + * @sstr:
  1.1239 + * @n:
  1.1240 + * 
  1.1241 + * Converts elements in  from the source type
  1.1242 + * to the destination type and places the result in .
  1.1243 + * Values outside the destination range are undefined
  1.1244 + * and implementation dependent.
  1.1245 + * See the comments at the beginning of this section.
  1.1246 + */
  1.1247 +
  1.1248 +/**
  1.1249 + * oil_conv_u8_s8:
  1.1250 + * @dest:
  1.1251 + * @dstr:
  1.1252 + * @src:
  1.1253 + * @sstr:
  1.1254 + * @n:
  1.1255 + * 
  1.1256 + * Converts elements in  from the source type
  1.1257 + * to the destination type and places the result in .
  1.1258 + * Values outside the destination range are undefined
  1.1259 + * and implementation dependent.
  1.1260 + * See the comments at the beginning of this section.
  1.1261 + */
  1.1262 +
  1.1263 +/**
  1.1264 + * oil_conv_u8_u16:
  1.1265 + * @dest:
  1.1266 + * @dstr:
  1.1267 + * @src:
  1.1268 + * @sstr:
  1.1269 + * @n:
  1.1270 + * 
  1.1271 + * Converts elements in  from the source type
  1.1272 + * to the destination type and places the result in .
  1.1273 + * Values outside the destination range are undefined
  1.1274 + * and implementation dependent.
  1.1275 + * See the comments at the beginning of this section.
  1.1276 + */
  1.1277 +
  1.1278 +/**
  1.1279 + * oil_conv_u8_u32:
  1.1280 + * @dest:
  1.1281 + * @dstr:
  1.1282 + * @src:
  1.1283 + * @sstr:
  1.1284 + * @n:
  1.1285 + * 
  1.1286 + * Converts elements in  from the source type
  1.1287 + * to the destination type and places the result in .
  1.1288 + * Values outside the destination range are undefined
  1.1289 + * and implementation dependent.
  1.1290 + * See the comments at the beginning of this section.
  1.1291 + */
  1.1292 +
  1.1293 +/**
  1.1294 + * oil_clipconv_s16_f32:
  1.1295 + * @dest:
  1.1296 + * @dstr:
  1.1297 + * @src:
  1.1298 + * @sstr:
  1.1299 + * @n:
  1.1300 + * 
  1.1301 + * Converts elements in  from the source type
  1.1302 + * to the destination type and places the result in .
  1.1303 + * Values outside the destination range are clipped to
  1.1304 + * the destination range.
  1.1305 + * See the comments at the beginning of this section.
  1.1306 + */
  1.1307 +
  1.1308 +/**
  1.1309 + * oil_clipconv_s16_f64:
  1.1310 + * @dest:
  1.1311 + * @dstr:
  1.1312 + * @src:
  1.1313 + * @sstr:
  1.1314 + * @n:
  1.1315 + * 
  1.1316 + * Converts elements in  from the source type
  1.1317 + * to the destination type and places the result in .
  1.1318 + * Values outside the destination range are clipped to
  1.1319 + * the destination range.
  1.1320 + * See the comments at the beginning of this section.
  1.1321 + */
  1.1322 +
  1.1323 +/**
  1.1324 + * oil_clipconv_s16_s32:
  1.1325 + * @dest:
  1.1326 + * @dstr:
  1.1327 + * @src:
  1.1328 + * @sstr:
  1.1329 + * @n:
  1.1330 + * 
  1.1331 + * Converts elements in  from the source type
  1.1332 + * to the destination type and places the result in .
  1.1333 + * Values outside the destination range are clipped to
  1.1334 + * the destination range.
  1.1335 + * See the comments at the beginning of this section.
  1.1336 + */
  1.1337 +
  1.1338 +/**
  1.1339 + * oil_clipconv_s16_u16:
  1.1340 + * @dest:
  1.1341 + * @dstr:
  1.1342 + * @src:
  1.1343 + * @sstr:
  1.1344 + * @n:
  1.1345 + * 
  1.1346 + * Converts elements in  from the source type
  1.1347 + * to the destination type and places the result in .
  1.1348 + * Values outside the destination range are clipped to
  1.1349 + * the destination range.
  1.1350 + * See the comments at the beginning of this section.
  1.1351 + */
  1.1352 +
  1.1353 +/**
  1.1354 + * oil_clipconv_s16_u32:
  1.1355 + * @dest:
  1.1356 + * @dstr:
  1.1357 + * @src:
  1.1358 + * @sstr:
  1.1359 + * @n:
  1.1360 + * 
  1.1361 + * Converts elements in  from the source type
  1.1362 + * to the destination type and places the result in .
  1.1363 + * Values outside the destination range are clipped to
  1.1364 + * the destination range.
  1.1365 + * See the comments at the beginning of this section.
  1.1366 + */
  1.1367 +
  1.1368 +/**
  1.1369 + * oil_clipconv_s32_f32:
  1.1370 + * @dest:
  1.1371 + * @dstr:
  1.1372 + * @src:
  1.1373 + * @sstr:
  1.1374 + * @n:
  1.1375 + * 
  1.1376 + * Converts elements in  from the source type
  1.1377 + * to the destination type and places the result in .
  1.1378 + * Values outside the destination range are clipped to
  1.1379 + * the destination range.
  1.1380 + * See the comments at the beginning of this section.
  1.1381 + */
  1.1382 +
  1.1383 +/**
  1.1384 + * oil_clipconv_s32_f64:
  1.1385 + * @dest:
  1.1386 + * @dstr:
  1.1387 + * @src:
  1.1388 + * @sstr:
  1.1389 + * @n:
  1.1390 + * 
  1.1391 + * Converts elements in  from the source type
  1.1392 + * to the destination type and places the result in .
  1.1393 + * Values outside the destination range are clipped to
  1.1394 + * the destination range.
  1.1395 + * See the comments at the beginning of this section.
  1.1396 + */
  1.1397 +
  1.1398 +/**
  1.1399 + * oil_clipconv_s32_u32:
  1.1400 + * @dest:
  1.1401 + * @dstr:
  1.1402 + * @src:
  1.1403 + * @sstr:
  1.1404 + * @n:
  1.1405 + * 
  1.1406 + * Converts elements in  from the source type
  1.1407 + * to the destination type and places the result in .
  1.1408 + * Values outside the destination range are clipped to
  1.1409 + * the destination range.
  1.1410 + * See the comments at the beginning of this section.
  1.1411 + */
  1.1412 +
  1.1413 +/**
  1.1414 + * oil_clipconv_s8_f32:
  1.1415 + * @dest:
  1.1416 + * @dstr:
  1.1417 + * @src:
  1.1418 + * @sstr:
  1.1419 + * @n:
  1.1420 + * 
  1.1421 + * Converts elements in  from the source type
  1.1422 + * to the destination type and places the result in .
  1.1423 + * Values outside the destination range are clipped to
  1.1424 + * the destination range.
  1.1425 + * See the comments at the beginning of this section.
  1.1426 + */
  1.1427 +
  1.1428 +/**
  1.1429 + * oil_clipconv_s8_f64:
  1.1430 + * @dest:
  1.1431 + * @dstr:
  1.1432 + * @src:
  1.1433 + * @sstr:
  1.1434 + * @n:
  1.1435 + * 
  1.1436 + * Converts elements in  from the source type
  1.1437 + * to the destination type and places the result in .
  1.1438 + * Values outside the destination range are clipped to
  1.1439 + * the destination range.
  1.1440 + * See the comments at the beginning of this section.
  1.1441 + */
  1.1442 +
  1.1443 +/**
  1.1444 + * oil_clipconv_s8_s16:
  1.1445 + * @dest:
  1.1446 + * @dstr:
  1.1447 + * @src:
  1.1448 + * @sstr:
  1.1449 + * @n:
  1.1450 + * 
  1.1451 + * Converts elements in  from the source type
  1.1452 + * to the destination type and places the result in .
  1.1453 + * Values outside the destination range are clipped to
  1.1454 + * the destination range.
  1.1455 + * See the comments at the beginning of this section.
  1.1456 + */
  1.1457 +
  1.1458 +/**
  1.1459 + * oil_clipconv_s8_s32:
  1.1460 + * @dest:
  1.1461 + * @dstr:
  1.1462 + * @src:
  1.1463 + * @sstr:
  1.1464 + * @n:
  1.1465 + * 
  1.1466 + * Converts elements in  from the source type
  1.1467 + * to the destination type and places the result in .
  1.1468 + * Values outside the destination range are clipped to
  1.1469 + * the destination range.
  1.1470 + * See the comments at the beginning of this section.
  1.1471 + */
  1.1472 +
  1.1473 +/**
  1.1474 + * oil_clipconv_s8_u16:
  1.1475 + * @dest:
  1.1476 + * @dstr:
  1.1477 + * @src:
  1.1478 + * @sstr:
  1.1479 + * @n:
  1.1480 + * 
  1.1481 + * Converts elements in  from the source type
  1.1482 + * to the destination type and places the result in .
  1.1483 + * Values outside the destination range are clipped to
  1.1484 + * the destination range.
  1.1485 + * See the comments at the beginning of this section.
  1.1486 + */
  1.1487 +
  1.1488 +/**
  1.1489 + * oil_clipconv_s8_u32:
  1.1490 + * @dest:
  1.1491 + * @dstr:
  1.1492 + * @src:
  1.1493 + * @sstr:
  1.1494 + * @n:
  1.1495 + * 
  1.1496 + * Converts elements in  from the source type
  1.1497 + * to the destination type and places the result in .
  1.1498 + * Values outside the destination range are clipped to
  1.1499 + * the destination range.
  1.1500 + * See the comments at the beginning of this section.
  1.1501 + */
  1.1502 +
  1.1503 +/**
  1.1504 + * oil_clipconv_s8_u8:
  1.1505 + * @dest:
  1.1506 + * @dstr:
  1.1507 + * @src:
  1.1508 + * @sstr:
  1.1509 + * @n:
  1.1510 + * 
  1.1511 + * Converts elements in  from the source type
  1.1512 + * to the destination type and places the result in .
  1.1513 + * Values outside the destination range are clipped to
  1.1514 + * the destination range.
  1.1515 + * See the comments at the beginning of this section.
  1.1516 + */
  1.1517 +
  1.1518 +/**
  1.1519 + * oil_clipconv_u16_f32:
  1.1520 + * @dest:
  1.1521 + * @dstr:
  1.1522 + * @src:
  1.1523 + * @sstr:
  1.1524 + * @n:
  1.1525 + * 
  1.1526 + * Converts elements in  from the source type
  1.1527 + * to the destination type and places the result in .
  1.1528 + * Values outside the destination range are clipped to
  1.1529 + * the destination range.
  1.1530 + * See the comments at the beginning of this section.
  1.1531 + */
  1.1532 +
  1.1533 +/**
  1.1534 + * oil_clipconv_u16_f64:
  1.1535 + * @dest:
  1.1536 + * @dstr:
  1.1537 + * @src:
  1.1538 + * @sstr:
  1.1539 + * @n:
  1.1540 + * 
  1.1541 + * Converts elements in  from the source type
  1.1542 + * to the destination type and places the result in .
  1.1543 + * Values outside the destination range are clipped to
  1.1544 + * the destination range.
  1.1545 + * See the comments at the beginning of this section.
  1.1546 + */
  1.1547 +
  1.1548 +/**
  1.1549 + * oil_clipconv_u16_s16:
  1.1550 + * @dest:
  1.1551 + * @dstr:
  1.1552 + * @src:
  1.1553 + * @sstr:
  1.1554 + * @n:
  1.1555 + * 
  1.1556 + * Converts elements in  from the source type
  1.1557 + * to the destination type and places the result in .
  1.1558 + * Values outside the destination range are clipped to
  1.1559 + * the destination range.
  1.1560 + * See the comments at the beginning of this section.
  1.1561 + */
  1.1562 +
  1.1563 +/**
  1.1564 + * oil_clipconv_u16_s32:
  1.1565 + * @dest:
  1.1566 + * @dstr:
  1.1567 + * @src:
  1.1568 + * @sstr:
  1.1569 + * @n:
  1.1570 + * 
  1.1571 + * Converts elements in  from the source type
  1.1572 + * to the destination type and places the result in .
  1.1573 + * Values outside the destination range are clipped to
  1.1574 + * the destination range.
  1.1575 + * See the comments at the beginning of this section.
  1.1576 + */
  1.1577 +
  1.1578 +/**
  1.1579 + * oil_clipconv_u16_u32:
  1.1580 + * @dest:
  1.1581 + * @dstr:
  1.1582 + * @src:
  1.1583 + * @sstr:
  1.1584 + * @n:
  1.1585 + * 
  1.1586 + * Converts elements in  from the source type
  1.1587 + * to the destination type and places the result in .
  1.1588 + * Values outside the destination range are clipped to
  1.1589 + * the destination range.
  1.1590 + * See the comments at the beginning of this section.
  1.1591 + */
  1.1592 +
  1.1593 +/**
  1.1594 + * oil_clipconv_u32_f32:
  1.1595 + * @dest:
  1.1596 + * @dstr:
  1.1597 + * @src:
  1.1598 + * @sstr:
  1.1599 + * @n:
  1.1600 + * 
  1.1601 + * Converts elements in  from the source type
  1.1602 + * to the destination type and places the result in .
  1.1603 + * Values outside the destination range are clipped to
  1.1604 + * the destination range.
  1.1605 + * See the comments at the beginning of this section.
  1.1606 + */
  1.1607 +
  1.1608 +/**
  1.1609 + * oil_clipconv_u32_f64:
  1.1610 + * @dest:
  1.1611 + * @dstr:
  1.1612 + * @src:
  1.1613 + * @sstr:
  1.1614 + * @n:
  1.1615 + * 
  1.1616 + * Converts elements in  from the source type
  1.1617 + * to the destination type and places the result in .
  1.1618 + * Values outside the destination range are clipped to
  1.1619 + * the destination range.
  1.1620 + * See the comments at the beginning of this section.
  1.1621 + */
  1.1622 +
  1.1623 +/**
  1.1624 + * oil_clipconv_u32_s32:
  1.1625 + * @dest:
  1.1626 + * @dstr:
  1.1627 + * @src:
  1.1628 + * @sstr:
  1.1629 + * @n:
  1.1630 + * 
  1.1631 + * Converts elements in  from the source type
  1.1632 + * to the destination type and places the result in .
  1.1633 + * Values outside the destination range are clipped to
  1.1634 + * the destination range.
  1.1635 + * See the comments at the beginning of this section.
  1.1636 + */
  1.1637 +
  1.1638 +/**
  1.1639 + * oil_clipconv_u8_f32:
  1.1640 + * @dest:
  1.1641 + * @dstr:
  1.1642 + * @src:
  1.1643 + * @sstr:
  1.1644 + * @n:
  1.1645 + * 
  1.1646 + * Converts elements in  from the source type
  1.1647 + * to the destination type and places the result in .
  1.1648 + * Values outside the destination range are clipped to
  1.1649 + * the destination range.
  1.1650 + * See the comments at the beginning of this section.
  1.1651 + */
  1.1652 +
  1.1653 +/**
  1.1654 + * oil_clipconv_u8_f64:
  1.1655 + * @dest:
  1.1656 + * @dstr:
  1.1657 + * @src:
  1.1658 + * @sstr:
  1.1659 + * @n:
  1.1660 + * 
  1.1661 + * Converts elements in  from the source type
  1.1662 + * to the destination type and places the result in .
  1.1663 + * Values outside the destination range are clipped to
  1.1664 + * the destination range.
  1.1665 + * See the comments at the beginning of this section.
  1.1666 + */
  1.1667 +
  1.1668 +/**
  1.1669 + * oil_clipconv_u8_s16:
  1.1670 + * @dest:
  1.1671 + * @dstr:
  1.1672 + * @src:
  1.1673 + * @sstr:
  1.1674 + * @n:
  1.1675 + * 
  1.1676 + * Converts elements in  from the source type
  1.1677 + * to the destination type and places the result in .
  1.1678 + * Values outside the destination range are clipped to
  1.1679 + * the destination range.
  1.1680 + * See the comments at the beginning of this section.
  1.1681 + */
  1.1682 +
  1.1683 +/**
  1.1684 + * oil_clipconv_u8_s32:
  1.1685 + * @dest:
  1.1686 + * @dstr:
  1.1687 + * @src:
  1.1688 + * @sstr:
  1.1689 + * @n:
  1.1690 + * 
  1.1691 + * Converts elements in  from the source type
  1.1692 + * to the destination type and places the result in .
  1.1693 + * Values outside the destination range are clipped to
  1.1694 + * the destination range.
  1.1695 + * See the comments at the beginning of this section.
  1.1696 + */
  1.1697 +
  1.1698 +/**
  1.1699 + * oil_clipconv_u8_s8:
  1.1700 + * @dest:
  1.1701 + * @dstr:
  1.1702 + * @src:
  1.1703 + * @sstr:
  1.1704 + * @n:
  1.1705 + * 
  1.1706 + * Converts elements in  from the source type
  1.1707 + * to the destination type and places the result in .
  1.1708 + * Values outside the destination range are clipped to
  1.1709 + * the destination range.
  1.1710 + * See the comments at the beginning of this section.
  1.1711 + */
  1.1712 +
  1.1713 +/**
  1.1714 + * oil_clipconv_u8_u16:
  1.1715 + * @dest:
  1.1716 + * @dstr:
  1.1717 + * @src:
  1.1718 + * @sstr:
  1.1719 + * @n:
  1.1720 + * 
  1.1721 + * Converts elements in  from the source type
  1.1722 + * to the destination type and places the result in .
  1.1723 + * Values outside the destination range are clipped to
  1.1724 + * the destination range.
  1.1725 + * See the comments at the beginning of this section.
  1.1726 + */
  1.1727 +
  1.1728 +/**
  1.1729 + * oil_clipconv_u8_u32:
  1.1730 + * @dest:
  1.1731 + * @dstr:
  1.1732 + * @src:
  1.1733 + * @sstr:
  1.1734 + * @n:
  1.1735 + * 
  1.1736 + * Converts elements in  from the source type
  1.1737 + * to the destination type and places the result in .
  1.1738 + * Values outside the destination range are clipped to
  1.1739 + * the destination range.
  1.1740 + * See the comments at the beginning of this section.
  1.1741 + */
  1.1742 +
  1.1743 +/**
  1.1744 + * oil_scaleconv_f32_s16:
  1.1745 + * @dest:
  1.1746 + * @src:
  1.1747 + * @n:
  1.1748 + # @s2_1:
  1.1749 + # @s3_1:
  1.1750 + * 
  1.1751 + * Multiplies elements in  by  and adds  and then
  1.1752 + * converts the result
  1.1753 + * to the destination type and places the result in .
  1.1754 + * Values outside the destination range are undefined and
  1.1755 + * implementation dependent.
  1.1756 + * See the comments at the beginning of this section.
  1.1757 + */
  1.1758 +
  1.1759 +/**
  1.1760 + * oil_scaleconv_f32_s32:
  1.1761 + * @dest:
  1.1762 + * @src:
  1.1763 + * @n:
  1.1764 + # @s2_1:
  1.1765 + # @s3_1:
  1.1766 + * 
  1.1767 + * Multiplies elements in  by  and adds  and then
  1.1768 + * converts the result
  1.1769 + * to the destination type and places the result in .
  1.1770 + * Values outside the destination range are undefined and
  1.1771 + * implementation dependent.
  1.1772 + * See the comments at the beginning of this section.
  1.1773 + */
  1.1774 +
  1.1775 +/**
  1.1776 + * oil_scaleconv_f32_s8:
  1.1777 + * @dest:
  1.1778 + * @src:
  1.1779 + * @n:
  1.1780 + # @s2_1:
  1.1781 + # @s3_1:
  1.1782 + * 
  1.1783 + * Multiplies elements in  by  and adds  and then
  1.1784 + * converts the result
  1.1785 + * to the destination type and places the result in .
  1.1786 + * Values outside the destination range are undefined and
  1.1787 + * implementation dependent.
  1.1788 + * See the comments at the beginning of this section.
  1.1789 + */
  1.1790 +
  1.1791 +/**
  1.1792 + * oil_scaleconv_f32_u16:
  1.1793 + * @dest:
  1.1794 + * @src:
  1.1795 + * @n:
  1.1796 + # @s2_1:
  1.1797 + # @s3_1:
  1.1798 + * 
  1.1799 + * Multiplies elements in  by  and adds  and then
  1.1800 + * converts the result
  1.1801 + * to the destination type and places the result in .
  1.1802 + * Values outside the destination range are undefined and
  1.1803 + * implementation dependent.
  1.1804 + * See the comments at the beginning of this section.
  1.1805 + */
  1.1806 +
  1.1807 +/**
  1.1808 + * oil_scaleconv_f32_u32:
  1.1809 + * @dest:
  1.1810 + * @src:
  1.1811 + * @n:
  1.1812 + # @s2_1:
  1.1813 + # @s3_1:
  1.1814 + * 
  1.1815 + * Multiplies elements in  by  and adds  and then
  1.1816 + * converts the result
  1.1817 + * to the destination type and places the result in .
  1.1818 + * Values outside the destination range are undefined and
  1.1819 + * implementation dependent.
  1.1820 + * See the comments at the beginning of this section.
  1.1821 + */
  1.1822 +
  1.1823 +/**
  1.1824 + * oil_scaleconv_f32_u8:
  1.1825 + * @dest:
  1.1826 + * @src:
  1.1827 + * @n:
  1.1828 + # @s2_1:
  1.1829 + # @s3_1:
  1.1830 + * 
  1.1831 + * Multiplies elements in  by  and adds  and then
  1.1832 + * converts the result
  1.1833 + * to the destination type and places the result in .
  1.1834 + * Values outside the destination range are undefined and
  1.1835 + * implementation dependent.
  1.1836 + * See the comments at the beginning of this section.
  1.1837 + */
  1.1838 +
  1.1839 +/**
  1.1840 + * oil_scaleconv_f64_s16:
  1.1841 + * @dest:
  1.1842 + * @src:
  1.1843 + * @n:
  1.1844 + # @s2_1:
  1.1845 + # @s3_1:
  1.1846 + * 
  1.1847 + * Multiplies elements in  by  and adds  and then
  1.1848 + * converts the result
  1.1849 + * to the destination type and places the result in .
  1.1850 + * Values outside the destination range are undefined and
  1.1851 + * implementation dependent.
  1.1852 + * See the comments at the beginning of this section.
  1.1853 + */
  1.1854 +
  1.1855 +/**
  1.1856 + * oil_scaleconv_f64_s32:
  1.1857 + * @dest:
  1.1858 + * @src:
  1.1859 + * @n:
  1.1860 + # @s2_1:
  1.1861 + # @s3_1:
  1.1862 + * 
  1.1863 + * Multiplies elements in  by  and adds  and then
  1.1864 + * converts the result
  1.1865 + * to the destination type and places the result in .
  1.1866 + * Values outside the destination range are undefined and
  1.1867 + * implementation dependent.
  1.1868 + * See the comments at the beginning of this section.
  1.1869 + */
  1.1870 +
  1.1871 +/**
  1.1872 + * oil_scaleconv_f64_s8:
  1.1873 + * @dest:
  1.1874 + * @src:
  1.1875 + * @n:
  1.1876 + # @s2_1:
  1.1877 + # @s3_1:
  1.1878 + * 
  1.1879 + * Multiplies elements in  by  and adds  and then
  1.1880 + * converts the result
  1.1881 + * to the destination type and places the result in .
  1.1882 + * Values outside the destination range are undefined and
  1.1883 + * implementation dependent.
  1.1884 + * See the comments at the beginning of this section.
  1.1885 + */
  1.1886 +
  1.1887 +/**
  1.1888 + * oil_scaleconv_f64_u16:
  1.1889 + * @dest:
  1.1890 + * @src:
  1.1891 + * @n:
  1.1892 + # @s2_1:
  1.1893 + # @s3_1:
  1.1894 + * 
  1.1895 + * Multiplies elements in  by  and adds  and then
  1.1896 + * converts the result
  1.1897 + * to the destination type and places the result in .
  1.1898 + * Values outside the destination range are undefined and
  1.1899 + * implementation dependent.
  1.1900 + * See the comments at the beginning of this section.
  1.1901 + */
  1.1902 +
  1.1903 +/**
  1.1904 + * oil_scaleconv_f64_u32:
  1.1905 + * @dest:
  1.1906 + * @src:
  1.1907 + * @n:
  1.1908 + # @s2_1:
  1.1909 + # @s3_1:
  1.1910 + * 
  1.1911 + * Multiplies elements in  by  and adds  and then
  1.1912 + * converts the result
  1.1913 + * to the destination type and places the result in .
  1.1914 + * Values outside the destination range are undefined and
  1.1915 + * implementation dependent.
  1.1916 + * See the comments at the beginning of this section.
  1.1917 + */
  1.1918 +
  1.1919 +/**
  1.1920 + * oil_scaleconv_f64_u8:
  1.1921 + * @dest:
  1.1922 + * @src:
  1.1923 + * @n:
  1.1924 + # @s2_1:
  1.1925 + # @s3_1:
  1.1926 + * 
  1.1927 + * Multiplies elements in  by  and adds  and then
  1.1928 + * converts the result
  1.1929 + * to the destination type and places the result in .
  1.1930 + * Values outside the destination range are undefined and
  1.1931 + * implementation dependent.
  1.1932 + * See the comments at the beginning of this section.
  1.1933 + */
  1.1934 +
  1.1935 +/**
  1.1936 + * oil_scaleconv_s16_f32:
  1.1937 + * @dest:
  1.1938 + * @src:
  1.1939 + * @n:
  1.1940 + # @s2_1:
  1.1941 + # @s3_1:
  1.1942 + * 
  1.1943 + * Multiplies elements in  by  and adds  and then
  1.1944 + * converts the result
  1.1945 + * to the destination type and places the result in .
  1.1946 + * Values outside the destination range are undefined and
  1.1947 + * implementation dependent.
  1.1948 + * See the comments at the beginning of this section.
  1.1949 + */
  1.1950 +
  1.1951 +/**
  1.1952 + * oil_scaleconv_s16_f64:
  1.1953 + * @dest:
  1.1954 + * @src:
  1.1955 + * @n:
  1.1956 + # @s2_1:
  1.1957 + # @s3_1:
  1.1958 + * 
  1.1959 + * Multiplies elements in  by  and adds  and then
  1.1960 + * converts the result
  1.1961 + * to the destination type and places the result in .
  1.1962 + * Values outside the destination range are undefined and
  1.1963 + * implementation dependent.
  1.1964 + * See the comments at the beginning of this section.
  1.1965 + */
  1.1966 +
  1.1967 +/**
  1.1968 + * oil_scaleconv_s32_f32:
  1.1969 + * @dest:
  1.1970 + * @src:
  1.1971 + * @n:
  1.1972 + # @s2_1:
  1.1973 + # @s3_1:
  1.1974 + * 
  1.1975 + * Multiplies elements in  by  and adds  and then
  1.1976 + * converts the result
  1.1977 + * to the destination type and places the result in .
  1.1978 + * Values outside the destination range are undefined and
  1.1979 + * implementation dependent.
  1.1980 + * See the comments at the beginning of this section.
  1.1981 + */
  1.1982 +
  1.1983 +/**
  1.1984 + * oil_scaleconv_s32_f64:
  1.1985 + * @dest:
  1.1986 + * @src:
  1.1987 + * @n:
  1.1988 + # @s2_1:
  1.1989 + # @s3_1:
  1.1990 + * 
  1.1991 + * Multiplies elements in  by  and adds  and then
  1.1992 + * converts the result
  1.1993 + * to the destination type and places the result in .
  1.1994 + * Values outside the destination range are undefined and
  1.1995 + * implementation dependent.
  1.1996 + * See the comments at the beginning of this section.
  1.1997 + */
  1.1998 +
  1.1999 +/**
  1.2000 + * oil_scaleconv_s8_f32:
  1.2001 + * @dest:
  1.2002 + * @src:
  1.2003 + * @n:
  1.2004 + # @s2_1:
  1.2005 + # @s3_1:
  1.2006 + * 
  1.2007 + * Multiplies elements in  by  and adds  and then
  1.2008 + * converts the result
  1.2009 + * to the destination type and places the result in .
  1.2010 + * Values outside the destination range are undefined and
  1.2011 + * implementation dependent.
  1.2012 + * See the comments at the beginning of this section.
  1.2013 + */
  1.2014 +
  1.2015 +/**
  1.2016 + * oil_scaleconv_s8_f64:
  1.2017 + * @dest:
  1.2018 + * @src:
  1.2019 + * @n:
  1.2020 + # @s2_1:
  1.2021 + # @s3_1:
  1.2022 + * 
  1.2023 + * Multiplies elements in  by  and adds  and then
  1.2024 + * converts the result
  1.2025 + * to the destination type and places the result in .
  1.2026 + * Values outside the destination range are undefined and
  1.2027 + * implementation dependent.
  1.2028 + * See the comments at the beginning of this section.
  1.2029 + */
  1.2030 +
  1.2031 +/**
  1.2032 + * oil_scaleconv_u16_f32:
  1.2033 + * @dest:
  1.2034 + * @src:
  1.2035 + * @n:
  1.2036 + # @s2_1:
  1.2037 + # @s3_1:
  1.2038 + * 
  1.2039 + * Multiplies elements in  by  and adds  and then
  1.2040 + * converts the result
  1.2041 + * to the destination type and places the result in .
  1.2042 + * Values outside the destination range are undefined and
  1.2043 + * implementation dependent.
  1.2044 + * See the comments at the beginning of this section.
  1.2045 + */
  1.2046 +
  1.2047 +/**
  1.2048 + * oil_scaleconv_u16_f64:
  1.2049 + * @dest:
  1.2050 + * @src:
  1.2051 + * @n:
  1.2052 + # @s2_1:
  1.2053 + # @s3_1:
  1.2054 + * 
  1.2055 + * Multiplies elements in  by  and adds  and then
  1.2056 + * converts the result
  1.2057 + * to the destination type and places the result in .
  1.2058 + * Values outside the destination range are undefined and
  1.2059 + * implementation dependent.
  1.2060 + * See the comments at the beginning of this section.
  1.2061 + */
  1.2062 +
  1.2063 +/**
  1.2064 + * oil_scaleconv_u32_f32:
  1.2065 + * @dest:
  1.2066 + * @src:
  1.2067 + * @n:
  1.2068 + # @s2_1:
  1.2069 + # @s3_1:
  1.2070 + * 
  1.2071 + * Multiplies elements in  by  and adds  and then
  1.2072 + * converts the result
  1.2073 + * to the destination type and places the result in .
  1.2074 + * Values outside the destination range are undefined and
  1.2075 + * implementation dependent.
  1.2076 + * See the comments at the beginning of this section.
  1.2077 + */
  1.2078 +
  1.2079 +/**
  1.2080 + * oil_scaleconv_u32_f64:
  1.2081 + * @dest:
  1.2082 + * @src:
  1.2083 + * @n:
  1.2084 + # @s2_1:
  1.2085 + # @s3_1:
  1.2086 + * 
  1.2087 + * Multiplies elements in  by  and adds  and then
  1.2088 + * converts the result
  1.2089 + * to the destination type and places the result in .
  1.2090 + * Values outside the destination range are undefined and
  1.2091 + * implementation dependent.
  1.2092 + * See the comments at the beginning of this section.
  1.2093 + */
  1.2094 +
  1.2095 +/**
  1.2096 + * oil_scaleconv_u8_f32:
  1.2097 + * @dest:
  1.2098 + * @src:
  1.2099 + * @n:
  1.2100 + # @s2_1:
  1.2101 + # @s3_1:
  1.2102 + * 
  1.2103 + * Multiplies elements in  by  and adds  and then
  1.2104 + * converts the result
  1.2105 + * to the destination type and places the result in .
  1.2106 + * Values outside the destination range are undefined and
  1.2107 + * implementation dependent.
  1.2108 + * See the comments at the beginning of this section.
  1.2109 + */
  1.2110 +
  1.2111 +/**
  1.2112 + * oil_scaleconv_u8_f64:
  1.2113 + * @dest:
  1.2114 + * @src:
  1.2115 + * @n:
  1.2116 + # @s2_1:
  1.2117 + # @s3_1:
  1.2118 + * 
  1.2119 + * Multiplies elements in  by  and adds  and then
  1.2120 + * converts the result
  1.2121 + * to the destination type and places the result in .
  1.2122 + * Values outside the destination range are undefined and
  1.2123 + * implementation dependent.
  1.2124 + * See the comments at the beginning of this section.
  1.2125 + */
  1.2126 + 
  1.2127 +
  1.2128 +
  1.2129 +
  1.2130 +
  1.2131 +#ifdef	__SYMBIAN32__
  1.2132 + 
  1.2133 +OilFunctionClass* __oil_function_class_conv_s8_u8() {
  1.2134 +        return &_oil_function_class_conv_s8_u8;
  1.2135 +}
  1.2136 +#endif
  1.2137 +
  1.2138 +#ifdef	__SYMBIAN32__
  1.2139 + 
  1.2140 +OilFunctionClass* __oil_function_class_conv_s8_s16() {
  1.2141 +        return &_oil_function_class_conv_s8_s16;
  1.2142 +}
  1.2143 +#endif
  1.2144 +
  1.2145 +#ifdef	__SYMBIAN32__
  1.2146 + 
  1.2147 +OilFunctionClass* __oil_function_class_conv_s8_u16() {
  1.2148 +        return &_oil_function_class_conv_s8_u16;
  1.2149 +}
  1.2150 +#endif
  1.2151 +
  1.2152 +#ifdef	__SYMBIAN32__
  1.2153 + 
  1.2154 +OilFunctionClass* __oil_function_class_conv_s8_s32() {
  1.2155 +        return &_oil_function_class_conv_s8_s32;
  1.2156 +}
  1.2157 +#endif
  1.2158 +
  1.2159 +#ifdef	__SYMBIAN32__
  1.2160 + 
  1.2161 +OilFunctionClass* __oil_function_class_conv_s8_u32() {
  1.2162 +        return &_oil_function_class_conv_s8_u32;
  1.2163 +}
  1.2164 +#endif
  1.2165 +
  1.2166 +#ifdef	__SYMBIAN32__
  1.2167 + 
  1.2168 +OilFunctionClass* __oil_function_class_conv_s8_f32() {
  1.2169 +        return &_oil_function_class_conv_s8_f32;
  1.2170 +}
  1.2171 +#endif
  1.2172 +
  1.2173 +#ifdef	__SYMBIAN32__
  1.2174 + 
  1.2175 +OilFunctionClass* __oil_function_class_conv_s8_f64() {
  1.2176 +        return &_oil_function_class_conv_s8_f64;
  1.2177 +}
  1.2178 +#endif
  1.2179 +
  1.2180 +#ifdef	__SYMBIAN32__
  1.2181 + 
  1.2182 +OilFunctionClass* __oil_function_class_conv_u8_s8() {
  1.2183 +        return &_oil_function_class_conv_u8_s8;
  1.2184 +}
  1.2185 +#endif
  1.2186 +
  1.2187 +#ifdef	__SYMBIAN32__
  1.2188 + 
  1.2189 +OilFunctionClass* __oil_function_class_conv_u8_s16() {
  1.2190 +        return &_oil_function_class_conv_u8_s16;
  1.2191 +}
  1.2192 +#endif
  1.2193 +
  1.2194 +#ifdef	__SYMBIAN32__
  1.2195 + 
  1.2196 +OilFunctionClass* __oil_function_class_conv_u8_u16() {
  1.2197 +        return &_oil_function_class_conv_u8_u16;
  1.2198 +}
  1.2199 +#endif
  1.2200 +
  1.2201 +#ifdef	__SYMBIAN32__
  1.2202 + 
  1.2203 +OilFunctionClass* __oil_function_class_conv_u8_s32() {
  1.2204 +        return &_oil_function_class_conv_u8_s32;
  1.2205 +}
  1.2206 +#endif
  1.2207 +
  1.2208 +#ifdef	__SYMBIAN32__
  1.2209 + 
  1.2210 +OilFunctionClass* __oil_function_class_conv_u8_u32() {
  1.2211 +        return &_oil_function_class_conv_u8_u32;
  1.2212 +}
  1.2213 +#endif
  1.2214 +
  1.2215 +#ifdef	__SYMBIAN32__
  1.2216 + 
  1.2217 +OilFunctionClass* __oil_function_class_conv_u8_f32() {
  1.2218 +        return &_oil_function_class_conv_u8_f32;
  1.2219 +}
  1.2220 +#endif
  1.2221 +
  1.2222 +#ifdef	__SYMBIAN32__
  1.2223 + 
  1.2224 +OilFunctionClass* __oil_function_class_conv_u8_f64() {
  1.2225 +        return &_oil_function_class_conv_u8_f64;
  1.2226 +}
  1.2227 +#endif
  1.2228 +
  1.2229 +#ifdef	__SYMBIAN32__
  1.2230 + 
  1.2231 +OilFunctionClass* __oil_function_class_conv_s16_s8() {
  1.2232 +        return &_oil_function_class_conv_s16_s8;
  1.2233 +}
  1.2234 +#endif
  1.2235 +
  1.2236 +#ifdef	__SYMBIAN32__
  1.2237 + 
  1.2238 +OilFunctionClass* __oil_function_class_conv_s16_u8() {
  1.2239 +        return &_oil_function_class_conv_s16_u8;
  1.2240 +}
  1.2241 +#endif
  1.2242 +
  1.2243 +#ifdef	__SYMBIAN32__
  1.2244 + 
  1.2245 +OilFunctionClass* __oil_function_class_conv_s16_u16() {
  1.2246 +        return &_oil_function_class_conv_s16_u16;
  1.2247 +}
  1.2248 +#endif
  1.2249 +
  1.2250 +#ifdef	__SYMBIAN32__
  1.2251 + 
  1.2252 +OilFunctionClass* __oil_function_class_conv_s16_s32() {
  1.2253 +        return &_oil_function_class_conv_s16_s32;
  1.2254 +}
  1.2255 +#endif
  1.2256 +
  1.2257 +#ifdef	__SYMBIAN32__
  1.2258 + 
  1.2259 +OilFunctionClass* __oil_function_class_conv_s16_u32() {
  1.2260 +        return &_oil_function_class_conv_s16_u32;
  1.2261 +}
  1.2262 +#endif
  1.2263 +
  1.2264 +#ifdef	__SYMBIAN32__
  1.2265 + 
  1.2266 +OilFunctionClass* __oil_function_class_conv_s16_f32() {
  1.2267 +        return &_oil_function_class_conv_s16_f32;
  1.2268 +}
  1.2269 +#endif
  1.2270 +
  1.2271 +#ifdef	__SYMBIAN32__
  1.2272 + 
  1.2273 +OilFunctionClass* __oil_function_class_conv_s16_f64() {
  1.2274 +        return &_oil_function_class_conv_s16_f64;
  1.2275 +}
  1.2276 +#endif
  1.2277 +
  1.2278 +#ifdef	__SYMBIAN32__
  1.2279 + 
  1.2280 +OilFunctionClass* __oil_function_class_conv_u16_s8() {
  1.2281 +        return &_oil_function_class_conv_u16_s8;
  1.2282 +}
  1.2283 +#endif
  1.2284 +
  1.2285 +#ifdef	__SYMBIAN32__
  1.2286 + 
  1.2287 +OilFunctionClass* __oil_function_class_conv_u16_u8() {
  1.2288 +        return &_oil_function_class_conv_u16_u8;
  1.2289 +}
  1.2290 +#endif
  1.2291 +
  1.2292 +#ifdef	__SYMBIAN32__
  1.2293 + 
  1.2294 +OilFunctionClass* __oil_function_class_conv_u16_s16() {
  1.2295 +        return &_oil_function_class_conv_u16_s16;
  1.2296 +}
  1.2297 +#endif
  1.2298 +
  1.2299 +#ifdef	__SYMBIAN32__
  1.2300 + 
  1.2301 +OilFunctionClass* __oil_function_class_conv_u16_s32() {
  1.2302 +        return &_oil_function_class_conv_u16_s32;
  1.2303 +}
  1.2304 +#endif
  1.2305 +
  1.2306 +#ifdef	__SYMBIAN32__
  1.2307 + 
  1.2308 +OilFunctionClass* __oil_function_class_conv_u16_u32() {
  1.2309 +        return &_oil_function_class_conv_u16_u32;
  1.2310 +}
  1.2311 +#endif
  1.2312 +
  1.2313 +#ifdef	__SYMBIAN32__
  1.2314 + 
  1.2315 +OilFunctionClass* __oil_function_class_conv_u16_f32() {
  1.2316 +        return &_oil_function_class_conv_u16_f32;
  1.2317 +}
  1.2318 +#endif
  1.2319 +
  1.2320 +#ifdef	__SYMBIAN32__
  1.2321 + 
  1.2322 +OilFunctionClass* __oil_function_class_conv_u16_f64() {
  1.2323 +        return &_oil_function_class_conv_u16_f64;
  1.2324 +}
  1.2325 +#endif
  1.2326 +
  1.2327 +#ifdef	__SYMBIAN32__
  1.2328 + 
  1.2329 +OilFunctionClass* __oil_function_class_conv_s32_s8() {
  1.2330 +        return &_oil_function_class_conv_s32_s8;
  1.2331 +}
  1.2332 +#endif
  1.2333 +
  1.2334 +#ifdef	__SYMBIAN32__
  1.2335 + 
  1.2336 +OilFunctionClass* __oil_function_class_conv_s32_s16() {
  1.2337 +        return &_oil_function_class_conv_s32_s16;
  1.2338 +}
  1.2339 +#endif
  1.2340 +
  1.2341 +#ifdef	__SYMBIAN32__
  1.2342 + 
  1.2343 +OilFunctionClass* __oil_function_class_conv_s32_u8() {
  1.2344 +        return &_oil_function_class_conv_s32_u8;
  1.2345 +}
  1.2346 +#endif
  1.2347 +
  1.2348 +#ifdef	__SYMBIAN32__
  1.2349 + 
  1.2350 +OilFunctionClass* __oil_function_class_conv_s32_u16() {
  1.2351 +        return &_oil_function_class_conv_s32_u16;
  1.2352 +}
  1.2353 +#endif
  1.2354 +
  1.2355 +#ifdef	__SYMBIAN32__
  1.2356 + 
  1.2357 +OilFunctionClass* __oil_function_class_conv_s32_u32() {
  1.2358 +        return &_oil_function_class_conv_s32_u32;
  1.2359 +}
  1.2360 +#endif
  1.2361 +
  1.2362 +#ifdef	__SYMBIAN32__
  1.2363 + 
  1.2364 +OilFunctionClass* __oil_function_class_conv_s32_f32() {
  1.2365 +        return &_oil_function_class_conv_s32_f32;
  1.2366 +}
  1.2367 +#endif
  1.2368 +
  1.2369 +#ifdef	__SYMBIAN32__
  1.2370 + 
  1.2371 +OilFunctionClass* __oil_function_class_conv_s32_f64() {
  1.2372 +        return &_oil_function_class_conv_s32_f64;
  1.2373 +}
  1.2374 +#endif
  1.2375 +
  1.2376 +#ifdef	__SYMBIAN32__
  1.2377 + 
  1.2378 +OilFunctionClass* __oil_function_class_conv_u32_s8() {
  1.2379 +        return &_oil_function_class_conv_u32_s8;
  1.2380 +}
  1.2381 +#endif
  1.2382 +
  1.2383 +#ifdef	__SYMBIAN32__
  1.2384 + 
  1.2385 +OilFunctionClass* __oil_function_class_conv_u32_s16() {
  1.2386 +        return &_oil_function_class_conv_u32_s16;
  1.2387 +}
  1.2388 +#endif
  1.2389 +
  1.2390 +#ifdef	__SYMBIAN32__
  1.2391 + 
  1.2392 +OilFunctionClass* __oil_function_class_conv_u32_u8() {
  1.2393 +        return &_oil_function_class_conv_u32_u8;
  1.2394 +}
  1.2395 +#endif
  1.2396 +
  1.2397 +#ifdef	__SYMBIAN32__
  1.2398 + 
  1.2399 +OilFunctionClass* __oil_function_class_conv_u32_u16() {
  1.2400 +        return &_oil_function_class_conv_u32_u16;
  1.2401 +}
  1.2402 +#endif
  1.2403 +
  1.2404 +#ifdef	__SYMBIAN32__
  1.2405 + 
  1.2406 +OilFunctionClass* __oil_function_class_conv_u32_s32() {
  1.2407 +        return &_oil_function_class_conv_u32_s32;
  1.2408 +}
  1.2409 +#endif
  1.2410 +
  1.2411 +#ifdef	__SYMBIAN32__
  1.2412 + 
  1.2413 +OilFunctionClass* __oil_function_class_conv_u32_f32() {
  1.2414 +        return &_oil_function_class_conv_u32_f32;
  1.2415 +}
  1.2416 +#endif
  1.2417 +
  1.2418 +#ifdef	__SYMBIAN32__
  1.2419 + 
  1.2420 +OilFunctionClass* __oil_function_class_conv_u32_f64() {
  1.2421 +        return &_oil_function_class_conv_u32_f64;
  1.2422 +}
  1.2423 +#endif
  1.2424 +
  1.2425 +#ifdef	__SYMBIAN32__
  1.2426 + 
  1.2427 +OilFunctionClass* __oil_function_class_conv_f32_s8() {
  1.2428 +        return &_oil_function_class_conv_f32_s8;
  1.2429 +}
  1.2430 +#endif
  1.2431 +
  1.2432 +#ifdef	__SYMBIAN32__
  1.2433 + 
  1.2434 +OilFunctionClass* __oil_function_class_conv_f32_s16() {
  1.2435 +        return &_oil_function_class_conv_f32_s16;
  1.2436 +}
  1.2437 +#endif
  1.2438 +
  1.2439 +#ifdef	__SYMBIAN32__
  1.2440 + 
  1.2441 +OilFunctionClass* __oil_function_class_conv_f32_u8() {
  1.2442 +        return &_oil_function_class_conv_f32_u8;
  1.2443 +}
  1.2444 +#endif
  1.2445 +
  1.2446 +#ifdef	__SYMBIAN32__
  1.2447 + 
  1.2448 +OilFunctionClass* __oil_function_class_conv_f32_u16() {
  1.2449 +        return &_oil_function_class_conv_f32_u16;
  1.2450 +}
  1.2451 +#endif
  1.2452 +
  1.2453 +#ifdef	__SYMBIAN32__
  1.2454 + 
  1.2455 +OilFunctionClass* __oil_function_class_conv_f32_s32() {
  1.2456 +        return &_oil_function_class_conv_f32_s32;
  1.2457 +}
  1.2458 +#endif
  1.2459 +
  1.2460 +#ifdef	__SYMBIAN32__
  1.2461 + 
  1.2462 +OilFunctionClass* __oil_function_class_conv_f32_u32() {
  1.2463 +        return &_oil_function_class_conv_f32_u32;
  1.2464 +}
  1.2465 +#endif
  1.2466 +
  1.2467 +#ifdef	__SYMBIAN32__
  1.2468 + 
  1.2469 +OilFunctionClass* __oil_function_class_conv_f32_f64() {
  1.2470 +        return &_oil_function_class_conv_f32_f64;
  1.2471 +}
  1.2472 +#endif
  1.2473 +
  1.2474 +#ifdef	__SYMBIAN32__
  1.2475 + 
  1.2476 +OilFunctionClass* __oil_function_class_conv_f64_s8() {
  1.2477 +        return &_oil_function_class_conv_f64_s8;
  1.2478 +}
  1.2479 +#endif
  1.2480 +
  1.2481 +#ifdef	__SYMBIAN32__
  1.2482 + 
  1.2483 +OilFunctionClass* __oil_function_class_conv_f64_u8() {
  1.2484 +        return &_oil_function_class_conv_f64_u8;
  1.2485 +}
  1.2486 +#endif
  1.2487 +
  1.2488 +#ifdef	__SYMBIAN32__
  1.2489 + 
  1.2490 +OilFunctionClass* __oil_function_class_conv_f64_s16() {
  1.2491 +        return &_oil_function_class_conv_f64_s16;
  1.2492 +}
  1.2493 +#endif
  1.2494 +
  1.2495 +#ifdef	__SYMBIAN32__
  1.2496 + 
  1.2497 +OilFunctionClass* __oil_function_class_conv_f64_u16() {
  1.2498 +        return &_oil_function_class_conv_f64_u16;
  1.2499 +}
  1.2500 +#endif
  1.2501 +
  1.2502 +#ifdef	__SYMBIAN32__
  1.2503 + 
  1.2504 +OilFunctionClass* __oil_function_class_conv_f64_s32() {
  1.2505 +        return &_oil_function_class_conv_f64_s32;
  1.2506 +}
  1.2507 +#endif
  1.2508 +
  1.2509 +#ifdef	__SYMBIAN32__
  1.2510 + 
  1.2511 +OilFunctionClass* __oil_function_class_conv_f64_u32() {
  1.2512 +        return &_oil_function_class_conv_f64_u32;
  1.2513 +}
  1.2514 +#endif
  1.2515 +
  1.2516 +#ifdef	__SYMBIAN32__
  1.2517 + 
  1.2518 +OilFunctionClass* __oil_function_class_conv_f64_f32() {
  1.2519 +        return &_oil_function_class_conv_f64_f32;
  1.2520 +}
  1.2521 +#endif
  1.2522 +
  1.2523 +#ifdef	__SYMBIAN32__
  1.2524 + 
  1.2525 +OilFunctionClass* __oil_function_class_clipconv_s8_u8() {
  1.2526 +        return &_oil_function_class_clipconv_s8_u8;
  1.2527 +}
  1.2528 +#endif
  1.2529 +
  1.2530 +#ifdef	__SYMBIAN32__
  1.2531 + 
  1.2532 +OilFunctionClass* __oil_function_class_clipconv_s8_u16() {
  1.2533 +        return &_oil_function_class_clipconv_s8_u16;
  1.2534 +}
  1.2535 +#endif
  1.2536 +
  1.2537 +#ifdef	__SYMBIAN32__
  1.2538 + 
  1.2539 +OilFunctionClass* __oil_function_class_clipconv_s8_u32() {
  1.2540 +        return &_oil_function_class_clipconv_s8_u32;
  1.2541 +}
  1.2542 +#endif
  1.2543 +
  1.2544 +#ifdef	__SYMBIAN32__
  1.2545 + 
  1.2546 +OilFunctionClass* __oil_function_class_clipconv_u8_u32() {
  1.2547 +        return &_oil_function_class_clipconv_u8_u32;
  1.2548 +}
  1.2549 +#endif
  1.2550 +
  1.2551 +#ifdef	__SYMBIAN32__
  1.2552 + 
  1.2553 +OilFunctionClass* __oil_function_class_clipconv_u8_u16() {
  1.2554 +        return &_oil_function_class_clipconv_u8_u16;
  1.2555 +}
  1.2556 +#endif
  1.2557 +
  1.2558 +#ifdef	__SYMBIAN32__
  1.2559 + 
  1.2560 +OilFunctionClass* __oil_function_class_clipconv_s16_u16() {
  1.2561 +        return &_oil_function_class_clipconv_s16_u16;
  1.2562 +}
  1.2563 +#endif
  1.2564 +
  1.2565 +#ifdef	__SYMBIAN32__
  1.2566 + 
  1.2567 +OilFunctionClass* __oil_function_class_clipconv_s16_u32() {
  1.2568 +        return &_oil_function_class_clipconv_s16_u32;
  1.2569 +}
  1.2570 +#endif
  1.2571 +
  1.2572 +#ifdef	__SYMBIAN32__
  1.2573 + 
  1.2574 +OilFunctionClass* __oil_function_class_clipconv_s32_u32() {
  1.2575 +        return &_oil_function_class_clipconv_s32_u32;
  1.2576 +}
  1.2577 +#endif
  1.2578 +
  1.2579 +#ifdef	__SYMBIAN32__
  1.2580 + 
  1.2581 +OilFunctionClass* __oil_function_class_clipconv_u16_u32() {
  1.2582 +        return &_oil_function_class_clipconv_u16_u32;
  1.2583 +}
  1.2584 +#endif
  1.2585 +
  1.2586 +#ifdef	__SYMBIAN32__
  1.2587 + 
  1.2588 +OilFunctionClass* __oil_function_class_clipconv_s8_s16() {
  1.2589 +        return &_oil_function_class_clipconv_s8_s16;
  1.2590 +}
  1.2591 +#endif
  1.2592 +
  1.2593 +#ifdef	__SYMBIAN32__
  1.2594 + 
  1.2595 +OilFunctionClass* __oil_function_class_clipconv_s8_s32() {
  1.2596 +        return &_oil_function_class_clipconv_s8_s32;
  1.2597 +}
  1.2598 +#endif
  1.2599 +
  1.2600 +#ifdef	__SYMBIAN32__
  1.2601 + 
  1.2602 +OilFunctionClass* __oil_function_class_clipconv_u8_s16() {
  1.2603 +        return &_oil_function_class_clipconv_u8_s16;
  1.2604 +}
  1.2605 +#endif
  1.2606 +
  1.2607 +#ifdef	__SYMBIAN32__
  1.2608 + 
  1.2609 +OilFunctionClass* __oil_function_class_clipconv_u8_s32() {
  1.2610 +        return &_oil_function_class_clipconv_u8_s32;
  1.2611 +}
  1.2612 +#endif
  1.2613 +
  1.2614 +#ifdef	__SYMBIAN32__
  1.2615 + 
  1.2616 +OilFunctionClass* __oil_function_class_clipconv_s16_s32() {
  1.2617 +        return &_oil_function_class_clipconv_s16_s32;
  1.2618 +}
  1.2619 +#endif
  1.2620 +
  1.2621 +#ifdef	__SYMBIAN32__
  1.2622 + 
  1.2623 +OilFunctionClass* __oil_function_class_clipconv_u16_s32() {
  1.2624 +        return &_oil_function_class_clipconv_u16_s32;
  1.2625 +}
  1.2626 +#endif
  1.2627 +
  1.2628 +#ifdef	__SYMBIAN32__
  1.2629 + 
  1.2630 +OilFunctionClass* __oil_function_class_clipconv_u8_s8() {
  1.2631 +        return &_oil_function_class_clipconv_u8_s8;
  1.2632 +}
  1.2633 +#endif
  1.2634 +
  1.2635 +#ifdef	__SYMBIAN32__
  1.2636 + 
  1.2637 +OilFunctionClass* __oil_function_class_clipconv_u16_s16() {
  1.2638 +        return &_oil_function_class_clipconv_u16_s16;
  1.2639 +}
  1.2640 +#endif
  1.2641 +
  1.2642 +#ifdef	__SYMBIAN32__
  1.2643 + 
  1.2644 +OilFunctionClass* __oil_function_class_clipconv_u32_s32() {
  1.2645 +        return &_oil_function_class_clipconv_u32_s32;
  1.2646 +}
  1.2647 +#endif
  1.2648 +
  1.2649 +#ifdef	__SYMBIAN32__
  1.2650 + 
  1.2651 +OilFunctionClass* __oil_function_class_clipconv_s8_f32() {
  1.2652 +        return &_oil_function_class_clipconv_s8_f32;
  1.2653 +}
  1.2654 +#endif
  1.2655 +
  1.2656 +#ifdef	__SYMBIAN32__
  1.2657 + 
  1.2658 +OilFunctionClass* __oil_function_class_clipconv_s8_f64() {
  1.2659 +        return &_oil_function_class_clipconv_s8_f64;
  1.2660 +}
  1.2661 +#endif
  1.2662 +
  1.2663 +#ifdef	__SYMBIAN32__
  1.2664 + 
  1.2665 +OilFunctionClass* __oil_function_class_clipconv_u8_f32() {
  1.2666 +        return &_oil_function_class_clipconv_u8_f32;
  1.2667 +}
  1.2668 +#endif
  1.2669 +
  1.2670 +#ifdef	__SYMBIAN32__
  1.2671 + 
  1.2672 +OilFunctionClass* __oil_function_class_clipconv_u8_f64() {
  1.2673 +        return &_oil_function_class_clipconv_u8_f64;
  1.2674 +}
  1.2675 +#endif
  1.2676 +
  1.2677 +#ifdef	__SYMBIAN32__
  1.2678 + 
  1.2679 +OilFunctionClass* __oil_function_class_clipconv_s16_f32() {
  1.2680 +        return &_oil_function_class_clipconv_s16_f32;
  1.2681 +}
  1.2682 +#endif
  1.2683 +
  1.2684 +#ifdef	__SYMBIAN32__
  1.2685 + 
  1.2686 +OilFunctionClass* __oil_function_class_clipconv_s16_f64() {
  1.2687 +        return &_oil_function_class_clipconv_s16_f64;
  1.2688 +}
  1.2689 +#endif
  1.2690 +
  1.2691 +#ifdef	__SYMBIAN32__
  1.2692 + 
  1.2693 +OilFunctionClass* __oil_function_class_clipconv_u16_f32() {
  1.2694 +        return &_oil_function_class_clipconv_u16_f32;
  1.2695 +}
  1.2696 +#endif
  1.2697 +
  1.2698 +#ifdef	__SYMBIAN32__
  1.2699 + 
  1.2700 +OilFunctionClass* __oil_function_class_clipconv_u16_f64() {
  1.2701 +        return &_oil_function_class_clipconv_u16_f64;
  1.2702 +}
  1.2703 +#endif
  1.2704 +
  1.2705 +#ifdef	__SYMBIAN32__
  1.2706 + 
  1.2707 +OilFunctionClass* __oil_function_class_clipconv_s32_f32() {
  1.2708 +        return &_oil_function_class_clipconv_s32_f32;
  1.2709 +}
  1.2710 +#endif
  1.2711 +
  1.2712 +#ifdef	__SYMBIAN32__
  1.2713 + 
  1.2714 +OilFunctionClass* __oil_function_class_clipconv_s32_f64() {
  1.2715 +        return &_oil_function_class_clipconv_s32_f64;
  1.2716 +}
  1.2717 +#endif
  1.2718 +
  1.2719 +#ifdef	__SYMBIAN32__
  1.2720 + 
  1.2721 +OilFunctionClass* __oil_function_class_clipconv_u32_f32() {
  1.2722 +        return &_oil_function_class_clipconv_u32_f32;
  1.2723 +}
  1.2724 +#endif
  1.2725 +
  1.2726 +#ifdef	__SYMBIAN32__
  1.2727 + 
  1.2728 +OilFunctionClass* __oil_function_class_clipconv_u32_f64() {
  1.2729 +        return &_oil_function_class_clipconv_u32_f64;
  1.2730 +}
  1.2731 +#endif
  1.2732 +
  1.2733 +#ifdef	__SYMBIAN32__
  1.2734 + 
  1.2735 +OilFunctionClass* __oil_function_class_scaleconv_s8_f32() {
  1.2736 +        return &_oil_function_class_scaleconv_s8_f32;
  1.2737 +}
  1.2738 +#endif
  1.2739 +
  1.2740 +#ifdef	__SYMBIAN32__
  1.2741 + 
  1.2742 +OilFunctionClass* __oil_function_class_scaleconv_u8_f32() {
  1.2743 +        return &_oil_function_class_scaleconv_u8_f32;
  1.2744 +}
  1.2745 +#endif
  1.2746 +
  1.2747 +#ifdef	__SYMBIAN32__
  1.2748 + 
  1.2749 +OilFunctionClass* __oil_function_class_scaleconv_s16_f32() {
  1.2750 +        return &_oil_function_class_scaleconv_s16_f32;
  1.2751 +}
  1.2752 +#endif
  1.2753 +
  1.2754 +#ifdef	__SYMBIAN32__
  1.2755 + 
  1.2756 +OilFunctionClass* __oil_function_class_scaleconv_u16_f32() {
  1.2757 +        return &_oil_function_class_scaleconv_u16_f32;
  1.2758 +}
  1.2759 +#endif
  1.2760 +
  1.2761 +#ifdef	__SYMBIAN32__
  1.2762 + 
  1.2763 +OilFunctionClass* __oil_function_class_scaleconv_s32_f32() {
  1.2764 +        return &_oil_function_class_scaleconv_s32_f32;
  1.2765 +}
  1.2766 +#endif
  1.2767 +
  1.2768 +#ifdef	__SYMBIAN32__
  1.2769 + 
  1.2770 +OilFunctionClass* __oil_function_class_scaleconv_u32_f32() {
  1.2771 +        return &_oil_function_class_scaleconv_u32_f32;
  1.2772 +}
  1.2773 +#endif
  1.2774 +
  1.2775 +#ifdef	__SYMBIAN32__
  1.2776 + 
  1.2777 +OilFunctionClass* __oil_function_class_scaleconv_s8_f64() {
  1.2778 +        return &_oil_function_class_scaleconv_s8_f64;
  1.2779 +}
  1.2780 +#endif
  1.2781 +
  1.2782 +#ifdef	__SYMBIAN32__
  1.2783 + 
  1.2784 +OilFunctionClass* __oil_function_class_scaleconv_u8_f64() {
  1.2785 +        return &_oil_function_class_scaleconv_u8_f64;
  1.2786 +}
  1.2787 +#endif
  1.2788 +
  1.2789 +#ifdef	__SYMBIAN32__
  1.2790 + 
  1.2791 +OilFunctionClass* __oil_function_class_scaleconv_s16_f64() {
  1.2792 +        return &_oil_function_class_scaleconv_s16_f64;
  1.2793 +}
  1.2794 +#endif
  1.2795 +
  1.2796 +#ifdef	__SYMBIAN32__
  1.2797 + 
  1.2798 +OilFunctionClass* __oil_function_class_scaleconv_u16_f64() {
  1.2799 +        return &_oil_function_class_scaleconv_u16_f64;
  1.2800 +}
  1.2801 +#endif
  1.2802 +
  1.2803 +#ifdef	__SYMBIAN32__
  1.2804 + 
  1.2805 +OilFunctionClass* __oil_function_class_scaleconv_s32_f64() {
  1.2806 +        return &_oil_function_class_scaleconv_s32_f64;
  1.2807 +}
  1.2808 +#endif
  1.2809 +
  1.2810 +#ifdef	__SYMBIAN32__
  1.2811 + 
  1.2812 +OilFunctionClass* __oil_function_class_scaleconv_u32_f64() {
  1.2813 +        return &_oil_function_class_scaleconv_u32_f64;
  1.2814 +}
  1.2815 +#endif
  1.2816 +
  1.2817 +#ifdef	__SYMBIAN32__
  1.2818 + 
  1.2819 +OilFunctionClass* __oil_function_class_scaleconv_f32_s8() {
  1.2820 +        return &_oil_function_class_scaleconv_f32_s8;
  1.2821 +}
  1.2822 +#endif
  1.2823 +
  1.2824 +#ifdef	__SYMBIAN32__
  1.2825 + 
  1.2826 +OilFunctionClass* __oil_function_class_scaleconv_f32_u8() {
  1.2827 +        return &_oil_function_class_scaleconv_f32_u8;
  1.2828 +}
  1.2829 +#endif
  1.2830 +
  1.2831 +#ifdef	__SYMBIAN32__
  1.2832 + 
  1.2833 +OilFunctionClass* __oil_function_class_scaleconv_f32_s16() {
  1.2834 +        return &_oil_function_class_scaleconv_f32_s16;
  1.2835 +}
  1.2836 +#endif
  1.2837 +
  1.2838 +#ifdef	__SYMBIAN32__
  1.2839 + 
  1.2840 +OilFunctionClass* __oil_function_class_scaleconv_f32_u16() {
  1.2841 +        return &_oil_function_class_scaleconv_f32_u16;
  1.2842 +}
  1.2843 +#endif
  1.2844 +
  1.2845 +#ifdef	__SYMBIAN32__
  1.2846 + 
  1.2847 +OilFunctionClass* __oil_function_class_scaleconv_f32_s32() {
  1.2848 +        return &_oil_function_class_scaleconv_f32_s32;
  1.2849 +}
  1.2850 +#endif
  1.2851 +
  1.2852 +#ifdef	__SYMBIAN32__
  1.2853 + 
  1.2854 +OilFunctionClass* __oil_function_class_scaleconv_f32_u32() {
  1.2855 +        return &_oil_function_class_scaleconv_f32_u32;
  1.2856 +}
  1.2857 +#endif
  1.2858 +
  1.2859 +#ifdef	__SYMBIAN32__
  1.2860 + 
  1.2861 +OilFunctionClass* __oil_function_class_scaleconv_f64_s8() {
  1.2862 +        return &_oil_function_class_scaleconv_f64_s8;
  1.2863 +}
  1.2864 +#endif
  1.2865 +
  1.2866 +#ifdef	__SYMBIAN32__
  1.2867 + 
  1.2868 +OilFunctionClass* __oil_function_class_scaleconv_f64_u8() {
  1.2869 +        return &_oil_function_class_scaleconv_f64_u8;
  1.2870 +}
  1.2871 +#endif
  1.2872 +
  1.2873 +#ifdef	__SYMBIAN32__
  1.2874 + 
  1.2875 +OilFunctionClass* __oil_function_class_scaleconv_f64_s16() {
  1.2876 +        return &_oil_function_class_scaleconv_f64_s16;
  1.2877 +}
  1.2878 +#endif
  1.2879 +
  1.2880 +#ifdef	__SYMBIAN32__
  1.2881 + 
  1.2882 +OilFunctionClass* __oil_function_class_scaleconv_f64_u16() {
  1.2883 +        return &_oil_function_class_scaleconv_f64_u16;
  1.2884 +}
  1.2885 +#endif
  1.2886 +
  1.2887 +#ifdef	__SYMBIAN32__
  1.2888 + 
  1.2889 +OilFunctionClass* __oil_function_class_scaleconv_f64_s32() {
  1.2890 +        return &_oil_function_class_scaleconv_f64_s32;
  1.2891 +}
  1.2892 +#endif
  1.2893 +
  1.2894 +#ifdef	__SYMBIAN32__
  1.2895 + 
  1.2896 +OilFunctionClass* __oil_function_class_scaleconv_f64_u32() {
  1.2897 +        return &_oil_function_class_scaleconv_f64_u32;
  1.2898 +}
  1.2899 +#endif
  1.2900 +
  1.2901 +
  1.2902 +
  1.2903 +#ifdef	__SYMBIAN32__
  1.2904 + 
  1.2905 +OilFunctionImpl* __oil_function_impl_conv_s8_u8_ref() {
  1.2906 +		return &_oil_function_impl_conv_s8_u8_ref;
  1.2907 +}
  1.2908 +#endif
  1.2909 +
  1.2910 +#ifdef	__SYMBIAN32__
  1.2911 + 
  1.2912 +OilFunctionImpl* __oil_function_impl_conv_s8_s16_ref() {
  1.2913 +        return &_oil_function_impl_conv_s8_s16_ref;
  1.2914 +}
  1.2915 +#endif
  1.2916 +
  1.2917 +#ifdef	__SYMBIAN32__
  1.2918 + 
  1.2919 +OilFunctionImpl* __oil_function_impl_conv_s8_u16_ref() {
  1.2920 +        return &_oil_function_impl_conv_s8_u16_ref;
  1.2921 +}
  1.2922 +#endif
  1.2923 +
  1.2924 +#ifdef	__SYMBIAN32__
  1.2925 + 
  1.2926 +OilFunctionImpl* __oil_function_impl_conv_s8_s32_ref() {
  1.2927 +        return &_oil_function_impl_conv_s8_s32_ref;
  1.2928 +}
  1.2929 +#endif
  1.2930 +
  1.2931 +#ifdef	__SYMBIAN32__
  1.2932 + 
  1.2933 +OilFunctionImpl* __oil_function_impl_conv_s8_u32_ref() {
  1.2934 +        return &_oil_function_impl_conv_s8_u32_ref;
  1.2935 +}
  1.2936 +#endif
  1.2937 +
  1.2938 +#ifdef	__SYMBIAN32__
  1.2939 + 
  1.2940 +OilFunctionImpl* __oil_function_impl_conv_s8_f32_ref() {
  1.2941 +        return &_oil_function_impl_conv_s8_f32_ref;
  1.2942 +}
  1.2943 +#endif
  1.2944 +
  1.2945 +#ifdef	__SYMBIAN32__
  1.2946 + 
  1.2947 +OilFunctionImpl* __oil_function_impl_conv_s8_f64_ref() {
  1.2948 +        return &_oil_function_impl_conv_s8_f64_ref;
  1.2949 +}
  1.2950 +#endif
  1.2951 +
  1.2952 +#ifdef	__SYMBIAN32__
  1.2953 + 
  1.2954 +OilFunctionImpl* __oil_function_impl_conv_u8_s8_ref() {
  1.2955 +        return &_oil_function_impl_conv_u8_s8_ref;
  1.2956 +}
  1.2957 +#endif
  1.2958 +
  1.2959 +#ifdef	__SYMBIAN32__
  1.2960 + 
  1.2961 +OilFunctionImpl* __oil_function_impl_conv_u8_s16_ref() {
  1.2962 +        return &_oil_function_impl_conv_u8_s16_ref;
  1.2963 +}
  1.2964 +#endif
  1.2965 +
  1.2966 +#ifdef	__SYMBIAN32__
  1.2967 + 
  1.2968 +OilFunctionImpl* __oil_function_impl_conv_u8_u16_ref() {
  1.2969 +        return &_oil_function_impl_conv_u8_u16_ref;
  1.2970 +}
  1.2971 +#endif
  1.2972 +
  1.2973 +#ifdef	__SYMBIAN32__
  1.2974 + 
  1.2975 +OilFunctionImpl* __oil_function_impl_conv_u8_s32_ref() {
  1.2976 +        return &_oil_function_impl_conv_u8_s32_ref;
  1.2977 +}
  1.2978 +#endif
  1.2979 +
  1.2980 +#ifdef	__SYMBIAN32__
  1.2981 + 
  1.2982 +OilFunctionImpl* __oil_function_impl_conv_u8_u32_ref() {
  1.2983 +        return &_oil_function_impl_conv_u8_u32_ref;
  1.2984 +}
  1.2985 +#endif
  1.2986 +
  1.2987 +#ifdef	__SYMBIAN32__
  1.2988 + 
  1.2989 +OilFunctionImpl* __oil_function_impl_conv_u8_f32_ref() {
  1.2990 +        return &_oil_function_impl_conv_u8_f32_ref;
  1.2991 +}
  1.2992 +#endif
  1.2993 +
  1.2994 +#ifdef	__SYMBIAN32__
  1.2995 + 
  1.2996 +OilFunctionImpl* __oil_function_impl_conv_u8_f64_ref() {
  1.2997 +        return &_oil_function_impl_conv_u8_f64_ref;
  1.2998 +}
  1.2999 +#endif
  1.3000 +
  1.3001 +#ifdef	__SYMBIAN32__
  1.3002 + 
  1.3003 +OilFunctionImpl* __oil_function_impl_conv_s16_s8_ref() {
  1.3004 +        return &_oil_function_impl_conv_s16_s8_ref;
  1.3005 +}
  1.3006 +#endif
  1.3007 +
  1.3008 +#ifdef	__SYMBIAN32__
  1.3009 + 
  1.3010 +OilFunctionImpl* __oil_function_impl_conv_s16_u8_ref() {
  1.3011 +        return &_oil_function_impl_conv_s16_u8_ref;
  1.3012 +}
  1.3013 +#endif
  1.3014 +
  1.3015 +#ifdef	__SYMBIAN32__
  1.3016 + 
  1.3017 +OilFunctionImpl* __oil_function_impl_conv_s16_u16_ref() {
  1.3018 +        return &_oil_function_impl_conv_s16_u16_ref;
  1.3019 +}
  1.3020 +#endif
  1.3021 +
  1.3022 +#ifdef	__SYMBIAN32__
  1.3023 + 
  1.3024 +OilFunctionImpl* __oil_function_impl_conv_s16_s32_ref() {
  1.3025 +        return &_oil_function_impl_conv_s16_s32_ref;
  1.3026 +}
  1.3027 +#endif
  1.3028 +
  1.3029 +#ifdef	__SYMBIAN32__
  1.3030 + 
  1.3031 +OilFunctionImpl* __oil_function_impl_conv_s16_u32_ref() {
  1.3032 +        return &_oil_function_impl_conv_s16_u32_ref;
  1.3033 +}
  1.3034 +#endif
  1.3035 +
  1.3036 +#ifdef	__SYMBIAN32__
  1.3037 + 
  1.3038 +OilFunctionImpl* __oil_function_impl_conv_s16_f32_ref() {
  1.3039 +        return &_oil_function_impl_conv_s16_f32_ref;
  1.3040 +}
  1.3041 +#endif
  1.3042 +
  1.3043 +#ifdef	__SYMBIAN32__
  1.3044 + 
  1.3045 +OilFunctionImpl* __oil_function_impl_conv_s16_f64_ref() {
  1.3046 +        return &_oil_function_impl_conv_s16_f64_ref;
  1.3047 +}
  1.3048 +#endif
  1.3049 +
  1.3050 +#ifdef	__SYMBIAN32__
  1.3051 + 
  1.3052 +OilFunctionImpl* __oil_function_impl_conv_u16_s8_ref() {
  1.3053 +        return &_oil_function_impl_conv_u16_s8_ref;
  1.3054 +}
  1.3055 +#endif
  1.3056 +
  1.3057 +#ifdef	__SYMBIAN32__
  1.3058 + 
  1.3059 +OilFunctionImpl* __oil_function_impl_conv_u16_u8_ref() {
  1.3060 +        return &_oil_function_impl_conv_u16_u8_ref;
  1.3061 +}
  1.3062 +#endif
  1.3063 +
  1.3064 +#ifdef	__SYMBIAN32__
  1.3065 + 
  1.3066 +OilFunctionImpl* __oil_function_impl_conv_u16_s16_ref() {
  1.3067 +        return &_oil_function_impl_conv_u16_s16_ref;
  1.3068 +}
  1.3069 +#endif
  1.3070 +
  1.3071 +#ifdef	__SYMBIAN32__
  1.3072 + 
  1.3073 +OilFunctionImpl* __oil_function_impl_conv_u16_s32_ref() {
  1.3074 +        return &_oil_function_impl_conv_u16_s32_ref;
  1.3075 +}
  1.3076 +#endif
  1.3077 +
  1.3078 +#ifdef	__SYMBIAN32__
  1.3079 + 
  1.3080 +OilFunctionImpl* __oil_function_impl_conv_u16_u32_ref() {
  1.3081 +        return &_oil_function_impl_conv_u16_u32_ref;
  1.3082 +}
  1.3083 +#endif
  1.3084 +
  1.3085 +#ifdef	__SYMBIAN32__
  1.3086 + 
  1.3087 +OilFunctionImpl* __oil_function_impl_conv_u16_f32_ref() {
  1.3088 +        return &_oil_function_impl_conv_u16_f32_ref;
  1.3089 +}
  1.3090 +#endif
  1.3091 +
  1.3092 +#ifdef	__SYMBIAN32__
  1.3093 + 
  1.3094 +OilFunctionImpl* __oil_function_impl_conv_u16_f64_ref() {
  1.3095 +        return &_oil_function_impl_conv_u16_f64_ref;
  1.3096 +}
  1.3097 +#endif
  1.3098 +
  1.3099 +#ifdef	__SYMBIAN32__
  1.3100 + 
  1.3101 +OilFunctionImpl* __oil_function_impl_conv_s32_s8_ref() {
  1.3102 +        return &_oil_function_impl_conv_s32_s8_ref;
  1.3103 +}
  1.3104 +#endif
  1.3105 +
  1.3106 +#ifdef	__SYMBIAN32__
  1.3107 + 
  1.3108 +OilFunctionImpl* __oil_function_impl_conv_s32_s16_ref() {
  1.3109 +        return &_oil_function_impl_conv_s32_s16_ref;
  1.3110 +}
  1.3111 +#endif
  1.3112 +
  1.3113 +#ifdef	__SYMBIAN32__
  1.3114 + 
  1.3115 +OilFunctionImpl* __oil_function_impl_conv_s32_u8_ref() {
  1.3116 +        return &_oil_function_impl_conv_s32_u8_ref;
  1.3117 +}
  1.3118 +#endif
  1.3119 +
  1.3120 +#ifdef	__SYMBIAN32__
  1.3121 + 
  1.3122 +OilFunctionImpl* __oil_function_impl_conv_s32_u16_ref() {
  1.3123 +        return &_oil_function_impl_conv_s32_u16_ref;
  1.3124 +}
  1.3125 +#endif
  1.3126 +
  1.3127 +#ifdef	__SYMBIAN32__
  1.3128 + 
  1.3129 +OilFunctionImpl* __oil_function_impl_conv_s32_u32_ref() {
  1.3130 +        return &_oil_function_impl_conv_s32_u32_ref;
  1.3131 +}
  1.3132 +#endif
  1.3133 +
  1.3134 +#ifdef	__SYMBIAN32__
  1.3135 + 
  1.3136 +OilFunctionImpl* __oil_function_impl_conv_s32_f32_ref() {
  1.3137 +        return &_oil_function_impl_conv_s32_f32_ref;
  1.3138 +}
  1.3139 +#endif
  1.3140 +
  1.3141 +#ifdef	__SYMBIAN32__
  1.3142 + 
  1.3143 +OilFunctionImpl* __oil_function_impl_conv_s32_f64_ref() {
  1.3144 +        return &_oil_function_impl_conv_s32_f64_ref;
  1.3145 +}
  1.3146 +#endif
  1.3147 +
  1.3148 +#ifdef	__SYMBIAN32__
  1.3149 + 
  1.3150 +OilFunctionImpl* __oil_function_impl_conv_u32_s8_ref() {
  1.3151 +        return &_oil_function_impl_conv_u32_s8_ref;
  1.3152 +}
  1.3153 +#endif
  1.3154 +
  1.3155 +#ifdef	__SYMBIAN32__
  1.3156 + 
  1.3157 +OilFunctionImpl* __oil_function_impl_conv_u32_s16_ref() {
  1.3158 +        return &_oil_function_impl_conv_u32_s16_ref;
  1.3159 +}
  1.3160 +#endif
  1.3161 +
  1.3162 +#ifdef	__SYMBIAN32__
  1.3163 + 
  1.3164 +OilFunctionImpl* __oil_function_impl_conv_u32_u8_ref() {
  1.3165 +        return &_oil_function_impl_conv_u32_u8_ref;
  1.3166 +}
  1.3167 +#endif
  1.3168 +
  1.3169 +#ifdef	__SYMBIAN32__
  1.3170 + 
  1.3171 +OilFunctionImpl* __oil_function_impl_conv_u32_u16_ref() {
  1.3172 +        return &_oil_function_impl_conv_u32_u16_ref;
  1.3173 +}
  1.3174 +#endif
  1.3175 +
  1.3176 +#ifdef	__SYMBIAN32__
  1.3177 + 
  1.3178 +OilFunctionImpl* __oil_function_impl_conv_u32_s32_ref() {
  1.3179 +        return &_oil_function_impl_conv_u32_s32_ref;
  1.3180 +}
  1.3181 +#endif
  1.3182 +
  1.3183 +#ifdef	__SYMBIAN32__
  1.3184 + 
  1.3185 +OilFunctionImpl* __oil_function_impl_conv_u32_f32_ref() {
  1.3186 +        return &_oil_function_impl_conv_u32_f32_ref;
  1.3187 +}
  1.3188 +#endif
  1.3189 +
  1.3190 +#ifdef	__SYMBIAN32__
  1.3191 + 
  1.3192 +OilFunctionImpl* __oil_function_impl_conv_u32_f64_ref() {
  1.3193 +        return &_oil_function_impl_conv_u32_f64_ref;
  1.3194 +}
  1.3195 +#endif
  1.3196 +
  1.3197 +#ifdef	__SYMBIAN32__
  1.3198 + 
  1.3199 +OilFunctionImpl* __oil_function_impl_conv_f32_s8_ref() {
  1.3200 +        return &_oil_function_impl_conv_f32_s8_ref;
  1.3201 +}
  1.3202 +#endif
  1.3203 +
  1.3204 +#ifdef	__SYMBIAN32__
  1.3205 + 
  1.3206 +OilFunctionImpl* __oil_function_impl_conv_f32_s16_ref() {
  1.3207 +        return &_oil_function_impl_conv_f32_s16_ref;
  1.3208 +}
  1.3209 +#endif
  1.3210 +
  1.3211 +#ifdef	__SYMBIAN32__
  1.3212 + 
  1.3213 +OilFunctionImpl* __oil_function_impl_conv_f32_u8_ref() {
  1.3214 +        return &_oil_function_impl_conv_f32_u8_ref;
  1.3215 +}
  1.3216 +#endif
  1.3217 +
  1.3218 +#ifdef	__SYMBIAN32__
  1.3219 + 
  1.3220 +OilFunctionImpl* __oil_function_impl_conv_f32_u16_ref() {
  1.3221 +        return &_oil_function_impl_conv_f32_u16_ref;
  1.3222 +}
  1.3223 +#endif
  1.3224 +
  1.3225 +#ifdef	__SYMBIAN32__
  1.3226 + 
  1.3227 +OilFunctionImpl* __oil_function_impl_conv_f32_s32_ref() {
  1.3228 +        return &_oil_function_impl_conv_f32_s32_ref;
  1.3229 +}
  1.3230 +#endif
  1.3231 +
  1.3232 +#ifdef	__SYMBIAN32__
  1.3233 + 
  1.3234 +OilFunctionImpl* __oil_function_impl_conv_f32_u32_ref() {
  1.3235 +        return &_oil_function_impl_conv_f32_u32_ref;
  1.3236 +}
  1.3237 +#endif
  1.3238 +
  1.3239 +#ifdef	__SYMBIAN32__
  1.3240 + 
  1.3241 +OilFunctionImpl* __oil_function_impl_conv_f32_f64_ref() {
  1.3242 +        return &_oil_function_impl_conv_f32_f64_ref;
  1.3243 +}
  1.3244 +#endif
  1.3245 +
  1.3246 +#ifdef	__SYMBIAN32__
  1.3247 + 
  1.3248 +OilFunctionImpl* __oil_function_impl_conv_f64_s8_ref() {
  1.3249 +        return &_oil_function_impl_conv_f64_s8_ref;
  1.3250 +}
  1.3251 +#endif
  1.3252 +
  1.3253 +#ifdef	__SYMBIAN32__
  1.3254 + 
  1.3255 +OilFunctionImpl* __oil_function_impl_conv_f64_u8_ref() {
  1.3256 +        return &_oil_function_impl_conv_f64_u8_ref;
  1.3257 +}
  1.3258 +#endif
  1.3259 +
  1.3260 +#ifdef	__SYMBIAN32__
  1.3261 + 
  1.3262 +OilFunctionImpl* __oil_function_impl_conv_f64_s16_ref() {
  1.3263 +        return &_oil_function_impl_conv_f64_s16_ref;
  1.3264 +}
  1.3265 +#endif
  1.3266 +
  1.3267 +#ifdef	__SYMBIAN32__
  1.3268 + 
  1.3269 +OilFunctionImpl* __oil_function_impl_conv_f64_u16_ref() {
  1.3270 +        return &_oil_function_impl_conv_f64_u16_ref;
  1.3271 +}
  1.3272 +#endif
  1.3273 +
  1.3274 +#ifdef	__SYMBIAN32__
  1.3275 + 
  1.3276 +OilFunctionImpl* __oil_function_impl_conv_f64_s32_ref() {
  1.3277 +        return &_oil_function_impl_conv_f64_s32_ref;
  1.3278 +}
  1.3279 +#endif
  1.3280 +
  1.3281 +#ifdef	__SYMBIAN32__
  1.3282 + 
  1.3283 +OilFunctionImpl* __oil_function_impl_conv_f64_u32_ref() {
  1.3284 +        return &_oil_function_impl_conv_f64_u32_ref;
  1.3285 +}
  1.3286 +#endif
  1.3287 +
  1.3288 +#ifdef	__SYMBIAN32__
  1.3289 + 
  1.3290 +OilFunctionImpl* __oil_function_impl_conv_f64_f32_ref() {
  1.3291 +        return &_oil_function_impl_conv_f64_f32_ref;
  1.3292 +}
  1.3293 +#endif
  1.3294 +
  1.3295 +#ifdef	__SYMBIAN32__
  1.3296 + 
  1.3297 +OilFunctionImpl* __oil_function_impl_clipconv_s8_u8_ref() {
  1.3298 +        return &_oil_function_impl_clipconv_s8_u8_ref;
  1.3299 +}
  1.3300 +#endif
  1.3301 +
  1.3302 +#ifdef	__SYMBIAN32__
  1.3303 + 
  1.3304 +OilFunctionImpl* __oil_function_impl_clipconv_s8_u16_ref() {
  1.3305 +        return &_oil_function_impl_clipconv_s8_u16_ref;
  1.3306 +}
  1.3307 +#endif
  1.3308 +
  1.3309 +#ifdef	__SYMBIAN32__
  1.3310 + 
  1.3311 +OilFunctionImpl* __oil_function_impl_clipconv_s8_u32_ref() {
  1.3312 +        return &_oil_function_impl_clipconv_s8_u32_ref;
  1.3313 +}
  1.3314 +#endif
  1.3315 +
  1.3316 +#ifdef	__SYMBIAN32__
  1.3317 + 
  1.3318 +OilFunctionImpl* __oil_function_impl_clipconv_u8_u32_ref() {
  1.3319 +        return &_oil_function_impl_clipconv_u8_u32_ref;
  1.3320 +}
  1.3321 +#endif
  1.3322 +
  1.3323 +#ifdef	__SYMBIAN32__
  1.3324 + 
  1.3325 +OilFunctionImpl* __oil_function_impl_clipconv_u8_u16_ref() {
  1.3326 +        return &_oil_function_impl_clipconv_u8_u16_ref;
  1.3327 +}
  1.3328 +#endif
  1.3329 +
  1.3330 +#ifdef	__SYMBIAN32__
  1.3331 + 
  1.3332 +OilFunctionImpl* __oil_function_impl_clipconv_s16_u16_ref() {
  1.3333 +        return &_oil_function_impl_clipconv_s16_u16_ref;
  1.3334 +}
  1.3335 +#endif
  1.3336 +
  1.3337 +#ifdef	__SYMBIAN32__
  1.3338 + 
  1.3339 +OilFunctionImpl* __oil_function_impl_clipconv_s16_u32_ref() {
  1.3340 +        return &_oil_function_impl_clipconv_s16_u32_ref;
  1.3341 +}
  1.3342 +#endif
  1.3343 +
  1.3344 +#ifdef	__SYMBIAN32__
  1.3345 + 
  1.3346 +OilFunctionImpl* __oil_function_impl_clipconv_s32_u32_ref() {
  1.3347 +        return &_oil_function_impl_clipconv_s32_u32_ref;
  1.3348 +}
  1.3349 +#endif
  1.3350 +
  1.3351 +#ifdef	__SYMBIAN32__
  1.3352 + 
  1.3353 +OilFunctionImpl* __oil_function_impl_clipconv_u16_u32_ref() {
  1.3354 +        return &_oil_function_impl_clipconv_u16_u32_ref;
  1.3355 +}
  1.3356 +#endif
  1.3357 +
  1.3358 +#ifdef	__SYMBIAN32__
  1.3359 + 
  1.3360 +OilFunctionImpl* __oil_function_impl_clipconv_s8_s16_ref() {
  1.3361 +        return &_oil_function_impl_clipconv_s8_s16_ref;
  1.3362 +}
  1.3363 +#endif
  1.3364 +
  1.3365 +#ifdef	__SYMBIAN32__
  1.3366 + 
  1.3367 +OilFunctionImpl* __oil_function_impl_clipconv_s8_s32_ref() {
  1.3368 +        return &_oil_function_impl_clipconv_s8_s32_ref;
  1.3369 +}
  1.3370 +#endif
  1.3371 +
  1.3372 +#ifdef	__SYMBIAN32__
  1.3373 + 
  1.3374 +OilFunctionImpl* __oil_function_impl_clipconv_u8_s16_ref() {
  1.3375 +        return &_oil_function_impl_clipconv_u8_s16_ref;
  1.3376 +}
  1.3377 +#endif
  1.3378 +
  1.3379 +#ifdef	__SYMBIAN32__
  1.3380 + 
  1.3381 +OilFunctionImpl* __oil_function_impl_clipconv_u8_s32_ref() {
  1.3382 +        return &_oil_function_impl_clipconv_u8_s32_ref;
  1.3383 +}
  1.3384 +#endif
  1.3385 +
  1.3386 +#ifdef	__SYMBIAN32__
  1.3387 + 
  1.3388 +OilFunctionImpl* __oil_function_impl_clipconv_s16_s32_ref() {
  1.3389 +        return &_oil_function_impl_clipconv_s16_s32_ref;
  1.3390 +}
  1.3391 +#endif
  1.3392 +
  1.3393 +#ifdef	__SYMBIAN32__
  1.3394 + 
  1.3395 +OilFunctionImpl* __oil_function_impl_clipconv_u16_s32_ref() {
  1.3396 +        return &_oil_function_impl_clipconv_u16_s32_ref;
  1.3397 +}
  1.3398 +#endif
  1.3399 +
  1.3400 +#ifdef	__SYMBIAN32__
  1.3401 + 
  1.3402 +OilFunctionImpl* __oil_function_impl_clipconv_u8_s8_ref() {
  1.3403 +        return &_oil_function_impl_clipconv_u8_s8_ref;
  1.3404 +}
  1.3405 +#endif
  1.3406 +
  1.3407 +#ifdef	__SYMBIAN32__
  1.3408 + 
  1.3409 +OilFunctionImpl* __oil_function_impl_clipconv_u16_s16_ref() {
  1.3410 +        return &_oil_function_impl_clipconv_u16_s16_ref;
  1.3411 +}
  1.3412 +#endif
  1.3413 +
  1.3414 +#ifdef	__SYMBIAN32__
  1.3415 + 
  1.3416 +OilFunctionImpl* __oil_function_impl_clipconv_u32_s32_ref() {
  1.3417 +        return &_oil_function_impl_clipconv_u32_s32_ref;
  1.3418 +}
  1.3419 +#endif
  1.3420 +
  1.3421 +#ifdef	__SYMBIAN32__
  1.3422 + 
  1.3423 +OilFunctionImpl* __oil_function_impl_clipconv_s8_f32_ref() {
  1.3424 +        return &_oil_function_impl_clipconv_s8_f32_ref;
  1.3425 +}
  1.3426 +#endif
  1.3427 +
  1.3428 +#ifdef	__SYMBIAN32__
  1.3429 + 
  1.3430 +OilFunctionImpl* __oil_function_impl_clipconv_s8_f64_ref() {
  1.3431 +        return &_oil_function_impl_clipconv_s8_f64_ref;
  1.3432 +}
  1.3433 +#endif
  1.3434 +
  1.3435 +#ifdef	__SYMBIAN32__
  1.3436 + 
  1.3437 +OilFunctionImpl* __oil_function_impl_clipconv_u8_f32_ref() {
  1.3438 +        return &_oil_function_impl_clipconv_u8_f32_ref;
  1.3439 +}
  1.3440 +#endif
  1.3441 +
  1.3442 +#ifdef	__SYMBIAN32__
  1.3443 + 
  1.3444 +OilFunctionImpl* __oil_function_impl_clipconv_u8_f64_ref() {
  1.3445 +        return &_oil_function_impl_clipconv_u8_f64_ref;
  1.3446 +}
  1.3447 +#endif
  1.3448 +
  1.3449 +#ifdef	__SYMBIAN32__
  1.3450 + 
  1.3451 +OilFunctionImpl* __oil_function_impl_clipconv_s16_f32_ref() {
  1.3452 +        return &_oil_function_impl_clipconv_s16_f32_ref;
  1.3453 +}
  1.3454 +#endif
  1.3455 +
  1.3456 +#ifdef	__SYMBIAN32__
  1.3457 + 
  1.3458 +OilFunctionImpl* __oil_function_impl_clipconv_s16_f64_ref() {
  1.3459 +        return &_oil_function_impl_clipconv_s16_f64_ref;
  1.3460 +}
  1.3461 +#endif
  1.3462 +
  1.3463 +#ifdef	__SYMBIAN32__
  1.3464 + 
  1.3465 +OilFunctionImpl* __oil_function_impl_clipconv_u16_f32_ref() {
  1.3466 +        return &_oil_function_impl_clipconv_u16_f32_ref;
  1.3467 +}
  1.3468 +#endif
  1.3469 +
  1.3470 +#ifdef	__SYMBIAN32__
  1.3471 + 
  1.3472 +OilFunctionImpl* __oil_function_impl_clipconv_u16_f64_ref() {
  1.3473 +        return &_oil_function_impl_clipconv_u16_f64_ref;
  1.3474 +}
  1.3475 +#endif
  1.3476 +
  1.3477 +#ifdef	__SYMBIAN32__
  1.3478 + 
  1.3479 +OilFunctionImpl* __oil_function_impl_clipconv_s32_f32_ref() {
  1.3480 +        return &_oil_function_impl_clipconv_s32_f32_ref;
  1.3481 +}
  1.3482 +#endif
  1.3483 +
  1.3484 +#ifdef	__SYMBIAN32__
  1.3485 + 
  1.3486 +OilFunctionImpl* __oil_function_impl_clipconv_s32_f64_ref() {
  1.3487 +        return &_oil_function_impl_clipconv_s32_f64_ref;
  1.3488 +}
  1.3489 +#endif
  1.3490 +
  1.3491 +#ifdef	__SYMBIAN32__
  1.3492 + 
  1.3493 +OilFunctionImpl* __oil_function_impl_clipconv_u32_f32_ref() {
  1.3494 +        return &_oil_function_impl_clipconv_u32_f32_ref;
  1.3495 +}
  1.3496 +#endif
  1.3497 +
  1.3498 +#ifdef	__SYMBIAN32__
  1.3499 + 
  1.3500 +OilFunctionImpl* __oil_function_impl_clipconv_u32_f64_ref() {
  1.3501 +        return &_oil_function_impl_clipconv_u32_f64_ref;
  1.3502 +}
  1.3503 +#endif
  1.3504 +
  1.3505 +#ifdef	__SYMBIAN32__
  1.3506 + 
  1.3507 +OilFunctionImpl* __oil_function_impl_scaleconv_s8_f32_ref() {
  1.3508 +        return &_oil_function_impl_scaleconv_s8_f32_ref;
  1.3509 +}
  1.3510 +#endif
  1.3511 +
  1.3512 +#ifdef	__SYMBIAN32__
  1.3513 + 
  1.3514 +OilFunctionImpl* __oil_function_impl_scaleconv_u8_f32_ref() {
  1.3515 +        return &_oil_function_impl_scaleconv_u8_f32_ref;
  1.3516 +}
  1.3517 +#endif
  1.3518 +
  1.3519 +#ifdef	__SYMBIAN32__
  1.3520 + 
  1.3521 +OilFunctionImpl* __oil_function_impl_scaleconv_s16_f32_ref() {
  1.3522 +        return &_oil_function_impl_scaleconv_s16_f32_ref;
  1.3523 +}
  1.3524 +#endif
  1.3525 +
  1.3526 +#ifdef	__SYMBIAN32__
  1.3527 + 
  1.3528 +OilFunctionImpl* __oil_function_impl_scaleconv_u16_f32_ref() {
  1.3529 +        return &_oil_function_impl_scaleconv_u16_f32_ref;
  1.3530 +}
  1.3531 +#endif
  1.3532 +
  1.3533 +#ifdef	__SYMBIAN32__
  1.3534 + 
  1.3535 +OilFunctionImpl* __oil_function_impl_scaleconv_s32_f32_ref() {
  1.3536 +        return &_oil_function_impl_scaleconv_s32_f32_ref;
  1.3537 +}
  1.3538 +#endif
  1.3539 +
  1.3540 +#ifdef	__SYMBIAN32__
  1.3541 + 
  1.3542 +OilFunctionImpl* __oil_function_impl_scaleconv_u32_f32_ref() {
  1.3543 +        return &_oil_function_impl_scaleconv_u32_f32_ref;
  1.3544 +}
  1.3545 +#endif
  1.3546 +
  1.3547 +#ifdef	__SYMBIAN32__
  1.3548 + 
  1.3549 +OilFunctionImpl* __oil_function_impl_scaleconv_s8_f64_ref() {
  1.3550 +        return &_oil_function_impl_scaleconv_s8_f64_ref;
  1.3551 +}
  1.3552 +#endif
  1.3553 +
  1.3554 +#ifdef	__SYMBIAN32__
  1.3555 + 
  1.3556 +OilFunctionImpl* __oil_function_impl_scaleconv_u8_f64_ref() {
  1.3557 +        return &_oil_function_impl_scaleconv_u8_f64_ref;
  1.3558 +}
  1.3559 +#endif
  1.3560 +
  1.3561 +#ifdef	__SYMBIAN32__
  1.3562 + 
  1.3563 +OilFunctionImpl* __oil_function_impl_scaleconv_s16_f64_ref() {
  1.3564 +        return &_oil_function_impl_scaleconv_s16_f64_ref;
  1.3565 +}
  1.3566 +#endif
  1.3567 +
  1.3568 +#ifdef	__SYMBIAN32__
  1.3569 + 
  1.3570 +OilFunctionImpl* __oil_function_impl_scaleconv_u16_f64_ref() {
  1.3571 +        return &_oil_function_impl_scaleconv_u16_f64_ref;
  1.3572 +}
  1.3573 +#endif
  1.3574 +
  1.3575 +#ifdef	__SYMBIAN32__
  1.3576 + 
  1.3577 +OilFunctionImpl* __oil_function_impl_scaleconv_s32_f64_ref() {
  1.3578 +        return &_oil_function_impl_scaleconv_s32_f64_ref;
  1.3579 +}
  1.3580 +#endif
  1.3581 +
  1.3582 +#ifdef	__SYMBIAN32__
  1.3583 + 
  1.3584 +OilFunctionImpl* __oil_function_impl_scaleconv_u32_f64_ref() {
  1.3585 +        return &_oil_function_impl_scaleconv_u32_f64_ref;
  1.3586 +}
  1.3587 +#endif
  1.3588 +
  1.3589 +#ifdef	__SYMBIAN32__
  1.3590 + 
  1.3591 +OilFunctionImpl* __oil_function_impl_scaleconv_f32_s8_ref() {
  1.3592 +        return &_oil_function_impl_scaleconv_f32_s8_ref;
  1.3593 +}
  1.3594 +#endif
  1.3595 +
  1.3596 +#ifdef	__SYMBIAN32__
  1.3597 + 
  1.3598 +OilFunctionImpl* __oil_function_impl_scaleconv_f32_u8_ref() {
  1.3599 +        return &_oil_function_impl_scaleconv_f32_u8_ref;
  1.3600 +}
  1.3601 +#endif
  1.3602 +
  1.3603 +#ifdef	__SYMBIAN32__
  1.3604 + 
  1.3605 +OilFunctionImpl* __oil_function_impl_scaleconv_f32_s16_ref() {
  1.3606 +        return &_oil_function_impl_scaleconv_f32_s16_ref;
  1.3607 +}
  1.3608 +#endif
  1.3609 +
  1.3610 +#ifdef	__SYMBIAN32__
  1.3611 + 
  1.3612 +OilFunctionImpl* __oil_function_impl_scaleconv_f32_u16_ref() {
  1.3613 +        return &_oil_function_impl_scaleconv_f32_u16_ref;
  1.3614 +}
  1.3615 +#endif
  1.3616 +
  1.3617 +#ifdef	__SYMBIAN32__
  1.3618 + 
  1.3619 +OilFunctionImpl* __oil_function_impl_scaleconv_f32_s32_ref() {
  1.3620 +        return &_oil_function_impl_scaleconv_f32_s32_ref;
  1.3621 +}
  1.3622 +#endif
  1.3623 +
  1.3624 +#ifdef	__SYMBIAN32__
  1.3625 + 
  1.3626 +OilFunctionImpl* __oil_function_impl_scaleconv_f32_u32_ref() {
  1.3627 +        return &_oil_function_impl_scaleconv_f32_u32_ref;
  1.3628 +}
  1.3629 +#endif
  1.3630 +
  1.3631 +#ifdef	__SYMBIAN32__
  1.3632 + 
  1.3633 +OilFunctionImpl* __oil_function_impl_scaleconv_f64_s8_ref() {
  1.3634 +        return &_oil_function_impl_scaleconv_f64_s8_ref;
  1.3635 +}
  1.3636 +#endif
  1.3637 +
  1.3638 +#ifdef	__SYMBIAN32__
  1.3639 + 
  1.3640 +OilFunctionImpl* __oil_function_impl_scaleconv_f64_u8_ref() {
  1.3641 +        return &_oil_function_impl_scaleconv_f64_u8_ref;
  1.3642 +}
  1.3643 +#endif
  1.3644 +
  1.3645 +#ifdef	__SYMBIAN32__
  1.3646 + 
  1.3647 +OilFunctionImpl* __oil_function_impl_scaleconv_f64_s16_ref() {
  1.3648 +        return &_oil_function_impl_scaleconv_f64_s16_ref;
  1.3649 +}
  1.3650 +#endif
  1.3651 +
  1.3652 +#ifdef	__SYMBIAN32__
  1.3653 + 
  1.3654 +OilFunctionImpl* __oil_function_impl_scaleconv_f64_u16_ref() {
  1.3655 +        return &_oil_function_impl_scaleconv_f64_u16_ref;
  1.3656 +}
  1.3657 +#endif
  1.3658 +
  1.3659 +#ifdef	__SYMBIAN32__
  1.3660 + 
  1.3661 +OilFunctionImpl* __oil_function_impl_scaleconv_f64_s32_ref() {
  1.3662 +        return &_oil_function_impl_scaleconv_f64_s32_ref;
  1.3663 +}
  1.3664 +#endif
  1.3665 +
  1.3666 +#ifdef	__SYMBIAN32__
  1.3667 + 
  1.3668 +OilFunctionImpl* __oil_function_impl_scaleconv_f64_u32_ref() {
  1.3669 +        return &_oil_function_impl_scaleconv_f64_u32_ref;
  1.3670 +}
  1.3671 +#endif
  1.3672 +
  1.3673 +
  1.3674 +
  1.3675 +#ifdef	__SYMBIAN32__
  1.3676 + 
  1.3677 +EXPORT_C void** _oil_function_class_ptr_conv_s8_u8 ()	{
  1.3678 +	oil_function_class_ptr_conv_s8_u8 = __oil_function_class_conv_s8_u8();
  1.3679 +	return &oil_function_class_ptr_conv_s8_u8->func;
  1.3680 +	}
  1.3681 +#endif
  1.3682 +
  1.3683 +#ifdef	__SYMBIAN32__
  1.3684 + 
  1.3685 +EXPORT_C void** _oil_function_class_ptr_conv_s8_s16 ()	{
  1.3686 +	oil_function_class_ptr_conv_s8_s16 = __oil_function_class_conv_s8_s16();
  1.3687 +	return &oil_function_class_ptr_conv_s8_s16->func;
  1.3688 +	}
  1.3689 +#endif
  1.3690 +
  1.3691 +#ifdef	__SYMBIAN32__
  1.3692 + 
  1.3693 +EXPORT_C void** _oil_function_class_ptr_conv_s8_u16 ()	{
  1.3694 +	oil_function_class_ptr_conv_s8_u16 = __oil_function_class_conv_s8_u16();
  1.3695 +	return &oil_function_class_ptr_conv_s8_u16->func;
  1.3696 +	}
  1.3697 +#endif
  1.3698 +
  1.3699 +#ifdef	__SYMBIAN32__
  1.3700 + 
  1.3701 +EXPORT_C void** _oil_function_class_ptr_conv_s8_s32 ()	{
  1.3702 +	oil_function_class_ptr_conv_s8_s32 = __oil_function_class_conv_s8_s32();
  1.3703 +	return &oil_function_class_ptr_conv_s8_s32->func;
  1.3704 +	}
  1.3705 +#endif
  1.3706 +
  1.3707 +#ifdef	__SYMBIAN32__
  1.3708 + 
  1.3709 +EXPORT_C void** _oil_function_class_ptr_conv_s8_u32 ()	{
  1.3710 +	oil_function_class_ptr_conv_s8_u32 = __oil_function_class_conv_s8_u32();
  1.3711 +	return &oil_function_class_ptr_conv_s8_u32->func;
  1.3712 +	}
  1.3713 +#endif
  1.3714 +
  1.3715 +#ifdef	__SYMBIAN32__
  1.3716 + 
  1.3717 +EXPORT_C void** _oil_function_class_ptr_conv_s8_f32 ()	{
  1.3718 +	oil_function_class_ptr_conv_s8_f32 = __oil_function_class_conv_s8_f32();
  1.3719 +	return &oil_function_class_ptr_conv_s8_f32->func;
  1.3720 +	}
  1.3721 +#endif
  1.3722 +
  1.3723 +#ifdef	__SYMBIAN32__
  1.3724 + 
  1.3725 +EXPORT_C void** _oil_function_class_ptr_conv_s8_f64 ()	{
  1.3726 +	oil_function_class_ptr_conv_s8_f64 = __oil_function_class_conv_s8_f64();
  1.3727 +	return &oil_function_class_ptr_conv_s8_f64->func;
  1.3728 +	}
  1.3729 +#endif
  1.3730 +
  1.3731 +#ifdef	__SYMBIAN32__
  1.3732 + 
  1.3733 +EXPORT_C void** _oil_function_class_ptr_conv_u8_s8 ()	{
  1.3734 +	oil_function_class_ptr_conv_u8_s8 = __oil_function_class_conv_u8_s8();
  1.3735 +	return &oil_function_class_ptr_conv_u8_s8->func;
  1.3736 +	}
  1.3737 +#endif
  1.3738 +
  1.3739 +#ifdef	__SYMBIAN32__
  1.3740 + 
  1.3741 +EXPORT_C void** _oil_function_class_ptr_conv_u8_s16 ()	{
  1.3742 +	oil_function_class_ptr_conv_u8_s16 = __oil_function_class_conv_u8_s16();
  1.3743 +	return &oil_function_class_ptr_conv_u8_s16->func;
  1.3744 +	}
  1.3745 +#endif
  1.3746 +
  1.3747 +#ifdef	__SYMBIAN32__
  1.3748 + 
  1.3749 +EXPORT_C void** _oil_function_class_ptr_conv_u8_u16 ()	{
  1.3750 +	oil_function_class_ptr_conv_u8_u16 = __oil_function_class_conv_u8_u16();
  1.3751 +	return &oil_function_class_ptr_conv_u8_u16->func;
  1.3752 +	}
  1.3753 +#endif
  1.3754 +
  1.3755 +#ifdef	__SYMBIAN32__
  1.3756 + 
  1.3757 +EXPORT_C void** _oil_function_class_ptr_conv_u8_s32 ()	{
  1.3758 +	oil_function_class_ptr_conv_u8_s32 = __oil_function_class_conv_u8_s32();
  1.3759 +	return &oil_function_class_ptr_conv_u8_s32->func;
  1.3760 +	}
  1.3761 +#endif
  1.3762 +
  1.3763 +#ifdef	__SYMBIAN32__
  1.3764 + 
  1.3765 +EXPORT_C void** _oil_function_class_ptr_conv_u8_u32 ()	{
  1.3766 +	oil_function_class_ptr_conv_u8_u32 = __oil_function_class_conv_u8_u32();
  1.3767 +	return &oil_function_class_ptr_conv_u8_u32->func;
  1.3768 +	}
  1.3769 +#endif
  1.3770 +
  1.3771 +#ifdef	__SYMBIAN32__
  1.3772 + 
  1.3773 +EXPORT_C void** _oil_function_class_ptr_conv_u8_f32 ()	{
  1.3774 +	oil_function_class_ptr_conv_u8_f32 = __oil_function_class_conv_u8_f32();
  1.3775 +	return &oil_function_class_ptr_conv_u8_f32->func;
  1.3776 +	}
  1.3777 +#endif
  1.3778 +
  1.3779 +#ifdef	__SYMBIAN32__
  1.3780 + 
  1.3781 +EXPORT_C void** _oil_function_class_ptr_conv_u8_f64 ()	{
  1.3782 +	oil_function_class_ptr_conv_u8_f64 = __oil_function_class_conv_u8_f64();
  1.3783 +	return &oil_function_class_ptr_conv_u8_f64->func;
  1.3784 +	}
  1.3785 +#endif
  1.3786 +
  1.3787 +#ifdef	__SYMBIAN32__
  1.3788 + 
  1.3789 +EXPORT_C void** _oil_function_class_ptr_conv_s16_s8 ()	{
  1.3790 +	oil_function_class_ptr_conv_s16_s8 = __oil_function_class_conv_s16_s8();
  1.3791 +	return &oil_function_class_ptr_conv_s16_s8->func;
  1.3792 +	}
  1.3793 +#endif
  1.3794 +
  1.3795 +#ifdef	__SYMBIAN32__
  1.3796 + 
  1.3797 +EXPORT_C void** _oil_function_class_ptr_conv_s16_u8 ()	{
  1.3798 +	oil_function_class_ptr_conv_s16_u8 = __oil_function_class_conv_s16_u8();
  1.3799 +	return &oil_function_class_ptr_conv_s16_u8->func;
  1.3800 +	}
  1.3801 +#endif
  1.3802 +
  1.3803 +#ifdef	__SYMBIAN32__
  1.3804 + 
  1.3805 +EXPORT_C void** _oil_function_class_ptr_conv_s16_u16 ()	{
  1.3806 +	oil_function_class_ptr_conv_s16_u16 = __oil_function_class_conv_s16_u16();
  1.3807 +	return &oil_function_class_ptr_conv_s16_u16->func;
  1.3808 +	}
  1.3809 +#endif
  1.3810 +
  1.3811 +#ifdef	__SYMBIAN32__
  1.3812 + 
  1.3813 +EXPORT_C void** _oil_function_class_ptr_conv_s16_s32 ()	{
  1.3814 +	oil_function_class_ptr_conv_s16_s32 = __oil_function_class_conv_s16_s32();
  1.3815 +	return &oil_function_class_ptr_conv_s16_s32->func;
  1.3816 +	}
  1.3817 +#endif
  1.3818 +
  1.3819 +#ifdef	__SYMBIAN32__
  1.3820 + 
  1.3821 +EXPORT_C void** _oil_function_class_ptr_conv_s16_u32 ()	{
  1.3822 +	oil_function_class_ptr_conv_s16_u32 = __oil_function_class_conv_s16_u32();
  1.3823 +	return &oil_function_class_ptr_conv_s16_u32->func;
  1.3824 +	}
  1.3825 +#endif
  1.3826 +
  1.3827 +#ifdef	__SYMBIAN32__
  1.3828 + 
  1.3829 +EXPORT_C void** _oil_function_class_ptr_conv_s16_f32 ()	{
  1.3830 +	oil_function_class_ptr_conv_s16_f32 = __oil_function_class_conv_s16_f32();
  1.3831 +	return &oil_function_class_ptr_conv_s16_f32->func;
  1.3832 +	}
  1.3833 +#endif
  1.3834 +
  1.3835 +#ifdef	__SYMBIAN32__
  1.3836 + 
  1.3837 +EXPORT_C void** _oil_function_class_ptr_conv_s16_f64 ()	{
  1.3838 +	oil_function_class_ptr_conv_s16_f64 = __oil_function_class_conv_s16_f64();
  1.3839 +	return &oil_function_class_ptr_conv_s16_f64->func;
  1.3840 +	}
  1.3841 +#endif
  1.3842 +
  1.3843 +#ifdef	__SYMBIAN32__
  1.3844 + 
  1.3845 +EXPORT_C void** _oil_function_class_ptr_conv_u16_s8 ()	{
  1.3846 +	oil_function_class_ptr_conv_u16_s8 = __oil_function_class_conv_u16_s8();
  1.3847 +	return &oil_function_class_ptr_conv_u16_s8->func;
  1.3848 +	}
  1.3849 +#endif
  1.3850 +
  1.3851 +#ifdef	__SYMBIAN32__
  1.3852 + 
  1.3853 +EXPORT_C void** _oil_function_class_ptr_conv_u16_u8 ()	{
  1.3854 +	oil_function_class_ptr_conv_u16_u8 = __oil_function_class_conv_u16_u8();
  1.3855 +	return &oil_function_class_ptr_conv_u16_u8->func;
  1.3856 +	}
  1.3857 +#endif
  1.3858 +
  1.3859 +#ifdef	__SYMBIAN32__
  1.3860 + 
  1.3861 +EXPORT_C void** _oil_function_class_ptr_conv_u16_s16 ()	{
  1.3862 +	oil_function_class_ptr_conv_u16_s16 = __oil_function_class_conv_u16_s16();
  1.3863 +	return &oil_function_class_ptr_conv_u16_s16->func;
  1.3864 +	}
  1.3865 +#endif
  1.3866 +
  1.3867 +#ifdef	__SYMBIAN32__
  1.3868 + 
  1.3869 +EXPORT_C void** _oil_function_class_ptr_conv_u16_s32 ()	{
  1.3870 +	oil_function_class_ptr_conv_u16_s32 = __oil_function_class_conv_u16_s32();
  1.3871 +	return &oil_function_class_ptr_conv_u16_s32->func;
  1.3872 +	}
  1.3873 +#endif
  1.3874 +
  1.3875 +#ifdef	__SYMBIAN32__
  1.3876 + 
  1.3877 +EXPORT_C void** _oil_function_class_ptr_conv_u16_u32 ()	{
  1.3878 +	oil_function_class_ptr_conv_u16_u32 = __oil_function_class_conv_u16_u32();
  1.3879 +	return &oil_function_class_ptr_conv_u16_u32->func;
  1.3880 +	}
  1.3881 +#endif
  1.3882 +
  1.3883 +#ifdef	__SYMBIAN32__
  1.3884 + 
  1.3885 +EXPORT_C void** _oil_function_class_ptr_conv_u16_f32 ()	{
  1.3886 +	oil_function_class_ptr_conv_u16_f32 = __oil_function_class_conv_u16_f32();
  1.3887 +	return &oil_function_class_ptr_conv_u16_f32->func;
  1.3888 +	}
  1.3889 +#endif
  1.3890 +
  1.3891 +#ifdef	__SYMBIAN32__
  1.3892 + 
  1.3893 +EXPORT_C void** _oil_function_class_ptr_conv_u16_f64 ()	{
  1.3894 +	oil_function_class_ptr_conv_u16_f64 = __oil_function_class_conv_u16_f64();
  1.3895 +	return &oil_function_class_ptr_conv_u16_f64->func;
  1.3896 +	}
  1.3897 +#endif
  1.3898 +
  1.3899 +#ifdef	__SYMBIAN32__
  1.3900 + 
  1.3901 +EXPORT_C void** _oil_function_class_ptr_conv_s32_s8 ()	{
  1.3902 +	oil_function_class_ptr_conv_s32_s8 = __oil_function_class_conv_s32_s8();
  1.3903 +	return &oil_function_class_ptr_conv_s32_s8->func;
  1.3904 +	}
  1.3905 +#endif
  1.3906 +
  1.3907 +#ifdef	__SYMBIAN32__
  1.3908 + 
  1.3909 +EXPORT_C void** _oil_function_class_ptr_conv_s32_s16 ()	{
  1.3910 +	oil_function_class_ptr_conv_s32_s16 = __oil_function_class_conv_s32_s16();
  1.3911 +	return &oil_function_class_ptr_conv_s32_s16->func;
  1.3912 +	}
  1.3913 +#endif
  1.3914 +
  1.3915 +#ifdef	__SYMBIAN32__
  1.3916 + 
  1.3917 +EXPORT_C void** _oil_function_class_ptr_conv_s32_u8 ()	{
  1.3918 +	oil_function_class_ptr_conv_s32_u8 = __oil_function_class_conv_s32_u8();
  1.3919 +	return &oil_function_class_ptr_conv_s32_u8->func;
  1.3920 +	}
  1.3921 +#endif
  1.3922 +
  1.3923 +#ifdef	__SYMBIAN32__
  1.3924 + 
  1.3925 +EXPORT_C void** _oil_function_class_ptr_conv_s32_u16 ()	{
  1.3926 +	oil_function_class_ptr_conv_s32_u16 = __oil_function_class_conv_s32_u16();
  1.3927 +	return &oil_function_class_ptr_conv_s32_u16->func;
  1.3928 +	}
  1.3929 +#endif
  1.3930 +
  1.3931 +#ifdef	__SYMBIAN32__
  1.3932 + 
  1.3933 +EXPORT_C void** _oil_function_class_ptr_conv_s32_u32 ()	{
  1.3934 +	oil_function_class_ptr_conv_s32_u32 = __oil_function_class_conv_s32_u32();
  1.3935 +	return &oil_function_class_ptr_conv_s32_u32->func;
  1.3936 +	}
  1.3937 +#endif
  1.3938 +
  1.3939 +#ifdef	__SYMBIAN32__
  1.3940 + 
  1.3941 +EXPORT_C void** _oil_function_class_ptr_conv_s32_f32 ()	{
  1.3942 +	oil_function_class_ptr_conv_s32_f32 = __oil_function_class_conv_s32_f32();
  1.3943 +	return &oil_function_class_ptr_conv_s32_f32->func;
  1.3944 +	}
  1.3945 +#endif
  1.3946 +
  1.3947 +#ifdef	__SYMBIAN32__
  1.3948 + 
  1.3949 +EXPORT_C void** _oil_function_class_ptr_conv_s32_f64 ()	{
  1.3950 +	oil_function_class_ptr_conv_s32_f64 = __oil_function_class_conv_s32_f64();
  1.3951 +	return &oil_function_class_ptr_conv_s32_f64->func;
  1.3952 +	}
  1.3953 +#endif
  1.3954 +
  1.3955 +#ifdef	__SYMBIAN32__
  1.3956 + 
  1.3957 +EXPORT_C void** _oil_function_class_ptr_conv_u32_s8 ()	{
  1.3958 +	oil_function_class_ptr_conv_u32_s8 = __oil_function_class_conv_u32_s8();
  1.3959 +	return &oil_function_class_ptr_conv_u32_s8->func;
  1.3960 +	}
  1.3961 +#endif
  1.3962 +
  1.3963 +#ifdef	__SYMBIAN32__
  1.3964 + 
  1.3965 +EXPORT_C void** _oil_function_class_ptr_conv_u32_s16 ()	{
  1.3966 +	oil_function_class_ptr_conv_u32_s16 = __oil_function_class_conv_u32_s16();
  1.3967 +	return &oil_function_class_ptr_conv_u32_s16->func;
  1.3968 +	}
  1.3969 +#endif
  1.3970 +
  1.3971 +#ifdef	__SYMBIAN32__
  1.3972 + 
  1.3973 +EXPORT_C void** _oil_function_class_ptr_conv_u32_u8 ()	{
  1.3974 +	oil_function_class_ptr_conv_u32_u8 = __oil_function_class_conv_u32_u8();
  1.3975 +	return &oil_function_class_ptr_conv_u32_u8->func;
  1.3976 +	}
  1.3977 +#endif
  1.3978 +
  1.3979 +#ifdef	__SYMBIAN32__
  1.3980 + 
  1.3981 +EXPORT_C void** _oil_function_class_ptr_conv_u32_u16 ()	{
  1.3982 +	oil_function_class_ptr_conv_u32_u16 = __oil_function_class_conv_u32_u16();
  1.3983 +	return &oil_function_class_ptr_conv_u32_u16->func;
  1.3984 +	}
  1.3985 +#endif
  1.3986 +
  1.3987 +#ifdef	__SYMBIAN32__
  1.3988 + 
  1.3989 +EXPORT_C void** _oil_function_class_ptr_conv_u32_s32 ()	{
  1.3990 +	oil_function_class_ptr_conv_u32_s32 = __oil_function_class_conv_u32_s32();
  1.3991 +	return &oil_function_class_ptr_conv_u32_s32->func;
  1.3992 +	}
  1.3993 +#endif
  1.3994 +
  1.3995 +#ifdef	__SYMBIAN32__
  1.3996 + 
  1.3997 +EXPORT_C void** _oil_function_class_ptr_conv_u32_f32 ()	{
  1.3998 +	oil_function_class_ptr_conv_u32_f32 = __oil_function_class_conv_u32_f32();
  1.3999 +	return &oil_function_class_ptr_conv_u32_f32->func;
  1.4000 +	}
  1.4001 +#endif
  1.4002 +
  1.4003 +#ifdef	__SYMBIAN32__
  1.4004 + 
  1.4005 +EXPORT_C void** _oil_function_class_ptr_conv_u32_f64 ()	{
  1.4006 +	oil_function_class_ptr_conv_u32_f64 = __oil_function_class_conv_u32_f64();
  1.4007 +	return &oil_function_class_ptr_conv_u32_f64->func;
  1.4008 +	}
  1.4009 +#endif
  1.4010 +
  1.4011 +#ifdef	__SYMBIAN32__
  1.4012 + 
  1.4013 +EXPORT_C void** _oil_function_class_ptr_conv_f32_s8 ()	{
  1.4014 +	oil_function_class_ptr_conv_f32_s8 = __oil_function_class_conv_f32_s8();
  1.4015 +	return &oil_function_class_ptr_conv_f32_s8->func;
  1.4016 +	}
  1.4017 +#endif
  1.4018 +
  1.4019 +#ifdef	__SYMBIAN32__
  1.4020 + 
  1.4021 +EXPORT_C void** _oil_function_class_ptr_conv_f32_s16 ()	{
  1.4022 +	oil_function_class_ptr_conv_f32_s16 = __oil_function_class_conv_f32_s16();
  1.4023 +	return &oil_function_class_ptr_conv_f32_s16->func;
  1.4024 +	}
  1.4025 +#endif
  1.4026 +
  1.4027 +#ifdef	__SYMBIAN32__
  1.4028 + 
  1.4029 +EXPORT_C void** _oil_function_class_ptr_conv_f32_u8 ()	{
  1.4030 +	oil_function_class_ptr_conv_f32_u8 = __oil_function_class_conv_f32_u8();
  1.4031 +	return &oil_function_class_ptr_conv_f32_u8->func;
  1.4032 +	}
  1.4033 +#endif
  1.4034 +
  1.4035 +#ifdef	__SYMBIAN32__
  1.4036 + 
  1.4037 +EXPORT_C void** _oil_function_class_ptr_conv_f32_u16 ()	{
  1.4038 +	oil_function_class_ptr_conv_f32_u16 = __oil_function_class_conv_f32_u16();
  1.4039 +	return &oil_function_class_ptr_conv_f32_u16->func;
  1.4040 +	}
  1.4041 +#endif
  1.4042 +
  1.4043 +#ifdef	__SYMBIAN32__
  1.4044 + 
  1.4045 +EXPORT_C void** _oil_function_class_ptr_conv_f32_s32 ()	{
  1.4046 +	oil_function_class_ptr_conv_f32_s32 = __oil_function_class_conv_f32_s32();
  1.4047 +	return &oil_function_class_ptr_conv_f32_s32->func;
  1.4048 +	}
  1.4049 +#endif
  1.4050 +
  1.4051 +#ifdef	__SYMBIAN32__
  1.4052 + 
  1.4053 +EXPORT_C void** _oil_function_class_ptr_conv_f32_u32 ()	{
  1.4054 +	oil_function_class_ptr_conv_f32_u32 = __oil_function_class_conv_f32_u32();
  1.4055 +	return &oil_function_class_ptr_conv_f32_u32->func;
  1.4056 +	}
  1.4057 +#endif
  1.4058 +
  1.4059 +#ifdef	__SYMBIAN32__
  1.4060 + 
  1.4061 +EXPORT_C void** _oil_function_class_ptr_conv_f32_f64 ()	{
  1.4062 +	oil_function_class_ptr_conv_f32_f64 = __oil_function_class_conv_f32_f64();
  1.4063 +	return &oil_function_class_ptr_conv_f32_f64->func;
  1.4064 +	}
  1.4065 +#endif
  1.4066 +
  1.4067 +#ifdef	__SYMBIAN32__
  1.4068 + 
  1.4069 +EXPORT_C void** _oil_function_class_ptr_conv_f64_s8 ()	{
  1.4070 +	oil_function_class_ptr_conv_f64_s8 = __oil_function_class_conv_f64_s8();
  1.4071 +	return &oil_function_class_ptr_conv_f64_s8->func;
  1.4072 +	}
  1.4073 +#endif
  1.4074 +
  1.4075 +#ifdef	__SYMBIAN32__
  1.4076 + 
  1.4077 +EXPORT_C void** _oil_function_class_ptr_conv_f64_u8 ()	{
  1.4078 +	oil_function_class_ptr_conv_f64_u8 = __oil_function_class_conv_f64_u8();
  1.4079 +	return &oil_function_class_ptr_conv_f64_u8->func;
  1.4080 +	}
  1.4081 +#endif
  1.4082 +
  1.4083 +#ifdef	__SYMBIAN32__
  1.4084 + 
  1.4085 +EXPORT_C void** _oil_function_class_ptr_conv_f64_s16 ()	{
  1.4086 +	oil_function_class_ptr_conv_f64_s16 = __oil_function_class_conv_f64_s16();
  1.4087 +	return &oil_function_class_ptr_conv_f64_s16->func;
  1.4088 +	}
  1.4089 +#endif
  1.4090 +
  1.4091 +#ifdef	__SYMBIAN32__
  1.4092 + 
  1.4093 +EXPORT_C void** _oil_function_class_ptr_conv_f64_u16 ()	{
  1.4094 +	oil_function_class_ptr_conv_f64_u16 = __oil_function_class_conv_f64_u16();
  1.4095 +	return &oil_function_class_ptr_conv_f64_u16->func;
  1.4096 +	}
  1.4097 +#endif
  1.4098 +
  1.4099 +#ifdef	__SYMBIAN32__
  1.4100 + 
  1.4101 +EXPORT_C void** _oil_function_class_ptr_conv_f64_s32 ()	{
  1.4102 +	oil_function_class_ptr_conv_f64_s32 = __oil_function_class_conv_f64_s32();
  1.4103 +	return &oil_function_class_ptr_conv_f64_s32->func;
  1.4104 +	}
  1.4105 +#endif
  1.4106 +
  1.4107 +#ifdef	__SYMBIAN32__
  1.4108 + 
  1.4109 +EXPORT_C void** _oil_function_class_ptr_conv_f64_u32 ()	{
  1.4110 +	oil_function_class_ptr_conv_f64_u32 = __oil_function_class_conv_f64_u32();
  1.4111 +	return &oil_function_class_ptr_conv_f64_u32->func;
  1.4112 +	}
  1.4113 +#endif
  1.4114 +
  1.4115 +#ifdef	__SYMBIAN32__
  1.4116 + 
  1.4117 +EXPORT_C void** _oil_function_class_ptr_conv_f64_f32 ()	{
  1.4118 +	oil_function_class_ptr_conv_f64_f32 = __oil_function_class_conv_f64_f32();
  1.4119 +	return &oil_function_class_ptr_conv_f64_f32->func;
  1.4120 +	}
  1.4121 +#endif
  1.4122 +
  1.4123 +#ifdef	__SYMBIAN32__
  1.4124 + 
  1.4125 +EXPORT_C void** _oil_function_class_ptr_clipconv_s8_u8 ()	{
  1.4126 +	oil_function_class_ptr_clipconv_s8_u8 = __oil_function_class_clipconv_s8_u8();
  1.4127 +	return &oil_function_class_ptr_clipconv_s8_u8->func;
  1.4128 +	}
  1.4129 +#endif
  1.4130 +
  1.4131 +#ifdef	__SYMBIAN32__
  1.4132 + 
  1.4133 +EXPORT_C void** _oil_function_class_ptr_clipconv_s8_u16 ()	{
  1.4134 +	oil_function_class_ptr_clipconv_s8_u16 = __oil_function_class_clipconv_s8_u16();
  1.4135 +	return &oil_function_class_ptr_clipconv_s8_u16->func;
  1.4136 +	}
  1.4137 +#endif
  1.4138 +
  1.4139 +#ifdef	__SYMBIAN32__
  1.4140 + 
  1.4141 +EXPORT_C void** _oil_function_class_ptr_clipconv_s8_u32 ()	{
  1.4142 +	oil_function_class_ptr_clipconv_s8_u32 = __oil_function_class_clipconv_s8_u32();
  1.4143 +	return &oil_function_class_ptr_clipconv_s8_u32->func;
  1.4144 +	}
  1.4145 +#endif
  1.4146 +
  1.4147 +#ifdef	__SYMBIAN32__
  1.4148 + 
  1.4149 +EXPORT_C void** _oil_function_class_ptr_clipconv_u8_u32 ()	{
  1.4150 +	oil_function_class_ptr_clipconv_u8_u32 = __oil_function_class_clipconv_u8_u32();
  1.4151 +	return &oil_function_class_ptr_clipconv_u8_u32->func;
  1.4152 +	}
  1.4153 +#endif
  1.4154 +
  1.4155 +#ifdef	__SYMBIAN32__
  1.4156 + 
  1.4157 +EXPORT_C void** _oil_function_class_ptr_clipconv_u8_u16 ()	{
  1.4158 +	oil_function_class_ptr_clipconv_u8_u16 = __oil_function_class_clipconv_u8_u16();
  1.4159 +	return &oil_function_class_ptr_clipconv_u8_u16->func;
  1.4160 +	}
  1.4161 +#endif
  1.4162 +
  1.4163 +#ifdef	__SYMBIAN32__
  1.4164 + 
  1.4165 +EXPORT_C void** _oil_function_class_ptr_clipconv_s16_u16 ()	{
  1.4166 +	oil_function_class_ptr_clipconv_s16_u16 = __oil_function_class_clipconv_s16_u16();
  1.4167 +	return &oil_function_class_ptr_clipconv_s16_u16->func;
  1.4168 +	}
  1.4169 +#endif
  1.4170 +
  1.4171 +#ifdef	__SYMBIAN32__
  1.4172 + 
  1.4173 +EXPORT_C void** _oil_function_class_ptr_clipconv_s16_u32 ()	{
  1.4174 +	oil_function_class_ptr_clipconv_s16_u32 = __oil_function_class_clipconv_s16_u32();
  1.4175 +	return &oil_function_class_ptr_clipconv_s16_u32->func;
  1.4176 +	}
  1.4177 +#endif
  1.4178 +
  1.4179 +#ifdef	__SYMBIAN32__
  1.4180 + 
  1.4181 +EXPORT_C void** _oil_function_class_ptr_clipconv_s32_u32 ()	{
  1.4182 +	oil_function_class_ptr_clipconv_s32_u32 = __oil_function_class_clipconv_s32_u32();
  1.4183 +	return &oil_function_class_ptr_clipconv_s32_u32->func;
  1.4184 +	}
  1.4185 +#endif
  1.4186 +
  1.4187 +#ifdef	__SYMBIAN32__
  1.4188 + 
  1.4189 +EXPORT_C void** _oil_function_class_ptr_clipconv_u16_u32 ()	{
  1.4190 +	oil_function_class_ptr_clipconv_u16_u32 = __oil_function_class_clipconv_u16_u32();
  1.4191 +	return &oil_function_class_ptr_clipconv_u16_u32->func;
  1.4192 +	}
  1.4193 +#endif
  1.4194 +
  1.4195 +#ifdef	__SYMBIAN32__
  1.4196 + 
  1.4197 +EXPORT_C void** _oil_function_class_ptr_clipconv_s8_s16 ()	{
  1.4198 +	oil_function_class_ptr_clipconv_s8_s16 = __oil_function_class_clipconv_s8_s16();
  1.4199 +	return &oil_function_class_ptr_clipconv_s8_s16->func;
  1.4200 +	}
  1.4201 +#endif
  1.4202 +
  1.4203 +#ifdef	__SYMBIAN32__
  1.4204 + 
  1.4205 +EXPORT_C void** _oil_function_class_ptr_clipconv_s8_s32 ()	{
  1.4206 +	oil_function_class_ptr_clipconv_s8_s32 = __oil_function_class_clipconv_s8_s32();
  1.4207 +	return &oil_function_class_ptr_clipconv_s8_s32->func;
  1.4208 +	}
  1.4209 +#endif
  1.4210 +
  1.4211 +#ifdef	__SYMBIAN32__
  1.4212 + 
  1.4213 +EXPORT_C void** _oil_function_class_ptr_clipconv_u8_s16 ()	{
  1.4214 +	oil_function_class_ptr_clipconv_u8_s16 = __oil_function_class_clipconv_u8_s16();
  1.4215 +	return &oil_function_class_ptr_clipconv_u8_s16->func;
  1.4216 +	}
  1.4217 +#endif
  1.4218 +
  1.4219 +#ifdef	__SYMBIAN32__
  1.4220 + 
  1.4221 +EXPORT_C void** _oil_function_class_ptr_clipconv_u8_s32 ()	{
  1.4222 +	oil_function_class_ptr_clipconv_u8_s32 = __oil_function_class_clipconv_u8_s32();
  1.4223 +	return &oil_function_class_ptr_clipconv_u8_s32->func;
  1.4224 +	}
  1.4225 +#endif
  1.4226 +
  1.4227 +#ifdef	__SYMBIAN32__
  1.4228 + 
  1.4229 +EXPORT_C void** _oil_function_class_ptr_clipconv_s16_s32 ()	{
  1.4230 +	oil_function_class_ptr_clipconv_s16_s32 = __oil_function_class_clipconv_s16_s32();
  1.4231 +	return &oil_function_class_ptr_clipconv_s16_s32->func;
  1.4232 +	}
  1.4233 +#endif
  1.4234 +
  1.4235 +#ifdef	__SYMBIAN32__
  1.4236 + 
  1.4237 +EXPORT_C void** _oil_function_class_ptr_clipconv_u16_s32 ()	{
  1.4238 +	oil_function_class_ptr_clipconv_u16_s32 = __oil_function_class_clipconv_u16_s32();
  1.4239 +	return &oil_function_class_ptr_clipconv_u16_s32->func;
  1.4240 +	}
  1.4241 +#endif
  1.4242 +
  1.4243 +#ifdef	__SYMBIAN32__
  1.4244 + 
  1.4245 +EXPORT_C void** _oil_function_class_ptr_clipconv_u8_s8 ()	{
  1.4246 +	oil_function_class_ptr_clipconv_u8_s8 = __oil_function_class_clipconv_u8_s8();
  1.4247 +	return &oil_function_class_ptr_clipconv_u8_s8->func;
  1.4248 +	}
  1.4249 +#endif
  1.4250 +
  1.4251 +#ifdef	__SYMBIAN32__
  1.4252 + 
  1.4253 +EXPORT_C void** _oil_function_class_ptr_clipconv_u16_s16 ()	{
  1.4254 +	oil_function_class_ptr_clipconv_u16_s16 = __oil_function_class_clipconv_u16_s16();
  1.4255 +	return &oil_function_class_ptr_clipconv_u16_s16->func;
  1.4256 +	}
  1.4257 +#endif
  1.4258 +
  1.4259 +#ifdef	__SYMBIAN32__
  1.4260 + 
  1.4261 +EXPORT_C void** _oil_function_class_ptr_clipconv_u32_s32 ()	{
  1.4262 +	oil_function_class_ptr_clipconv_u32_s32 = __oil_function_class_clipconv_u32_s32();
  1.4263 +	return &oil_function_class_ptr_clipconv_u32_s32->func;
  1.4264 +	}
  1.4265 +#endif
  1.4266 +
  1.4267 +#ifdef	__SYMBIAN32__
  1.4268 + 
  1.4269 +EXPORT_C void** _oil_function_class_ptr_clipconv_s8_f32 ()	{
  1.4270 +	oil_function_class_ptr_clipconv_s8_f32 = __oil_function_class_clipconv_s8_f32();
  1.4271 +	return &oil_function_class_ptr_clipconv_s8_f32->func;
  1.4272 +	}
  1.4273 +#endif
  1.4274 +
  1.4275 +#ifdef	__SYMBIAN32__
  1.4276 + 
  1.4277 +EXPORT_C void** _oil_function_class_ptr_clipconv_s8_f64 ()	{
  1.4278 +	oil_function_class_ptr_clipconv_s8_f64 = __oil_function_class_clipconv_s8_f64();
  1.4279 +	return &oil_function_class_ptr_clipconv_s8_f64->func;
  1.4280 +	}
  1.4281 +#endif
  1.4282 +
  1.4283 +#ifdef	__SYMBIAN32__
  1.4284 + 
  1.4285 +EXPORT_C void** _oil_function_class_ptr_clipconv_u8_f32 ()	{
  1.4286 +	oil_function_class_ptr_clipconv_u8_f32 = __oil_function_class_clipconv_u8_f32();
  1.4287 +	return &oil_function_class_ptr_clipconv_u8_f32->func;
  1.4288 +	}
  1.4289 +#endif
  1.4290 +
  1.4291 +#ifdef	__SYMBIAN32__
  1.4292 + 
  1.4293 +EXPORT_C void** _oil_function_class_ptr_clipconv_u8_f64 ()	{
  1.4294 +	oil_function_class_ptr_clipconv_u8_f64 = __oil_function_class_clipconv_u8_f64();
  1.4295 +	return &oil_function_class_ptr_clipconv_u8_f64->func;
  1.4296 +	}
  1.4297 +#endif
  1.4298 +
  1.4299 +#ifdef	__SYMBIAN32__
  1.4300 + 
  1.4301 +EXPORT_C void** _oil_function_class_ptr_clipconv_s16_f32 ()	{
  1.4302 +	oil_function_class_ptr_clipconv_s16_f32 = __oil_function_class_clipconv_s16_f32();
  1.4303 +	return &oil_function_class_ptr_clipconv_s16_f32->func;
  1.4304 +	}
  1.4305 +#endif
  1.4306 +
  1.4307 +#ifdef	__SYMBIAN32__
  1.4308 + 
  1.4309 +EXPORT_C void** _oil_function_class_ptr_clipconv_s16_f64 ()	{
  1.4310 +	oil_function_class_ptr_clipconv_s16_f64 = __oil_function_class_clipconv_s16_f64();
  1.4311 +	return &oil_function_class_ptr_clipconv_s16_f64->func;
  1.4312 +	}
  1.4313 +#endif
  1.4314 +
  1.4315 +#ifdef	__SYMBIAN32__
  1.4316 + 
  1.4317 +EXPORT_C void** _oil_function_class_ptr_clipconv_u16_f32 ()	{
  1.4318 +	oil_function_class_ptr_clipconv_u16_f32 = __oil_function_class_clipconv_u16_f32();
  1.4319 +	return &oil_function_class_ptr_clipconv_u16_f32->func;
  1.4320 +	}
  1.4321 +#endif
  1.4322 +
  1.4323 +#ifdef	__SYMBIAN32__
  1.4324 + 
  1.4325 +EXPORT_C void** _oil_function_class_ptr_clipconv_u16_f64 ()	{
  1.4326 +	oil_function_class_ptr_clipconv_u16_f64 = __oil_function_class_clipconv_u16_f64();
  1.4327 +	return &oil_function_class_ptr_clipconv_u16_f64->func;
  1.4328 +	}
  1.4329 +#endif
  1.4330 +
  1.4331 +#ifdef	__SYMBIAN32__
  1.4332 + 
  1.4333 +EXPORT_C void** _oil_function_class_ptr_clipconv_s32_f32 ()	{
  1.4334 +	oil_function_class_ptr_clipconv_s32_f32 = __oil_function_class_clipconv_s32_f32();
  1.4335 +	return &oil_function_class_ptr_clipconv_s32_f32->func;
  1.4336 +	}
  1.4337 +#endif
  1.4338 +
  1.4339 +#ifdef	__SYMBIAN32__
  1.4340 + 
  1.4341 +EXPORT_C void** _oil_function_class_ptr_clipconv_s32_f64 ()	{
  1.4342 +	oil_function_class_ptr_clipconv_s32_f64 = __oil_function_class_clipconv_s32_f64();
  1.4343 +	return &oil_function_class_ptr_clipconv_s32_f64->func;
  1.4344 +	}
  1.4345 +#endif
  1.4346 +
  1.4347 +#ifdef	__SYMBIAN32__
  1.4348 + 
  1.4349 +EXPORT_C void** _oil_function_class_ptr_clipconv_u32_f32 ()	{
  1.4350 +	oil_function_class_ptr_clipconv_u32_f32 = __oil_function_class_clipconv_u32_f32();
  1.4351 +	return &oil_function_class_ptr_clipconv_u32_f32->func;
  1.4352 +	}
  1.4353 +#endif
  1.4354 +
  1.4355 +#ifdef	__SYMBIAN32__
  1.4356 + 
  1.4357 +EXPORT_C void** _oil_function_class_ptr_clipconv_u32_f64 ()	{
  1.4358 +	oil_function_class_ptr_clipconv_u32_f64 = __oil_function_class_clipconv_u32_f64();
  1.4359 +	return &oil_function_class_ptr_clipconv_u32_f64->func;
  1.4360 +	}
  1.4361 +#endif
  1.4362 +
  1.4363 +#ifdef	__SYMBIAN32__
  1.4364 + 
  1.4365 +EXPORT_C void** _oil_function_class_ptr_scaleconv_s8_f32 ()	{
  1.4366 +	oil_function_class_ptr_scaleconv_s8_f32 = __oil_function_class_scaleconv_s8_f32();
  1.4367 +	return &oil_function_class_ptr_scaleconv_s8_f32->func;
  1.4368 +	}
  1.4369 +#endif
  1.4370 +
  1.4371 +#ifdef	__SYMBIAN32__
  1.4372 + 
  1.4373 +EXPORT_C void** _oil_function_class_ptr_scaleconv_u8_f32 ()	{
  1.4374 +	oil_function_class_ptr_scaleconv_u8_f32 = __oil_function_class_scaleconv_u8_f32();
  1.4375 +	return &oil_function_class_ptr_scaleconv_u8_f32->func;
  1.4376 +	}
  1.4377 +#endif
  1.4378 +
  1.4379 +#ifdef	__SYMBIAN32__
  1.4380 + 
  1.4381 +EXPORT_C void** _oil_function_class_ptr_scaleconv_s16_f32 ()	{
  1.4382 +	oil_function_class_ptr_scaleconv_s16_f32 = __oil_function_class_scaleconv_s16_f32();
  1.4383 +	return &oil_function_class_ptr_scaleconv_s16_f32->func;
  1.4384 +	}
  1.4385 +#endif
  1.4386 +
  1.4387 +#ifdef	__SYMBIAN32__
  1.4388 + 
  1.4389 +EXPORT_C void** _oil_function_class_ptr_scaleconv_u16_f32 ()	{
  1.4390 +	oil_function_class_ptr_scaleconv_u16_f32 = __oil_function_class_scaleconv_u16_f32();
  1.4391 +	return &oil_function_class_ptr_scaleconv_u16_f32->func;
  1.4392 +	}
  1.4393 +#endif
  1.4394 +
  1.4395 +#ifdef	__SYMBIAN32__
  1.4396 + 
  1.4397 +EXPORT_C void** _oil_function_class_ptr_scaleconv_s32_f32 ()	{
  1.4398 +	oil_function_class_ptr_scaleconv_s32_f32 = __oil_function_class_scaleconv_s32_f32();
  1.4399 +	return &oil_function_class_ptr_scaleconv_s32_f32->func;
  1.4400 +	}
  1.4401 +#endif
  1.4402 +
  1.4403 +#ifdef	__SYMBIAN32__
  1.4404 + 
  1.4405 +EXPORT_C void** _oil_function_class_ptr_scaleconv_u32_f32 ()	{
  1.4406 +	oil_function_class_ptr_scaleconv_u32_f32 = __oil_function_class_scaleconv_u32_f32();
  1.4407 +	return &oil_function_class_ptr_scaleconv_u32_f32->func;
  1.4408 +	}
  1.4409 +#endif
  1.4410 +
  1.4411 +#ifdef	__SYMBIAN32__
  1.4412 + 
  1.4413 +EXPORT_C void** _oil_function_class_ptr_scaleconv_s8_f64 ()	{
  1.4414 +	oil_function_class_ptr_scaleconv_s8_f64 = __oil_function_class_scaleconv_s8_f64();
  1.4415 +	return &oil_function_class_ptr_scaleconv_s8_f64->func;
  1.4416 +	}
  1.4417 +#endif
  1.4418 +
  1.4419 +#ifdef	__SYMBIAN32__
  1.4420 + 
  1.4421 +EXPORT_C void** _oil_function_class_ptr_scaleconv_u8_f64 ()	{
  1.4422 +	oil_function_class_ptr_scaleconv_u8_f64 = __oil_function_class_scaleconv_u8_f64();
  1.4423 +	return &oil_function_class_ptr_scaleconv_u8_f64->func;
  1.4424 +	}
  1.4425 +#endif
  1.4426 +
  1.4427 +#ifdef	__SYMBIAN32__
  1.4428 + 
  1.4429 +EXPORT_C void** _oil_function_class_ptr_scaleconv_s16_f64 ()	{
  1.4430 +	oil_function_class_ptr_scaleconv_s16_f64 = __oil_function_class_scaleconv_s16_f64();
  1.4431 +	return &oil_function_class_ptr_scaleconv_s16_f64->func;
  1.4432 +	}
  1.4433 +#endif
  1.4434 +
  1.4435 +#ifdef	__SYMBIAN32__
  1.4436 + 
  1.4437 +EXPORT_C void** _oil_function_class_ptr_scaleconv_u16_f64 ()	{
  1.4438 +	oil_function_class_ptr_scaleconv_u16_f64 = __oil_function_class_scaleconv_u16_f64();
  1.4439 +	return &oil_function_class_ptr_scaleconv_u16_f64->func;
  1.4440 +	}
  1.4441 +#endif
  1.4442 +
  1.4443 +#ifdef	__SYMBIAN32__
  1.4444 + 
  1.4445 +EXPORT_C void** _oil_function_class_ptr_scaleconv_s32_f64 ()	{
  1.4446 +	oil_function_class_ptr_scaleconv_s32_f64 = __oil_function_class_scaleconv_s32_f64();
  1.4447 +	return &oil_function_class_ptr_scaleconv_s32_f64->func;
  1.4448 +	}
  1.4449 +#endif
  1.4450 +
  1.4451 +#ifdef	__SYMBIAN32__
  1.4452 + 
  1.4453 +EXPORT_C void** _oil_function_class_ptr_scaleconv_u32_f64 ()	{
  1.4454 +	oil_function_class_ptr_scaleconv_u32_f64 = __oil_function_class_scaleconv_u32_f64();
  1.4455 +	return &oil_function_class_ptr_scaleconv_u32_f64->func;
  1.4456 +	}
  1.4457 +#endif
  1.4458 +
  1.4459 +#ifdef	__SYMBIAN32__
  1.4460 + 
  1.4461 +EXPORT_C void** _oil_function_class_ptr_scaleconv_f32_s8 ()	{
  1.4462 +	oil_function_class_ptr_scaleconv_f32_s8 = __oil_function_class_scaleconv_f32_s8();
  1.4463 +	return &oil_function_class_ptr_scaleconv_f32_s8->func;
  1.4464 +	}
  1.4465 +#endif
  1.4466 +
  1.4467 +#ifdef	__SYMBIAN32__
  1.4468 + 
  1.4469 +EXPORT_C void** _oil_function_class_ptr_scaleconv_f32_u8 ()	{
  1.4470 +	oil_function_class_ptr_scaleconv_f32_u8 = __oil_function_class_scaleconv_f32_u8();
  1.4471 +	return &oil_function_class_ptr_scaleconv_f32_u8->func;
  1.4472 +	}
  1.4473 +#endif
  1.4474 +
  1.4475 +#ifdef	__SYMBIAN32__
  1.4476 + 
  1.4477 +EXPORT_C void** _oil_function_class_ptr_scaleconv_f32_s16 ()	{
  1.4478 +	oil_function_class_ptr_scaleconv_f32_s16 = __oil_function_class_scaleconv_f32_s16();
  1.4479 +	return &oil_function_class_ptr_scaleconv_f32_s16->func;
  1.4480 +	}
  1.4481 +#endif
  1.4482 +
  1.4483 +#ifdef	__SYMBIAN32__
  1.4484 + 
  1.4485 +EXPORT_C void** _oil_function_class_ptr_scaleconv_f32_u16 ()	{
  1.4486 +	oil_function_class_ptr_scaleconv_f32_u16 = __oil_function_class_scaleconv_f32_u16();
  1.4487 +	return &oil_function_class_ptr_scaleconv_f32_u16->func;
  1.4488 +	}
  1.4489 +#endif
  1.4490 +
  1.4491 +#ifdef	__SYMBIAN32__
  1.4492 + 
  1.4493 +EXPORT_C void** _oil_function_class_ptr_scaleconv_f32_s32 ()	{
  1.4494 +	oil_function_class_ptr_scaleconv_f32_s32 = __oil_function_class_scaleconv_f32_s32();
  1.4495 +	return &oil_function_class_ptr_scaleconv_f32_s32->func;
  1.4496 +	}
  1.4497 +#endif
  1.4498 +
  1.4499 +#ifdef	__SYMBIAN32__
  1.4500 + 
  1.4501 +EXPORT_C void** _oil_function_class_ptr_scaleconv_f32_u32 ()	{
  1.4502 +	oil_function_class_ptr_scaleconv_f32_u32 = __oil_function_class_scaleconv_f32_u32();
  1.4503 +	return &oil_function_class_ptr_scaleconv_f32_u32->func;
  1.4504 +	}
  1.4505 +#endif
  1.4506 +
  1.4507 +#ifdef	__SYMBIAN32__
  1.4508 + 
  1.4509 +EXPORT_C void** _oil_function_class_ptr_scaleconv_f64_s8 ()	{
  1.4510 +	oil_function_class_ptr_scaleconv_f64_s8 = __oil_function_class_scaleconv_f64_s8();
  1.4511 +	return &oil_function_class_ptr_scaleconv_f64_s8->func;
  1.4512 +	}
  1.4513 +#endif
  1.4514 +
  1.4515 +#ifdef	__SYMBIAN32__
  1.4516 + 
  1.4517 +EXPORT_C void** _oil_function_class_ptr_scaleconv_f64_u8 ()	{
  1.4518 +	oil_function_class_ptr_scaleconv_f64_u8 = __oil_function_class_scaleconv_f64_u8();
  1.4519 +	return &oil_function_class_ptr_scaleconv_f64_u8->func;
  1.4520 +	}
  1.4521 +#endif
  1.4522 +
  1.4523 +#ifdef	__SYMBIAN32__
  1.4524 + 
  1.4525 +EXPORT_C void** _oil_function_class_ptr_scaleconv_f64_s16 ()	{
  1.4526 +	oil_function_class_ptr_scaleconv_f64_s16 = __oil_function_class_scaleconv_f64_s16();
  1.4527 +	return &oil_function_class_ptr_scaleconv_f64_s16->func;
  1.4528 +	}
  1.4529 +#endif
  1.4530 +
  1.4531 +#ifdef	__SYMBIAN32__
  1.4532 + 
  1.4533 +EXPORT_C void** _oil_function_class_ptr_scaleconv_f64_u16 ()	{
  1.4534 +	oil_function_class_ptr_scaleconv_f64_u16 = __oil_function_class_scaleconv_f64_u16();
  1.4535 +	return &oil_function_class_ptr_scaleconv_f64_u16->func;
  1.4536 +	}
  1.4537 +#endif
  1.4538 +
  1.4539 +#ifdef	__SYMBIAN32__
  1.4540 + 
  1.4541 +EXPORT_C void** _oil_function_class_ptr_scaleconv_f64_s32 ()	{
  1.4542 +	oil_function_class_ptr_scaleconv_f64_s32 = __oil_function_class_scaleconv_f64_s32();
  1.4543 +	return &oil_function_class_ptr_scaleconv_f64_s32->func;
  1.4544 +	}
  1.4545 +#endif
  1.4546 +
  1.4547 +#ifdef	__SYMBIAN32__
  1.4548 + 
  1.4549 +EXPORT_C void** _oil_function_class_ptr_scaleconv_f64_u32 ()	{
  1.4550 +	oil_function_class_ptr_scaleconv_f64_u32 = __oil_function_class_scaleconv_f64_u32();
  1.4551 +	return &oil_function_class_ptr_scaleconv_f64_u32->func;
  1.4552 +	}
  1.4553 +#endif
  1.4554 +