os/ossrv/genericopenlibs/liboil/src/ref/trans8x8.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2  * LIBOIL - Library of Optimized Inner Loops
     3  * Copyright (c) 2003,2004 David A. Schleef <ds@schleef.org>
     4  * All rights reserved.
     5  *
     6  * Redistribution and use in source and binary forms, with or without
     7  * modification, are permitted provided that the following conditions
     8  * are met:
     9  * 1. Redistributions of source code must retain the above copyright
    10  *    notice, this list of conditions and the following disclaimer.
    11  * 2. Redistributions in binary form must reproduce the above copyright
    12  *    notice, this list of conditions and the following disclaimer in the
    13  *    documentation and/or other materials provided with the distribution.
    14  * 
    15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
    16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
    17  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
    19  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    20  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
    21  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
    23  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
    24  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    25  * POSSIBILITY OF SUCH DAMAGE.
    26  */
    27 //Portions Copyright (c)  2008-2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. 
    28 
    29 #ifdef HAVE_CONFIG_H
    30 #include "config.h"
    31 #endif
    32 
    33 #include <liboil/liboilfunction.h>
    34 #include <math.h>
    35 
    36 #define TRANS8x8_DEFINE_REF(type)		\
    37 static void trans8x8_ ## type ## _ref (		\
    38     oil_type_ ## type *dest, int dstr,		\
    39     oil_type_ ## type *src, int sstr)		\
    40 {						\
    41   int i,j;					\
    42   for(i=0;i<8;i++){				\
    43     for(j=0;j<8;j++){				\
    44       OIL_GET(dest,dstr*i+j*sizeof(oil_type_ ## type),oil_type_ ## type) = \
    45         OIL_GET(src,sstr*j+i*sizeof(oil_type_ ## type),oil_type_ ## type); \
    46     }						\
    47   }						\
    48 }						\
    49 OIL_DEFINE_CLASS (trans8x8_ ## type, "oil_type_" #type " *d_8x8, int ds,	" \
    50     "oil_type_" #type " *s_8x8, int ss"); \
    51 OIL_DEFINE_IMPL_REF (trans8x8_ ## type ## _ref, trans8x8_ ## type)
    52 
    53 TRANS8x8_DEFINE_REF(u8);
    54 #ifdef	__SYMBIAN32__
    55  
    56 OilFunctionImpl* __oil_function_impl_trans8x8_u8_ref() {
    57 		return &_oil_function_impl_trans8x8_u8_ref;
    58 }
    59 #endif
    60 
    61 TRANS8x8_DEFINE_REF(u16);
    62 #ifdef	__SYMBIAN32__
    63  
    64 OilFunctionImpl* __oil_function_impl_trans8x8_u16_ref() {
    65 		return &_oil_function_impl_trans8x8_u16_ref;
    66 }
    67 #endif
    68 
    69 TRANS8x8_DEFINE_REF(u32);
    70 #ifdef	__SYMBIAN32__
    71  
    72 OilFunctionImpl* __oil_function_impl_trans8x8_u32_ref() {
    73 		return &_oil_function_impl_trans8x8_u32_ref;
    74 }
    75 #endif
    76 
    77 TRANS8x8_DEFINE_REF(f64);
    78 #ifdef	__SYMBIAN32__
    79  
    80 OilFunctionImpl* __oil_function_impl_trans8x8_f64_ref() {
    81 		return &_oil_function_impl_trans8x8_f64_ref;
    82 }
    83 #endif
    84 
    85 #ifdef	__SYMBIAN32__
    86  
    87 OilFunctionClass* __oil_function_class_trans8x8_u8() {
    88         return &_oil_function_class_trans8x8_u8;
    89 }
    90 #endif
    91 
    92 #ifdef	__SYMBIAN32__
    93  
    94 OilFunctionClass* __oil_function_class_trans8x8_u16() {
    95         return &_oil_function_class_trans8x8_u16;
    96 }
    97 #endif
    98 
    99 
   100 #ifdef	__SYMBIAN32__
   101  
   102 OilFunctionClass* __oil_function_class_trans8x8_u32() {
   103         return &_oil_function_class_trans8x8_u32;
   104 }
   105 #endif
   106 
   107 
   108 #ifdef	__SYMBIAN32__
   109  
   110 OilFunctionClass* __oil_function_class_trans8x8_f64() {
   111         return &_oil_function_class_trans8x8_f64;
   112 }
   113 #endif
   114 
   115 
   116 /**
   117  * oil_trans8x8_u8:
   118  * @d_8x8:
   119  * @ds:
   120  * @s_8x8:
   121  * @ss:
   122  *
   123  * Performs a matrix transpose the 8x8 block represented by @s_8x8
   124  * and places the
   125  * result in @d_8x8.  Note that this function can also be used for
   126  * any type of this size.
   127  */
   128 
   129 /**
   130  * oil_trans8x8_u16:
   131  * @d_8x8:
   132  * @ds:
   133  * @s_8x8:
   134  * @ss:
   135  *
   136  * Performs a matrix transpose the 8x8 block represented by @s_8x8
   137  * and places the
   138  * result in @d_8x8.  Note that this function can also be used for
   139  * any type of this size.
   140  */
   141 
   142 /**
   143  * oil_trans8x8_u32:
   144  * @d_8x8:
   145  * @ds:
   146  * @s_8x8:
   147  * @ss:
   148  *
   149  * Performs a matrix transpose the 8x8 block represented by @s_8x8
   150  * and places the
   151  * result in @d_8x8.  Note that this function can also be used for
   152  * any type of this size.
   153  */
   154 
   155 /**
   156  * oil_trans8x8_f64:
   157  * @d_8x8:
   158  * @ds:
   159  * @s_8x8:
   160  * @ss:
   161  *
   162  * Performs a matrix transpose the 8x8 block represented by @s_8x8
   163  * and places the
   164  * result in @d_8x8.
   165  */
   166 
   167 
   168 
   169 #ifdef	__SYMBIAN32__
   170  
   171 EXPORT_C void** _oil_function_class_ptr_trans8x8_u8 ()	{
   172 	oil_function_class_ptr_trans8x8_u8 = __oil_function_class_trans8x8_u8();
   173 	return &oil_function_class_ptr_trans8x8_u8->func;
   174 	}
   175 #endif
   176 
   177 #ifdef	__SYMBIAN32__
   178  
   179 EXPORT_C void** _oil_function_class_ptr_trans8x8_u16 ()	{
   180 	oil_function_class_ptr_trans8x8_u16 = __oil_function_class_trans8x8_u16();
   181 	return &oil_function_class_ptr_trans8x8_u16->func;
   182 	}
   183 #endif
   184 
   185 #ifdef	__SYMBIAN32__
   186  
   187 EXPORT_C void** _oil_function_class_ptr_trans8x8_u32 ()	{
   188 	oil_function_class_ptr_trans8x8_u32 = __oil_function_class_trans8x8_u32();
   189 	return &oil_function_class_ptr_trans8x8_u32->func;
   190 	}
   191 #endif
   192 
   193 #ifdef	__SYMBIAN32__
   194  
   195 EXPORT_C void** _oil_function_class_ptr_trans8x8_f64 ()	{
   196 	oil_function_class_ptr_trans8x8_f64 = __oil_function_class_trans8x8_f64();
   197 	return &oil_function_class_ptr_trans8x8_f64->func;
   198 	}
   199 #endif
   200