-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalarray.h
180 lines (165 loc) · 5.83 KB
/
valarray.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
/****************************************************************************
* ValArraySize_t *
****************************************************************************/
#undef ElementType
#undef ValArrayInterface
#undef ElementType
#undef ValArray
#undef _ValArray
#define _ValArray _ValArraySize_t
#define ElementType size_t
#define ValArrayInterface ValArraySize_tInterface
#define ValArray ValArraySize_t
#define __IS_UNSIGNED__
#define __IS_INTEGER__
#include "valarraygen.h"
#undef __IS_UNSIGNED__
#undef __IS_INTEGER__
extern ValArraySize_tInterface iValArraySize_t;
/****************************************************************************
* ValArrayShort *
****************************************************************************/
#undef ElementType
#undef ValArrayInterface
#undef ElementType
#undef ValArray
#undef _ValArray
#define _ValArray _ValArrayShort
#define ElementType short
#define ValArrayInterface ValArrayShortInterface
#define ValArray ValArrayShort
#define __IS_INTEGER__
#include "valarraygen.h"
#undef __IS_INTEGER__
extern ValArrayInterface iValArrayShort;
/****************************************************************************
* ValArrayInt *
****************************************************************************/
#undef ElementType
#undef ValArrayInterface
#undef ElementType
#undef ValArray
#undef _ValArray
#define _ValArray _ValArrayInt
#define ElementType int
#define ValArrayInterface ValArrayIntInterface
#define ValArray ValArrayInt
#define __IS_INTEGER__
#include "valarraygen.h"
#undef __IS_INTEGER__
extern ValArrayInterface iValArrayInt;
/****************************************************************************
* ValArrayLong *
****************************************************************************/
#undef ElementType
#undef ValArrayInterface
#undef ElementType
#undef ValArray
#undef _ValArray
#define _ValArray _ValArrayLong
#define ElementType long
#define ValArrayInterface ValArrayLongInterface
#define ValArray ValArrayLong
#define __IS_INTEGER__
#include "valarraygen.h"
#undef __IS_INTEGER__
extern ValArrayInterface iValArrayLong;
/****************************************************************************
* ValArrayDouble *
****************************************************************************/
#undef ElementType
#undef ValArrayInterface
#undef ElementType
#undef ValArray
#undef _ValArray
#define _ValArray _ValArrayDouble
#define ElementType double
#define ValArrayInterface ValArrayDoubleInterface
#define ValArray ValArrayDouble
#include "valarraygen.h"
extern ValArrayDoubleInterface iValArrayDouble;
/****************************************************************************
* ValArrayLongDouble *
****************************************************************************/
#undef ElementType
#undef ValArrayInterface
#undef ElementType
#undef ValArray
#undef _ValArray
#define _ValArray _ValArrayLongDouble
#define ElementType long double
#define ValArrayInterface ValArrayLongDoubleInterface
#define ValArray ValArrayLongDouble
#include "valarraygen.h"
extern ValArrayInterface iValArrayLongDouble;
/****************************************************************************
* ValArrayLLong *
****************************************************************************/
#undef ElementType
#undef ValArrayInterface
#undef ElementType
#undef ValArray
#undef _ValArray
#define _ValArray _ValArrayLLong
#define ElementType long long
#define ValArrayInterface ValArrayLLongInterface
#define ValArray ValArrayLLong
#define __IS_INTEGER__
#include "valarraygen.h"
#undef __IS_INTEGER__
extern ValArrayInterface iValArrayLLong;
/****************************************************************************
* ValArrayULLong *
****************************************************************************/
#undef ElementType
#undef ValArrayInterface
#undef ElementType
#undef ValArray
#undef _ValArray
#define _ValArray _ValArrayULLong
#define ElementType unsigned long long
#define ValArrayInterface ValArrayULLongInterface
#define ValArray ValArrayULLong
#define __IS_INTEGER__
#define __IS_UNSIGNED__
#include "valarraygen.h"
#undef __IS_INTEGER__
#undef __IS_UNSIGNED__
extern ValArrayInterface iValArrayULLong;
/****************************************************************************
* ValArrayFloat *
****************************************************************************/
#undef ElementType
#undef ValArrayInterface
#undef ElementType
#undef ValArray
#undef _ValArray
#define _ValArray _ValArrayFloat
#define ElementType float
#define ValArrayInterface ValArrayFloatInterface
#define ValArray ValArrayFloat
#include "valarraygen.h"
extern ValArrayInterface iValArrayFloat;
/****************************************************************************
* ValArrayUInt *
****************************************************************************/
#undef ElementType
#undef ValArrayInterface
#undef ElementType
#undef ValArray
#undef _ValArray
#define _ValArray _ValArrayUInt
#define ElementType unsigned
#define ValArrayInterface ValArrayUIntInterface
#define ValArray ValArrayUInt
#define __IS_UNSIGNED__
#define __IS_INTEGER__
#include "valarraygen.h"
#undef __IS_UNSIGNED__
#undef __IS_INTEGER__
extern ValArrayInterface iValArrayUInt;
#undef ElementType
#undef ValArrayInterface
#undef ElementType
#undef ValArray
#undef _ValArray