2 /* autogenerated from gstadderorc.orc */
4 #ifndef _GSTADDERORC_H_
5 #define _GSTADDERORC_H_
13 #ifndef _ORC_INTEGER_TYPEDEFS_
14 #define _ORC_INTEGER_TYPEDEFS_
15 #if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
17 typedef int8_t orc_int8;
18 typedef int16_t orc_int16;
19 typedef int32_t orc_int32;
20 typedef int64_t orc_int64;
21 typedef uint8_t orc_uint8;
22 typedef uint16_t orc_uint16;
23 typedef uint32_t orc_uint32;
24 typedef uint64_t orc_uint64;
25 #elif defined(_MSC_VER)
26 typedef signed __int8 orc_int8;
27 typedef signed __int16 orc_int16;
28 typedef signed __int32 orc_int32;
29 typedef signed __int64 orc_int64;
30 typedef unsigned __int8 orc_uint8;
31 typedef unsigned __int16 orc_uint16;
32 typedef unsigned __int32 orc_uint32;
33 typedef unsigned __int64 orc_uint64;
36 typedef signed char orc_int8;
37 typedef short orc_int16;
38 typedef int orc_int32;
39 typedef unsigned char orc_uint8;
40 typedef unsigned short orc_uint16;
41 typedef unsigned int orc_uint32;
42 #if INT_MAX == LONG_MAX
43 typedef long long orc_int64;
44 typedef unsigned long long orc_uint64;
46 typedef long orc_int64;
47 typedef unsigned long orc_uint64;
50 typedef union { orc_int32 i; float f; } orc_union32;
51 typedef union { orc_int64 i; double f; } orc_union64;
54 void add_int32 (gint32 * d1, const gint32 * s1, int n);
55 void add_int16 (gint16 * d1, const gint16 * s1, int n);
56 void add_int8 (gint8 * d1, const gint8 * s1, int n);
57 void add_uint32 (guint32 * d1, const guint32 * s1, int n);
58 void add_uint16 (guint16 * d1, const guint16 * s1, int n);
59 void add_uint8 (guint8 * d1, const guint8 * s1, int n);
60 void add_float32 (float * d1, const float * s1, int n);