OLD | NEW |
| (Empty) |
1 /* | |
2 * Copyright 2012 Google Inc. | |
3 * | |
4 * Use of this source code is governed by a BSD-style license that can be | |
5 * found in the LICENSE file. | |
6 */ | |
7 | |
8 #ifndef SkPreprocessorSeq_DEFINED | |
9 #define SkPreprocessorSeq_DEFINED | |
10 | |
11 #define SK_CONCAT(a, b) SK_CONCAT_I(a, b) // allow for macro expansion | |
12 #define SK_CONCAT_I(a, b) a ## b | |
13 | |
14 //A preprocessor pair is of the form '(a, b)' | |
15 #define SK_PAIR_FIRST(pair) SK_PAIR_FIRST_I pair | |
16 #define SK_PAIR_FIRST_I(a, b) a | |
17 #define SK_PAIR_SECOND(pair) SK_PAIR_SECOND_I pair | |
18 #define SK_PAIR_SECOND_I(a, b) b | |
19 | |
20 //A preprocessor sequence is of the form (a)(b)(c)SK_SEQ_END | |
21 #if 0 | |
22 //The following is what we logically want to do. | |
23 //However, MSVC expands macros at the wrong time, causing an error on use of | |
24 //SK_SEQ_IGNORE_SECOND_I because it formally takes two parameters, but we only | |
25 //pass "one" parameter in SK_SEQ_IGNORE_SECOND. | |
26 | |
27 #define SK_SEQ_HEAD(seq) SK_SEQ_IGNORE_SECOND(SK_SEQ_FIRST seq) | |
28 #define SK_SEQ_IGNORE_SECOND(x) SK_SEQ_IGNORE_SECOND_I(x) // expand x | |
29 #define SK_SEQ_IGNORE_SECOND_I(x, _) x | |
30 #define SK_SEQ_FIRST(x) x, SK_NIL | |
31 | |
32 #else | |
33 | |
34 //This is less obvious, but works on GCC, clang, and MSVC. | |
35 #define SK_SEQ_HEAD(seq) SK_SEQ_HEAD_II((SK_SEQ_FIRST seq)) | |
36 #define SK_SEQ_HEAD_II(x) SK_SEQ_IGNORE_SECOND_I x | |
37 #define SK_SEQ_IGNORE_SECOND_I(x, _) x | |
38 #define SK_SEQ_FIRST(x) x, SK_NIL | |
39 | |
40 #endif | |
41 | |
42 #define SK_SEQ_TAIL(seq) SK_SEQ_TAIL_I seq | |
43 #define SK_SEQ_TAIL_I(x) | |
44 | |
45 #define SK_SEQ_SIZE(seq) SK_CONCAT(SK_SEQ_SIZE_, SK_SEQ_SIZE_TERMINATOR seq) | |
46 | |
47 #define SK_SEQ_SIZE_TERMINATOR(_) SK_SEQ_SIZE_0 | |
48 #define SK_SEQ_SIZE_0(_) SK_SEQ_SIZE_1 | |
49 #define SK_SEQ_SIZE_1(_) SK_SEQ_SIZE_2 | |
50 #define SK_SEQ_SIZE_2(_) SK_SEQ_SIZE_3 | |
51 #define SK_SEQ_SIZE_3(_) SK_SEQ_SIZE_4 | |
52 #define SK_SEQ_SIZE_4(_) SK_SEQ_SIZE_5 | |
53 #define SK_SEQ_SIZE_5(_) SK_SEQ_SIZE_6 | |
54 #define SK_SEQ_SIZE_6(_) SK_SEQ_SIZE_7 | |
55 #define SK_SEQ_SIZE_7(_) SK_SEQ_SIZE_8 | |
56 #define SK_SEQ_SIZE_8(_) SK_SEQ_SIZE_9 | |
57 #define SK_SEQ_SIZE_9(_) SK_SEQ_SIZE_10 | |
58 #define SK_SEQ_SIZE_10(_) SK_SEQ_SIZE_11 | |
59 #define SK_SEQ_SIZE_11(_) SK_SEQ_SIZE_12 | |
60 #define SK_SEQ_SIZE_12(_) SK_SEQ_SIZE_13 | |
61 #define SK_SEQ_SIZE_13(_) SK_SEQ_SIZE_14 | |
62 #define SK_SEQ_SIZE_14(_) SK_SEQ_SIZE_15 | |
63 #define SK_SEQ_SIZE_15(_) SK_SEQ_SIZE_16 | |
64 #define SK_SEQ_SIZE_16(_) SK_SEQ_SIZE_17 | |
65 #define SK_SEQ_SIZE_17(_) SK_SEQ_SIZE_18 | |
66 #define SK_SEQ_SIZE_18(_) SK_SEQ_SIZE_19 | |
67 #define SK_SEQ_SIZE_19(_) SK_SEQ_SIZE_20 | |
68 #define SK_SEQ_SIZE_20(_) SK_SEQ_SIZE_21 | |
69 #define SK_SEQ_SIZE_21(_) SK_SEQ_SIZE_22 | |
70 #define SK_SEQ_SIZE_22(_) SK_SEQ_SIZE_23 | |
71 #define SK_SEQ_SIZE_23(_) SK_SEQ_SIZE_24 | |
72 #define SK_SEQ_SIZE_24(_) SK_SEQ_SIZE_25 | |
73 #define SK_SEQ_SIZE_25(_) SK_SEQ_SIZE_26 | |
74 #define SK_SEQ_SIZE_26(_) SK_SEQ_SIZE_27 | |
75 #define SK_SEQ_SIZE_27(_) SK_SEQ_SIZE_28 | |
76 #define SK_SEQ_SIZE_28(_) SK_SEQ_SIZE_29 | |
77 #define SK_SEQ_SIZE_29(_) SK_SEQ_SIZE_30 | |
78 #define SK_SEQ_SIZE_30(_) SK_SEQ_SIZE_31 | |
79 #define SK_SEQ_SIZE_31(_) SK_SEQ_SIZE_32 | |
80 #define SK_SEQ_SIZE_32(_) SK_SEQ_SIZE_33 | |
81 #define SK_SEQ_SIZE_33(_) SK_SEQ_SIZE_34 | |
82 #define SK_SEQ_SIZE_34(_) SK_SEQ_SIZE_35 | |
83 #define SK_SEQ_SIZE_35(_) SK_SEQ_SIZE_36 | |
84 #define SK_SEQ_SIZE_36(_) SK_SEQ_SIZE_37 | |
85 #define SK_SEQ_SIZE_37(_) SK_SEQ_SIZE_38 | |
86 #define SK_SEQ_SIZE_38(_) SK_SEQ_SIZE_39 | |
87 #define SK_SEQ_SIZE_39(_) SK_SEQ_SIZE_40 | |
88 #define SK_SEQ_SIZE_40(_) SK_SEQ_SIZE_41 | |
89 #define SK_SEQ_SIZE_41(_) SK_SEQ_SIZE_42 | |
90 #define SK_SEQ_SIZE_42(_) SK_SEQ_SIZE_43 | |
91 #define SK_SEQ_SIZE_43(_) SK_SEQ_SIZE_44 | |
92 #define SK_SEQ_SIZE_44(_) SK_SEQ_SIZE_45 | |
93 #define SK_SEQ_SIZE_45(_) SK_SEQ_SIZE_46 | |
94 #define SK_SEQ_SIZE_46(_) SK_SEQ_SIZE_47 | |
95 #define SK_SEQ_SIZE_47(_) SK_SEQ_SIZE_48 | |
96 #define SK_SEQ_SIZE_48(_) SK_SEQ_SIZE_49 | |
97 #define SK_SEQ_SIZE_49(_) SK_SEQ_SIZE_50 | |
98 #define SK_SEQ_SIZE_50(_) SK_SEQ_SIZE_51 | |
99 #define SK_SEQ_SIZE_51(_) SK_SEQ_SIZE_52 | |
100 #define SK_SEQ_SIZE_52(_) SK_SEQ_SIZE_53 | |
101 #define SK_SEQ_SIZE_53(_) SK_SEQ_SIZE_54 | |
102 #define SK_SEQ_SIZE_54(_) SK_SEQ_SIZE_55 | |
103 #define SK_SEQ_SIZE_55(_) SK_SEQ_SIZE_56 | |
104 #define SK_SEQ_SIZE_56(_) SK_SEQ_SIZE_57 | |
105 #define SK_SEQ_SIZE_57(_) SK_SEQ_SIZE_58 | |
106 #define SK_SEQ_SIZE_58(_) SK_SEQ_SIZE_59 | |
107 #define SK_SEQ_SIZE_59(_) SK_SEQ_SIZE_60 | |
108 #define SK_SEQ_SIZE_60(_) SK_SEQ_SIZE_61 | |
109 #define SK_SEQ_SIZE_61(_) SK_SEQ_SIZE_62 | |
110 #define SK_SEQ_SIZE_62(_) SK_SEQ_SIZE_63 | |
111 #define SK_SEQ_SIZE_63(_) SK_SEQ_SIZE_64 | |
112 #define SK_SEQ_SIZE_64(_) SK_SEQ_SIZE_65 | |
113 #define SK_SEQ_SIZE_65(_) SK_SEQ_SIZE_66 | |
114 #define SK_SEQ_SIZE_66(_) SK_SEQ_SIZE_67 | |
115 #define SK_SEQ_SIZE_67(_) SK_SEQ_SIZE_68 | |
116 #define SK_SEQ_SIZE_68(_) SK_SEQ_SIZE_69 | |
117 #define SK_SEQ_SIZE_69(_) SK_SEQ_SIZE_70 | |
118 #define SK_SEQ_SIZE_70(_) SK_SEQ_SIZE_71 | |
119 #define SK_SEQ_SIZE_71(_) SK_SEQ_SIZE_72 | |
120 #define SK_SEQ_SIZE_72(_) SK_SEQ_SIZE_73 | |
121 #define SK_SEQ_SIZE_73(_) SK_SEQ_SIZE_74 | |
122 #define SK_SEQ_SIZE_74(_) SK_SEQ_SIZE_75 | |
123 #define SK_SEQ_SIZE_75(_) SK_SEQ_SIZE_76 | |
124 #define SK_SEQ_SIZE_76(_) SK_SEQ_SIZE_77 | |
125 #define SK_SEQ_SIZE_77(_) SK_SEQ_SIZE_78 | |
126 #define SK_SEQ_SIZE_78(_) SK_SEQ_SIZE_79 | |
127 #define SK_SEQ_SIZE_79(_) SK_SEQ_SIZE_80 | |
128 #define SK_SEQ_SIZE_80(_) SK_SEQ_SIZE_81 | |
129 #define SK_SEQ_SIZE_81(_) SK_SEQ_SIZE_82 | |
130 #define SK_SEQ_SIZE_82(_) SK_SEQ_SIZE_83 | |
131 #define SK_SEQ_SIZE_83(_) SK_SEQ_SIZE_84 | |
132 #define SK_SEQ_SIZE_84(_) SK_SEQ_SIZE_85 | |
133 #define SK_SEQ_SIZE_85(_) SK_SEQ_SIZE_86 | |
134 #define SK_SEQ_SIZE_86(_) SK_SEQ_SIZE_87 | |
135 #define SK_SEQ_SIZE_87(_) SK_SEQ_SIZE_88 | |
136 #define SK_SEQ_SIZE_88(_) SK_SEQ_SIZE_89 | |
137 #define SK_SEQ_SIZE_89(_) SK_SEQ_SIZE_90 | |
138 #define SK_SEQ_SIZE_90(_) SK_SEQ_SIZE_91 | |
139 #define SK_SEQ_SIZE_91(_) SK_SEQ_SIZE_92 | |
140 #define SK_SEQ_SIZE_92(_) SK_SEQ_SIZE_93 | |
141 #define SK_SEQ_SIZE_93(_) SK_SEQ_SIZE_94 | |
142 #define SK_SEQ_SIZE_94(_) SK_SEQ_SIZE_95 | |
143 #define SK_SEQ_SIZE_95(_) SK_SEQ_SIZE_96 | |
144 #define SK_SEQ_SIZE_96(_) SK_SEQ_SIZE_97 | |
145 #define SK_SEQ_SIZE_97(_) SK_SEQ_SIZE_98 | |
146 #define SK_SEQ_SIZE_98(_) SK_SEQ_SIZE_99 | |
147 #define SK_SEQ_SIZE_99(_) SK_SEQ_SIZE_100 | |
148 #define SK_SEQ_SIZE_100(_) SK_SEQ_SIZE_101 | |
149 #define SK_SEQ_SIZE_101(_) SK_SEQ_SIZE_102 | |
150 #define SK_SEQ_SIZE_102(_) SK_SEQ_SIZE_103 | |
151 #define SK_SEQ_SIZE_103(_) SK_SEQ_SIZE_104 | |
152 #define SK_SEQ_SIZE_104(_) SK_SEQ_SIZE_105 | |
153 #define SK_SEQ_SIZE_105(_) SK_SEQ_SIZE_106 | |
154 #define SK_SEQ_SIZE_106(_) SK_SEQ_SIZE_107 | |
155 #define SK_SEQ_SIZE_107(_) SK_SEQ_SIZE_108 | |
156 #define SK_SEQ_SIZE_108(_) SK_SEQ_SIZE_109 | |
157 #define SK_SEQ_SIZE_109(_) SK_SEQ_SIZE_110 | |
158 #define SK_SEQ_SIZE_110(_) SK_SEQ_SIZE_111 | |
159 #define SK_SEQ_SIZE_111(_) SK_SEQ_SIZE_112 | |
160 #define SK_SEQ_SIZE_112(_) SK_SEQ_SIZE_113 | |
161 #define SK_SEQ_SIZE_113(_) SK_SEQ_SIZE_114 | |
162 #define SK_SEQ_SIZE_114(_) SK_SEQ_SIZE_115 | |
163 #define SK_SEQ_SIZE_115(_) SK_SEQ_SIZE_116 | |
164 #define SK_SEQ_SIZE_116(_) SK_SEQ_SIZE_117 | |
165 #define SK_SEQ_SIZE_117(_) SK_SEQ_SIZE_118 | |
166 #define SK_SEQ_SIZE_118(_) SK_SEQ_SIZE_119 | |
167 #define SK_SEQ_SIZE_119(_) SK_SEQ_SIZE_120 | |
168 #define SK_SEQ_SIZE_120(_) SK_SEQ_SIZE_121 | |
169 #define SK_SEQ_SIZE_121(_) SK_SEQ_SIZE_122 | |
170 #define SK_SEQ_SIZE_122(_) SK_SEQ_SIZE_123 | |
171 #define SK_SEQ_SIZE_123(_) SK_SEQ_SIZE_124 | |
172 #define SK_SEQ_SIZE_124(_) SK_SEQ_SIZE_125 | |
173 #define SK_SEQ_SIZE_125(_) SK_SEQ_SIZE_126 | |
174 #define SK_SEQ_SIZE_126(_) SK_SEQ_SIZE_127 | |
175 #define SK_SEQ_SIZE_127(_) SK_SEQ_SIZE_128 | |
176 #define SK_SEQ_SIZE_128(_) SK_SEQ_SIZE_129 | |
177 #define SK_SEQ_SIZE_129(_) SK_SEQ_SIZE_130 | |
178 #define SK_SEQ_SIZE_130(_) SK_SEQ_SIZE_131 | |
179 #define SK_SEQ_SIZE_131(_) SK_SEQ_SIZE_132 | |
180 #define SK_SEQ_SIZE_132(_) SK_SEQ_SIZE_133 | |
181 #define SK_SEQ_SIZE_133(_) SK_SEQ_SIZE_134 | |
182 #define SK_SEQ_SIZE_134(_) SK_SEQ_SIZE_135 | |
183 #define SK_SEQ_SIZE_135(_) SK_SEQ_SIZE_136 | |
184 #define SK_SEQ_SIZE_136(_) SK_SEQ_SIZE_137 | |
185 #define SK_SEQ_SIZE_137(_) SK_SEQ_SIZE_138 | |
186 #define SK_SEQ_SIZE_138(_) SK_SEQ_SIZE_139 | |
187 #define SK_SEQ_SIZE_139(_) SK_SEQ_SIZE_140 | |
188 #define SK_SEQ_SIZE_140(_) SK_SEQ_SIZE_141 | |
189 #define SK_SEQ_SIZE_141(_) SK_SEQ_SIZE_142 | |
190 #define SK_SEQ_SIZE_142(_) SK_SEQ_SIZE_143 | |
191 #define SK_SEQ_SIZE_143(_) SK_SEQ_SIZE_144 | |
192 #define SK_SEQ_SIZE_144(_) SK_SEQ_SIZE_145 | |
193 #define SK_SEQ_SIZE_145(_) SK_SEQ_SIZE_146 | |
194 #define SK_SEQ_SIZE_146(_) SK_SEQ_SIZE_147 | |
195 #define SK_SEQ_SIZE_147(_) SK_SEQ_SIZE_148 | |
196 #define SK_SEQ_SIZE_148(_) SK_SEQ_SIZE_149 | |
197 #define SK_SEQ_SIZE_149(_) SK_SEQ_SIZE_150 | |
198 #define SK_SEQ_SIZE_150(_) SK_SEQ_SIZE_151 | |
199 #define SK_SEQ_SIZE_151(_) SK_SEQ_SIZE_152 | |
200 #define SK_SEQ_SIZE_152(_) SK_SEQ_SIZE_153 | |
201 #define SK_SEQ_SIZE_153(_) SK_SEQ_SIZE_154 | |
202 #define SK_SEQ_SIZE_154(_) SK_SEQ_SIZE_155 | |
203 #define SK_SEQ_SIZE_155(_) SK_SEQ_SIZE_156 | |
204 #define SK_SEQ_SIZE_156(_) SK_SEQ_SIZE_157 | |
205 #define SK_SEQ_SIZE_157(_) SK_SEQ_SIZE_158 | |
206 #define SK_SEQ_SIZE_158(_) SK_SEQ_SIZE_159 | |
207 #define SK_SEQ_SIZE_159(_) SK_SEQ_SIZE_160 | |
208 #define SK_SEQ_SIZE_160(_) SK_SEQ_SIZE_161 | |
209 #define SK_SEQ_SIZE_161(_) SK_SEQ_SIZE_162 | |
210 #define SK_SEQ_SIZE_162(_) SK_SEQ_SIZE_163 | |
211 #define SK_SEQ_SIZE_163(_) SK_SEQ_SIZE_164 | |
212 #define SK_SEQ_SIZE_164(_) SK_SEQ_SIZE_165 | |
213 #define SK_SEQ_SIZE_165(_) SK_SEQ_SIZE_166 | |
214 #define SK_SEQ_SIZE_166(_) SK_SEQ_SIZE_167 | |
215 #define SK_SEQ_SIZE_167(_) SK_SEQ_SIZE_168 | |
216 #define SK_SEQ_SIZE_168(_) SK_SEQ_SIZE_169 | |
217 #define SK_SEQ_SIZE_169(_) SK_SEQ_SIZE_170 | |
218 #define SK_SEQ_SIZE_170(_) SK_SEQ_SIZE_171 | |
219 #define SK_SEQ_SIZE_171(_) SK_SEQ_SIZE_172 | |
220 #define SK_SEQ_SIZE_172(_) SK_SEQ_SIZE_173 | |
221 #define SK_SEQ_SIZE_173(_) SK_SEQ_SIZE_174 | |
222 #define SK_SEQ_SIZE_174(_) SK_SEQ_SIZE_175 | |
223 #define SK_SEQ_SIZE_175(_) SK_SEQ_SIZE_176 | |
224 #define SK_SEQ_SIZE_176(_) SK_SEQ_SIZE_177 | |
225 #define SK_SEQ_SIZE_177(_) SK_SEQ_SIZE_178 | |
226 #define SK_SEQ_SIZE_178(_) SK_SEQ_SIZE_179 | |
227 #define SK_SEQ_SIZE_179(_) SK_SEQ_SIZE_180 | |
228 #define SK_SEQ_SIZE_180(_) SK_SEQ_SIZE_181 | |
229 #define SK_SEQ_SIZE_181(_) SK_SEQ_SIZE_182 | |
230 #define SK_SEQ_SIZE_182(_) SK_SEQ_SIZE_183 | |
231 #define SK_SEQ_SIZE_183(_) SK_SEQ_SIZE_184 | |
232 #define SK_SEQ_SIZE_184(_) SK_SEQ_SIZE_185 | |
233 #define SK_SEQ_SIZE_185(_) SK_SEQ_SIZE_186 | |
234 #define SK_SEQ_SIZE_186(_) SK_SEQ_SIZE_187 | |
235 #define SK_SEQ_SIZE_187(_) SK_SEQ_SIZE_188 | |
236 #define SK_SEQ_SIZE_188(_) SK_SEQ_SIZE_189 | |
237 #define SK_SEQ_SIZE_189(_) SK_SEQ_SIZE_190 | |
238 #define SK_SEQ_SIZE_190(_) SK_SEQ_SIZE_191 | |
239 #define SK_SEQ_SIZE_191(_) SK_SEQ_SIZE_192 | |
240 #define SK_SEQ_SIZE_192(_) SK_SEQ_SIZE_193 | |
241 #define SK_SEQ_SIZE_193(_) SK_SEQ_SIZE_194 | |
242 #define SK_SEQ_SIZE_194(_) SK_SEQ_SIZE_195 | |
243 #define SK_SEQ_SIZE_195(_) SK_SEQ_SIZE_196 | |
244 #define SK_SEQ_SIZE_196(_) SK_SEQ_SIZE_197 | |
245 #define SK_SEQ_SIZE_197(_) SK_SEQ_SIZE_198 | |
246 #define SK_SEQ_SIZE_198(_) SK_SEQ_SIZE_199 | |
247 #define SK_SEQ_SIZE_199(_) SK_SEQ_SIZE_200 | |
248 #define SK_SEQ_SIZE_200(_) SK_SEQ_SIZE_201 | |
249 #define SK_SEQ_SIZE_201(_) SK_SEQ_SIZE_202 | |
250 #define SK_SEQ_SIZE_202(_) SK_SEQ_SIZE_203 | |
251 #define SK_SEQ_SIZE_203(_) SK_SEQ_SIZE_204 | |
252 #define SK_SEQ_SIZE_204(_) SK_SEQ_SIZE_205 | |
253 #define SK_SEQ_SIZE_205(_) SK_SEQ_SIZE_206 | |
254 #define SK_SEQ_SIZE_206(_) SK_SEQ_SIZE_207 | |
255 #define SK_SEQ_SIZE_207(_) SK_SEQ_SIZE_208 | |
256 #define SK_SEQ_SIZE_208(_) SK_SEQ_SIZE_209 | |
257 #define SK_SEQ_SIZE_209(_) SK_SEQ_SIZE_210 | |
258 #define SK_SEQ_SIZE_210(_) SK_SEQ_SIZE_211 | |
259 #define SK_SEQ_SIZE_211(_) SK_SEQ_SIZE_212 | |
260 #define SK_SEQ_SIZE_212(_) SK_SEQ_SIZE_213 | |
261 #define SK_SEQ_SIZE_213(_) SK_SEQ_SIZE_214 | |
262 #define SK_SEQ_SIZE_214(_) SK_SEQ_SIZE_215 | |
263 #define SK_SEQ_SIZE_215(_) SK_SEQ_SIZE_216 | |
264 #define SK_SEQ_SIZE_216(_) SK_SEQ_SIZE_217 | |
265 #define SK_SEQ_SIZE_217(_) SK_SEQ_SIZE_218 | |
266 #define SK_SEQ_SIZE_218(_) SK_SEQ_SIZE_219 | |
267 #define SK_SEQ_SIZE_219(_) SK_SEQ_SIZE_220 | |
268 #define SK_SEQ_SIZE_220(_) SK_SEQ_SIZE_221 | |
269 #define SK_SEQ_SIZE_221(_) SK_SEQ_SIZE_222 | |
270 #define SK_SEQ_SIZE_222(_) SK_SEQ_SIZE_223 | |
271 #define SK_SEQ_SIZE_223(_) SK_SEQ_SIZE_224 | |
272 #define SK_SEQ_SIZE_224(_) SK_SEQ_SIZE_225 | |
273 #define SK_SEQ_SIZE_225(_) SK_SEQ_SIZE_226 | |
274 #define SK_SEQ_SIZE_226(_) SK_SEQ_SIZE_227 | |
275 #define SK_SEQ_SIZE_227(_) SK_SEQ_SIZE_228 | |
276 #define SK_SEQ_SIZE_228(_) SK_SEQ_SIZE_229 | |
277 #define SK_SEQ_SIZE_229(_) SK_SEQ_SIZE_230 | |
278 #define SK_SEQ_SIZE_230(_) SK_SEQ_SIZE_231 | |
279 #define SK_SEQ_SIZE_231(_) SK_SEQ_SIZE_232 | |
280 #define SK_SEQ_SIZE_232(_) SK_SEQ_SIZE_233 | |
281 #define SK_SEQ_SIZE_233(_) SK_SEQ_SIZE_234 | |
282 #define SK_SEQ_SIZE_234(_) SK_SEQ_SIZE_235 | |
283 #define SK_SEQ_SIZE_235(_) SK_SEQ_SIZE_236 | |
284 #define SK_SEQ_SIZE_236(_) SK_SEQ_SIZE_237 | |
285 #define SK_SEQ_SIZE_237(_) SK_SEQ_SIZE_238 | |
286 #define SK_SEQ_SIZE_238(_) SK_SEQ_SIZE_239 | |
287 #define SK_SEQ_SIZE_239(_) SK_SEQ_SIZE_240 | |
288 #define SK_SEQ_SIZE_240(_) SK_SEQ_SIZE_241 | |
289 #define SK_SEQ_SIZE_241(_) SK_SEQ_SIZE_242 | |
290 #define SK_SEQ_SIZE_242(_) SK_SEQ_SIZE_243 | |
291 #define SK_SEQ_SIZE_243(_) SK_SEQ_SIZE_244 | |
292 #define SK_SEQ_SIZE_244(_) SK_SEQ_SIZE_245 | |
293 #define SK_SEQ_SIZE_245(_) SK_SEQ_SIZE_246 | |
294 #define SK_SEQ_SIZE_246(_) SK_SEQ_SIZE_247 | |
295 #define SK_SEQ_SIZE_247(_) SK_SEQ_SIZE_248 | |
296 #define SK_SEQ_SIZE_248(_) SK_SEQ_SIZE_249 | |
297 #define SK_SEQ_SIZE_249(_) SK_SEQ_SIZE_250 | |
298 #define SK_SEQ_SIZE_250(_) SK_SEQ_SIZE_251 | |
299 #define SK_SEQ_SIZE_251(_) SK_SEQ_SIZE_252 | |
300 #define SK_SEQ_SIZE_252(_) SK_SEQ_SIZE_253 | |
301 #define SK_SEQ_SIZE_253(_) SK_SEQ_SIZE_254 | |
302 #define SK_SEQ_SIZE_254(_) SK_SEQ_SIZE_255 | |
303 #define SK_SEQ_SIZE_255(_) SK_SEQ_SIZE_256 | |
304 | |
305 | |
306 #define SK_SEQ_SIZE_SK_SEQ_SIZE_0 0 | |
307 #define SK_SEQ_SIZE_SK_SEQ_SIZE_1 1 | |
308 #define SK_SEQ_SIZE_SK_SEQ_SIZE_2 2 | |
309 #define SK_SEQ_SIZE_SK_SEQ_SIZE_3 3 | |
310 #define SK_SEQ_SIZE_SK_SEQ_SIZE_4 4 | |
311 #define SK_SEQ_SIZE_SK_SEQ_SIZE_5 5 | |
312 #define SK_SEQ_SIZE_SK_SEQ_SIZE_6 6 | |
313 #define SK_SEQ_SIZE_SK_SEQ_SIZE_7 7 | |
314 #define SK_SEQ_SIZE_SK_SEQ_SIZE_8 8 | |
315 #define SK_SEQ_SIZE_SK_SEQ_SIZE_9 9 | |
316 #define SK_SEQ_SIZE_SK_SEQ_SIZE_10 10 | |
317 #define SK_SEQ_SIZE_SK_SEQ_SIZE_11 11 | |
318 #define SK_SEQ_SIZE_SK_SEQ_SIZE_12 12 | |
319 #define SK_SEQ_SIZE_SK_SEQ_SIZE_13 13 | |
320 #define SK_SEQ_SIZE_SK_SEQ_SIZE_14 14 | |
321 #define SK_SEQ_SIZE_SK_SEQ_SIZE_15 15 | |
322 #define SK_SEQ_SIZE_SK_SEQ_SIZE_16 16 | |
323 #define SK_SEQ_SIZE_SK_SEQ_SIZE_17 17 | |
324 #define SK_SEQ_SIZE_SK_SEQ_SIZE_18 18 | |
325 #define SK_SEQ_SIZE_SK_SEQ_SIZE_19 19 | |
326 #define SK_SEQ_SIZE_SK_SEQ_SIZE_20 20 | |
327 #define SK_SEQ_SIZE_SK_SEQ_SIZE_21 21 | |
328 #define SK_SEQ_SIZE_SK_SEQ_SIZE_22 22 | |
329 #define SK_SEQ_SIZE_SK_SEQ_SIZE_23 23 | |
330 #define SK_SEQ_SIZE_SK_SEQ_SIZE_24 24 | |
331 #define SK_SEQ_SIZE_SK_SEQ_SIZE_25 25 | |
332 #define SK_SEQ_SIZE_SK_SEQ_SIZE_26 26 | |
333 #define SK_SEQ_SIZE_SK_SEQ_SIZE_27 27 | |
334 #define SK_SEQ_SIZE_SK_SEQ_SIZE_28 28 | |
335 #define SK_SEQ_SIZE_SK_SEQ_SIZE_29 29 | |
336 #define SK_SEQ_SIZE_SK_SEQ_SIZE_30 30 | |
337 #define SK_SEQ_SIZE_SK_SEQ_SIZE_31 31 | |
338 #define SK_SEQ_SIZE_SK_SEQ_SIZE_32 32 | |
339 #define SK_SEQ_SIZE_SK_SEQ_SIZE_33 33 | |
340 #define SK_SEQ_SIZE_SK_SEQ_SIZE_34 34 | |
341 #define SK_SEQ_SIZE_SK_SEQ_SIZE_35 35 | |
342 #define SK_SEQ_SIZE_SK_SEQ_SIZE_36 36 | |
343 #define SK_SEQ_SIZE_SK_SEQ_SIZE_37 37 | |
344 #define SK_SEQ_SIZE_SK_SEQ_SIZE_38 38 | |
345 #define SK_SEQ_SIZE_SK_SEQ_SIZE_39 39 | |
346 #define SK_SEQ_SIZE_SK_SEQ_SIZE_40 40 | |
347 #define SK_SEQ_SIZE_SK_SEQ_SIZE_41 41 | |
348 #define SK_SEQ_SIZE_SK_SEQ_SIZE_42 42 | |
349 #define SK_SEQ_SIZE_SK_SEQ_SIZE_43 43 | |
350 #define SK_SEQ_SIZE_SK_SEQ_SIZE_44 44 | |
351 #define SK_SEQ_SIZE_SK_SEQ_SIZE_45 45 | |
352 #define SK_SEQ_SIZE_SK_SEQ_SIZE_46 46 | |
353 #define SK_SEQ_SIZE_SK_SEQ_SIZE_47 47 | |
354 #define SK_SEQ_SIZE_SK_SEQ_SIZE_48 48 | |
355 #define SK_SEQ_SIZE_SK_SEQ_SIZE_49 49 | |
356 #define SK_SEQ_SIZE_SK_SEQ_SIZE_50 50 | |
357 #define SK_SEQ_SIZE_SK_SEQ_SIZE_51 51 | |
358 #define SK_SEQ_SIZE_SK_SEQ_SIZE_52 52 | |
359 #define SK_SEQ_SIZE_SK_SEQ_SIZE_53 53 | |
360 #define SK_SEQ_SIZE_SK_SEQ_SIZE_54 54 | |
361 #define SK_SEQ_SIZE_SK_SEQ_SIZE_55 55 | |
362 #define SK_SEQ_SIZE_SK_SEQ_SIZE_56 56 | |
363 #define SK_SEQ_SIZE_SK_SEQ_SIZE_57 57 | |
364 #define SK_SEQ_SIZE_SK_SEQ_SIZE_58 58 | |
365 #define SK_SEQ_SIZE_SK_SEQ_SIZE_59 59 | |
366 #define SK_SEQ_SIZE_SK_SEQ_SIZE_60 60 | |
367 #define SK_SEQ_SIZE_SK_SEQ_SIZE_61 61 | |
368 #define SK_SEQ_SIZE_SK_SEQ_SIZE_62 62 | |
369 #define SK_SEQ_SIZE_SK_SEQ_SIZE_63 63 | |
370 #define SK_SEQ_SIZE_SK_SEQ_SIZE_64 64 | |
371 #define SK_SEQ_SIZE_SK_SEQ_SIZE_65 65 | |
372 #define SK_SEQ_SIZE_SK_SEQ_SIZE_66 66 | |
373 #define SK_SEQ_SIZE_SK_SEQ_SIZE_67 67 | |
374 #define SK_SEQ_SIZE_SK_SEQ_SIZE_68 68 | |
375 #define SK_SEQ_SIZE_SK_SEQ_SIZE_69 69 | |
376 #define SK_SEQ_SIZE_SK_SEQ_SIZE_70 70 | |
377 #define SK_SEQ_SIZE_SK_SEQ_SIZE_71 71 | |
378 #define SK_SEQ_SIZE_SK_SEQ_SIZE_72 72 | |
379 #define SK_SEQ_SIZE_SK_SEQ_SIZE_73 73 | |
380 #define SK_SEQ_SIZE_SK_SEQ_SIZE_74 74 | |
381 #define SK_SEQ_SIZE_SK_SEQ_SIZE_75 75 | |
382 #define SK_SEQ_SIZE_SK_SEQ_SIZE_76 76 | |
383 #define SK_SEQ_SIZE_SK_SEQ_SIZE_77 77 | |
384 #define SK_SEQ_SIZE_SK_SEQ_SIZE_78 78 | |
385 #define SK_SEQ_SIZE_SK_SEQ_SIZE_79 79 | |
386 #define SK_SEQ_SIZE_SK_SEQ_SIZE_80 80 | |
387 #define SK_SEQ_SIZE_SK_SEQ_SIZE_81 81 | |
388 #define SK_SEQ_SIZE_SK_SEQ_SIZE_82 82 | |
389 #define SK_SEQ_SIZE_SK_SEQ_SIZE_83 83 | |
390 #define SK_SEQ_SIZE_SK_SEQ_SIZE_84 84 | |
391 #define SK_SEQ_SIZE_SK_SEQ_SIZE_85 85 | |
392 #define SK_SEQ_SIZE_SK_SEQ_SIZE_86 86 | |
393 #define SK_SEQ_SIZE_SK_SEQ_SIZE_87 87 | |
394 #define SK_SEQ_SIZE_SK_SEQ_SIZE_88 88 | |
395 #define SK_SEQ_SIZE_SK_SEQ_SIZE_89 89 | |
396 #define SK_SEQ_SIZE_SK_SEQ_SIZE_90 90 | |
397 #define SK_SEQ_SIZE_SK_SEQ_SIZE_91 91 | |
398 #define SK_SEQ_SIZE_SK_SEQ_SIZE_92 92 | |
399 #define SK_SEQ_SIZE_SK_SEQ_SIZE_93 93 | |
400 #define SK_SEQ_SIZE_SK_SEQ_SIZE_94 94 | |
401 #define SK_SEQ_SIZE_SK_SEQ_SIZE_95 95 | |
402 #define SK_SEQ_SIZE_SK_SEQ_SIZE_96 96 | |
403 #define SK_SEQ_SIZE_SK_SEQ_SIZE_97 97 | |
404 #define SK_SEQ_SIZE_SK_SEQ_SIZE_98 98 | |
405 #define SK_SEQ_SIZE_SK_SEQ_SIZE_99 99 | |
406 #define SK_SEQ_SIZE_SK_SEQ_SIZE_100 100 | |
407 #define SK_SEQ_SIZE_SK_SEQ_SIZE_101 101 | |
408 #define SK_SEQ_SIZE_SK_SEQ_SIZE_102 102 | |
409 #define SK_SEQ_SIZE_SK_SEQ_SIZE_103 103 | |
410 #define SK_SEQ_SIZE_SK_SEQ_SIZE_104 104 | |
411 #define SK_SEQ_SIZE_SK_SEQ_SIZE_105 105 | |
412 #define SK_SEQ_SIZE_SK_SEQ_SIZE_106 106 | |
413 #define SK_SEQ_SIZE_SK_SEQ_SIZE_107 107 | |
414 #define SK_SEQ_SIZE_SK_SEQ_SIZE_108 108 | |
415 #define SK_SEQ_SIZE_SK_SEQ_SIZE_109 109 | |
416 #define SK_SEQ_SIZE_SK_SEQ_SIZE_110 110 | |
417 #define SK_SEQ_SIZE_SK_SEQ_SIZE_111 111 | |
418 #define SK_SEQ_SIZE_SK_SEQ_SIZE_112 112 | |
419 #define SK_SEQ_SIZE_SK_SEQ_SIZE_113 113 | |
420 #define SK_SEQ_SIZE_SK_SEQ_SIZE_114 114 | |
421 #define SK_SEQ_SIZE_SK_SEQ_SIZE_115 115 | |
422 #define SK_SEQ_SIZE_SK_SEQ_SIZE_116 116 | |
423 #define SK_SEQ_SIZE_SK_SEQ_SIZE_117 117 | |
424 #define SK_SEQ_SIZE_SK_SEQ_SIZE_118 118 | |
425 #define SK_SEQ_SIZE_SK_SEQ_SIZE_119 119 | |
426 #define SK_SEQ_SIZE_SK_SEQ_SIZE_120 120 | |
427 #define SK_SEQ_SIZE_SK_SEQ_SIZE_121 121 | |
428 #define SK_SEQ_SIZE_SK_SEQ_SIZE_122 122 | |
429 #define SK_SEQ_SIZE_SK_SEQ_SIZE_123 123 | |
430 #define SK_SEQ_SIZE_SK_SEQ_SIZE_124 124 | |
431 #define SK_SEQ_SIZE_SK_SEQ_SIZE_125 125 | |
432 #define SK_SEQ_SIZE_SK_SEQ_SIZE_126 126 | |
433 #define SK_SEQ_SIZE_SK_SEQ_SIZE_127 127 | |
434 #define SK_SEQ_SIZE_SK_SEQ_SIZE_128 128 | |
435 #define SK_SEQ_SIZE_SK_SEQ_SIZE_129 129 | |
436 #define SK_SEQ_SIZE_SK_SEQ_SIZE_130 130 | |
437 #define SK_SEQ_SIZE_SK_SEQ_SIZE_131 131 | |
438 #define SK_SEQ_SIZE_SK_SEQ_SIZE_132 132 | |
439 #define SK_SEQ_SIZE_SK_SEQ_SIZE_133 133 | |
440 #define SK_SEQ_SIZE_SK_SEQ_SIZE_134 134 | |
441 #define SK_SEQ_SIZE_SK_SEQ_SIZE_135 135 | |
442 #define SK_SEQ_SIZE_SK_SEQ_SIZE_136 136 | |
443 #define SK_SEQ_SIZE_SK_SEQ_SIZE_137 137 | |
444 #define SK_SEQ_SIZE_SK_SEQ_SIZE_138 138 | |
445 #define SK_SEQ_SIZE_SK_SEQ_SIZE_139 139 | |
446 #define SK_SEQ_SIZE_SK_SEQ_SIZE_140 140 | |
447 #define SK_SEQ_SIZE_SK_SEQ_SIZE_141 141 | |
448 #define SK_SEQ_SIZE_SK_SEQ_SIZE_142 142 | |
449 #define SK_SEQ_SIZE_SK_SEQ_SIZE_143 143 | |
450 #define SK_SEQ_SIZE_SK_SEQ_SIZE_144 144 | |
451 #define SK_SEQ_SIZE_SK_SEQ_SIZE_145 145 | |
452 #define SK_SEQ_SIZE_SK_SEQ_SIZE_146 146 | |
453 #define SK_SEQ_SIZE_SK_SEQ_SIZE_147 147 | |
454 #define SK_SEQ_SIZE_SK_SEQ_SIZE_148 148 | |
455 #define SK_SEQ_SIZE_SK_SEQ_SIZE_149 149 | |
456 #define SK_SEQ_SIZE_SK_SEQ_SIZE_150 150 | |
457 #define SK_SEQ_SIZE_SK_SEQ_SIZE_151 151 | |
458 #define SK_SEQ_SIZE_SK_SEQ_SIZE_152 152 | |
459 #define SK_SEQ_SIZE_SK_SEQ_SIZE_153 153 | |
460 #define SK_SEQ_SIZE_SK_SEQ_SIZE_154 154 | |
461 #define SK_SEQ_SIZE_SK_SEQ_SIZE_155 155 | |
462 #define SK_SEQ_SIZE_SK_SEQ_SIZE_156 156 | |
463 #define SK_SEQ_SIZE_SK_SEQ_SIZE_157 157 | |
464 #define SK_SEQ_SIZE_SK_SEQ_SIZE_158 158 | |
465 #define SK_SEQ_SIZE_SK_SEQ_SIZE_159 159 | |
466 #define SK_SEQ_SIZE_SK_SEQ_SIZE_160 160 | |
467 #define SK_SEQ_SIZE_SK_SEQ_SIZE_161 161 | |
468 #define SK_SEQ_SIZE_SK_SEQ_SIZE_162 162 | |
469 #define SK_SEQ_SIZE_SK_SEQ_SIZE_163 163 | |
470 #define SK_SEQ_SIZE_SK_SEQ_SIZE_164 164 | |
471 #define SK_SEQ_SIZE_SK_SEQ_SIZE_165 165 | |
472 #define SK_SEQ_SIZE_SK_SEQ_SIZE_166 166 | |
473 #define SK_SEQ_SIZE_SK_SEQ_SIZE_167 167 | |
474 #define SK_SEQ_SIZE_SK_SEQ_SIZE_168 168 | |
475 #define SK_SEQ_SIZE_SK_SEQ_SIZE_169 169 | |
476 #define SK_SEQ_SIZE_SK_SEQ_SIZE_170 170 | |
477 #define SK_SEQ_SIZE_SK_SEQ_SIZE_171 171 | |
478 #define SK_SEQ_SIZE_SK_SEQ_SIZE_172 172 | |
479 #define SK_SEQ_SIZE_SK_SEQ_SIZE_173 173 | |
480 #define SK_SEQ_SIZE_SK_SEQ_SIZE_174 174 | |
481 #define SK_SEQ_SIZE_SK_SEQ_SIZE_175 175 | |
482 #define SK_SEQ_SIZE_SK_SEQ_SIZE_176 176 | |
483 #define SK_SEQ_SIZE_SK_SEQ_SIZE_177 177 | |
484 #define SK_SEQ_SIZE_SK_SEQ_SIZE_178 178 | |
485 #define SK_SEQ_SIZE_SK_SEQ_SIZE_179 179 | |
486 #define SK_SEQ_SIZE_SK_SEQ_SIZE_180 180 | |
487 #define SK_SEQ_SIZE_SK_SEQ_SIZE_181 181 | |
488 #define SK_SEQ_SIZE_SK_SEQ_SIZE_182 182 | |
489 #define SK_SEQ_SIZE_SK_SEQ_SIZE_183 183 | |
490 #define SK_SEQ_SIZE_SK_SEQ_SIZE_184 184 | |
491 #define SK_SEQ_SIZE_SK_SEQ_SIZE_185 185 | |
492 #define SK_SEQ_SIZE_SK_SEQ_SIZE_186 186 | |
493 #define SK_SEQ_SIZE_SK_SEQ_SIZE_187 187 | |
494 #define SK_SEQ_SIZE_SK_SEQ_SIZE_188 188 | |
495 #define SK_SEQ_SIZE_SK_SEQ_SIZE_189 189 | |
496 #define SK_SEQ_SIZE_SK_SEQ_SIZE_190 190 | |
497 #define SK_SEQ_SIZE_SK_SEQ_SIZE_191 191 | |
498 #define SK_SEQ_SIZE_SK_SEQ_SIZE_192 192 | |
499 #define SK_SEQ_SIZE_SK_SEQ_SIZE_193 193 | |
500 #define SK_SEQ_SIZE_SK_SEQ_SIZE_194 194 | |
501 #define SK_SEQ_SIZE_SK_SEQ_SIZE_195 195 | |
502 #define SK_SEQ_SIZE_SK_SEQ_SIZE_196 196 | |
503 #define SK_SEQ_SIZE_SK_SEQ_SIZE_197 197 | |
504 #define SK_SEQ_SIZE_SK_SEQ_SIZE_198 198 | |
505 #define SK_SEQ_SIZE_SK_SEQ_SIZE_199 199 | |
506 #define SK_SEQ_SIZE_SK_SEQ_SIZE_200 200 | |
507 #define SK_SEQ_SIZE_SK_SEQ_SIZE_201 201 | |
508 #define SK_SEQ_SIZE_SK_SEQ_SIZE_202 202 | |
509 #define SK_SEQ_SIZE_SK_SEQ_SIZE_203 203 | |
510 #define SK_SEQ_SIZE_SK_SEQ_SIZE_204 204 | |
511 #define SK_SEQ_SIZE_SK_SEQ_SIZE_205 205 | |
512 #define SK_SEQ_SIZE_SK_SEQ_SIZE_206 206 | |
513 #define SK_SEQ_SIZE_SK_SEQ_SIZE_207 207 | |
514 #define SK_SEQ_SIZE_SK_SEQ_SIZE_208 208 | |
515 #define SK_SEQ_SIZE_SK_SEQ_SIZE_209 209 | |
516 #define SK_SEQ_SIZE_SK_SEQ_SIZE_210 210 | |
517 #define SK_SEQ_SIZE_SK_SEQ_SIZE_211 211 | |
518 #define SK_SEQ_SIZE_SK_SEQ_SIZE_212 212 | |
519 #define SK_SEQ_SIZE_SK_SEQ_SIZE_213 213 | |
520 #define SK_SEQ_SIZE_SK_SEQ_SIZE_214 214 | |
521 #define SK_SEQ_SIZE_SK_SEQ_SIZE_215 215 | |
522 #define SK_SEQ_SIZE_SK_SEQ_SIZE_216 216 | |
523 #define SK_SEQ_SIZE_SK_SEQ_SIZE_217 217 | |
524 #define SK_SEQ_SIZE_SK_SEQ_SIZE_218 218 | |
525 #define SK_SEQ_SIZE_SK_SEQ_SIZE_219 219 | |
526 #define SK_SEQ_SIZE_SK_SEQ_SIZE_220 220 | |
527 #define SK_SEQ_SIZE_SK_SEQ_SIZE_221 221 | |
528 #define SK_SEQ_SIZE_SK_SEQ_SIZE_222 222 | |
529 #define SK_SEQ_SIZE_SK_SEQ_SIZE_223 223 | |
530 #define SK_SEQ_SIZE_SK_SEQ_SIZE_224 224 | |
531 #define SK_SEQ_SIZE_SK_SEQ_SIZE_225 225 | |
532 #define SK_SEQ_SIZE_SK_SEQ_SIZE_226 226 | |
533 #define SK_SEQ_SIZE_SK_SEQ_SIZE_227 227 | |
534 #define SK_SEQ_SIZE_SK_SEQ_SIZE_228 228 | |
535 #define SK_SEQ_SIZE_SK_SEQ_SIZE_229 229 | |
536 #define SK_SEQ_SIZE_SK_SEQ_SIZE_230 230 | |
537 #define SK_SEQ_SIZE_SK_SEQ_SIZE_231 231 | |
538 #define SK_SEQ_SIZE_SK_SEQ_SIZE_232 232 | |
539 #define SK_SEQ_SIZE_SK_SEQ_SIZE_233 233 | |
540 #define SK_SEQ_SIZE_SK_SEQ_SIZE_234 234 | |
541 #define SK_SEQ_SIZE_SK_SEQ_SIZE_235 235 | |
542 #define SK_SEQ_SIZE_SK_SEQ_SIZE_236 236 | |
543 #define SK_SEQ_SIZE_SK_SEQ_SIZE_237 237 | |
544 #define SK_SEQ_SIZE_SK_SEQ_SIZE_238 238 | |
545 #define SK_SEQ_SIZE_SK_SEQ_SIZE_239 239 | |
546 #define SK_SEQ_SIZE_SK_SEQ_SIZE_240 240 | |
547 #define SK_SEQ_SIZE_SK_SEQ_SIZE_241 241 | |
548 #define SK_SEQ_SIZE_SK_SEQ_SIZE_242 242 | |
549 #define SK_SEQ_SIZE_SK_SEQ_SIZE_243 243 | |
550 #define SK_SEQ_SIZE_SK_SEQ_SIZE_244 244 | |
551 #define SK_SEQ_SIZE_SK_SEQ_SIZE_245 245 | |
552 #define SK_SEQ_SIZE_SK_SEQ_SIZE_246 246 | |
553 #define SK_SEQ_SIZE_SK_SEQ_SIZE_247 247 | |
554 #define SK_SEQ_SIZE_SK_SEQ_SIZE_248 248 | |
555 #define SK_SEQ_SIZE_SK_SEQ_SIZE_249 249 | |
556 #define SK_SEQ_SIZE_SK_SEQ_SIZE_250 250 | |
557 #define SK_SEQ_SIZE_SK_SEQ_SIZE_251 251 | |
558 #define SK_SEQ_SIZE_SK_SEQ_SIZE_252 252 | |
559 #define SK_SEQ_SIZE_SK_SEQ_SIZE_253 253 | |
560 #define SK_SEQ_SIZE_SK_SEQ_SIZE_254 254 | |
561 #define SK_SEQ_SIZE_SK_SEQ_SIZE_255 255 | |
562 | |
563 | |
564 #define SK_SEQ_FOREACH(op, data, seq) SK_SEQ_FOREACH_L(op, op, data, seq) | |
565 #define SK_SEQ_FOREACH_L(op, lop, data, seq) SK_CONCAT(SK_SEQ_FOREACH_, SK_SEQ_S
IZE(seq)) (op, lop, data, SK_SEQ_HEAD(seq), SK_SEQ_TAIL(seq)) | |
566 | |
567 #define SK_SEQ_FOREACH_0(op,lop,d,x,t) | |
568 #define SK_SEQ_FOREACH_1(op,lop,d,x,t) lop(d,x) | |
569 #define SK_SEQ_FOREACH_2(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_1(op, lop, d, SK_S
EQ_HEAD(t), SK_SEQ_TAIL(t)) | |
570 #define SK_SEQ_FOREACH_3(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_2(op, lop, d, SK_S
EQ_HEAD(t), SK_SEQ_TAIL(t)) | |
571 #define SK_SEQ_FOREACH_4(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_3(op, lop, d, SK_S
EQ_HEAD(t), SK_SEQ_TAIL(t)) | |
572 #define SK_SEQ_FOREACH_5(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_4(op, lop, d, SK_S
EQ_HEAD(t), SK_SEQ_TAIL(t)) | |
573 #define SK_SEQ_FOREACH_6(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_5(op, lop, d, SK_S
EQ_HEAD(t), SK_SEQ_TAIL(t)) | |
574 #define SK_SEQ_FOREACH_7(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_6(op, lop, d, SK_S
EQ_HEAD(t), SK_SEQ_TAIL(t)) | |
575 #define SK_SEQ_FOREACH_8(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_7(op, lop, d, SK_S
EQ_HEAD(t), SK_SEQ_TAIL(t)) | |
576 #define SK_SEQ_FOREACH_9(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_8(op, lop, d, SK_S
EQ_HEAD(t), SK_SEQ_TAIL(t)) | |
577 #define SK_SEQ_FOREACH_10(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_9(op, lop, d, SK_
SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
578 #define SK_SEQ_FOREACH_11(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_10(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
579 #define SK_SEQ_FOREACH_12(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_11(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
580 #define SK_SEQ_FOREACH_13(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_12(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
581 #define SK_SEQ_FOREACH_14(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_13(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
582 #define SK_SEQ_FOREACH_15(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_14(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
583 #define SK_SEQ_FOREACH_16(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_15(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
584 #define SK_SEQ_FOREACH_17(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_16(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
585 #define SK_SEQ_FOREACH_18(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_17(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
586 #define SK_SEQ_FOREACH_19(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_18(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
587 #define SK_SEQ_FOREACH_20(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_19(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
588 #define SK_SEQ_FOREACH_21(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_20(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
589 #define SK_SEQ_FOREACH_22(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_21(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
590 #define SK_SEQ_FOREACH_23(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_22(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
591 #define SK_SEQ_FOREACH_24(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_23(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
592 #define SK_SEQ_FOREACH_25(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_24(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
593 #define SK_SEQ_FOREACH_26(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_25(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
594 #define SK_SEQ_FOREACH_27(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_26(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
595 #define SK_SEQ_FOREACH_28(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_27(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
596 #define SK_SEQ_FOREACH_29(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_28(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
597 #define SK_SEQ_FOREACH_30(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_29(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
598 #define SK_SEQ_FOREACH_31(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_30(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
599 #define SK_SEQ_FOREACH_32(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_31(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
600 #define SK_SEQ_FOREACH_33(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_32(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
601 #define SK_SEQ_FOREACH_34(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_33(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
602 #define SK_SEQ_FOREACH_35(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_34(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
603 #define SK_SEQ_FOREACH_36(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_35(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
604 #define SK_SEQ_FOREACH_37(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_36(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
605 #define SK_SEQ_FOREACH_38(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_37(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
606 #define SK_SEQ_FOREACH_39(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_38(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
607 #define SK_SEQ_FOREACH_40(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_39(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
608 #define SK_SEQ_FOREACH_41(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_40(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
609 #define SK_SEQ_FOREACH_42(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_41(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
610 #define SK_SEQ_FOREACH_43(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_42(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
611 #define SK_SEQ_FOREACH_44(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_43(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
612 #define SK_SEQ_FOREACH_45(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_44(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
613 #define SK_SEQ_FOREACH_46(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_45(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
614 #define SK_SEQ_FOREACH_47(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_46(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
615 #define SK_SEQ_FOREACH_48(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_47(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
616 #define SK_SEQ_FOREACH_49(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_48(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
617 #define SK_SEQ_FOREACH_50(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_49(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
618 #define SK_SEQ_FOREACH_51(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_50(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
619 #define SK_SEQ_FOREACH_52(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_51(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
620 #define SK_SEQ_FOREACH_53(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_52(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
621 #define SK_SEQ_FOREACH_54(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_53(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
622 #define SK_SEQ_FOREACH_55(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_54(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
623 #define SK_SEQ_FOREACH_56(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_55(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
624 #define SK_SEQ_FOREACH_57(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_56(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
625 #define SK_SEQ_FOREACH_58(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_57(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
626 #define SK_SEQ_FOREACH_59(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_58(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
627 #define SK_SEQ_FOREACH_60(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_59(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
628 #define SK_SEQ_FOREACH_61(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_60(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
629 #define SK_SEQ_FOREACH_62(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_61(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
630 #define SK_SEQ_FOREACH_63(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_62(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
631 #define SK_SEQ_FOREACH_64(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_63(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
632 #define SK_SEQ_FOREACH_65(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_64(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
633 #define SK_SEQ_FOREACH_66(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_65(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
634 #define SK_SEQ_FOREACH_67(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_66(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
635 #define SK_SEQ_FOREACH_68(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_67(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
636 #define SK_SEQ_FOREACH_69(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_68(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
637 #define SK_SEQ_FOREACH_70(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_69(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
638 #define SK_SEQ_FOREACH_71(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_70(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
639 #define SK_SEQ_FOREACH_72(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_71(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
640 #define SK_SEQ_FOREACH_73(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_72(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
641 #define SK_SEQ_FOREACH_74(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_73(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
642 #define SK_SEQ_FOREACH_75(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_74(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
643 #define SK_SEQ_FOREACH_76(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_75(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
644 #define SK_SEQ_FOREACH_77(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_76(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
645 #define SK_SEQ_FOREACH_78(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_77(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
646 #define SK_SEQ_FOREACH_79(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_78(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
647 #define SK_SEQ_FOREACH_80(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_79(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
648 #define SK_SEQ_FOREACH_81(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_80(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
649 #define SK_SEQ_FOREACH_82(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_81(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
650 #define SK_SEQ_FOREACH_83(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_82(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
651 #define SK_SEQ_FOREACH_84(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_83(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
652 #define SK_SEQ_FOREACH_85(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_84(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
653 #define SK_SEQ_FOREACH_86(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_85(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
654 #define SK_SEQ_FOREACH_87(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_86(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
655 #define SK_SEQ_FOREACH_88(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_87(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
656 #define SK_SEQ_FOREACH_89(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_88(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
657 #define SK_SEQ_FOREACH_90(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_89(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
658 #define SK_SEQ_FOREACH_91(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_90(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
659 #define SK_SEQ_FOREACH_92(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_91(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
660 #define SK_SEQ_FOREACH_93(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_92(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
661 #define SK_SEQ_FOREACH_94(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_93(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
662 #define SK_SEQ_FOREACH_95(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_94(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
663 #define SK_SEQ_FOREACH_96(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_95(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
664 #define SK_SEQ_FOREACH_97(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_96(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
665 #define SK_SEQ_FOREACH_98(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_97(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
666 #define SK_SEQ_FOREACH_99(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_98(op, lop, d, SK
_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
667 #define SK_SEQ_FOREACH_100(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_99(op, lop, d, S
K_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
668 #define SK_SEQ_FOREACH_101(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_100(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
669 #define SK_SEQ_FOREACH_102(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_101(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
670 #define SK_SEQ_FOREACH_103(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_102(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
671 #define SK_SEQ_FOREACH_104(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_103(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
672 #define SK_SEQ_FOREACH_105(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_104(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
673 #define SK_SEQ_FOREACH_106(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_105(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
674 #define SK_SEQ_FOREACH_107(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_106(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
675 #define SK_SEQ_FOREACH_108(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_107(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
676 #define SK_SEQ_FOREACH_109(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_108(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
677 #define SK_SEQ_FOREACH_110(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_109(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
678 #define SK_SEQ_FOREACH_111(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_110(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
679 #define SK_SEQ_FOREACH_112(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_111(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
680 #define SK_SEQ_FOREACH_113(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_112(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
681 #define SK_SEQ_FOREACH_114(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_113(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
682 #define SK_SEQ_FOREACH_115(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_114(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
683 #define SK_SEQ_FOREACH_116(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_115(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
684 #define SK_SEQ_FOREACH_117(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_116(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
685 #define SK_SEQ_FOREACH_118(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_117(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
686 #define SK_SEQ_FOREACH_119(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_118(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
687 #define SK_SEQ_FOREACH_120(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_119(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
688 #define SK_SEQ_FOREACH_121(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_120(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
689 #define SK_SEQ_FOREACH_122(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_121(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
690 #define SK_SEQ_FOREACH_123(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_122(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
691 #define SK_SEQ_FOREACH_124(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_123(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
692 #define SK_SEQ_FOREACH_125(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_124(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
693 #define SK_SEQ_FOREACH_126(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_125(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
694 #define SK_SEQ_FOREACH_127(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_126(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
695 #define SK_SEQ_FOREACH_128(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_127(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
696 #define SK_SEQ_FOREACH_129(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_128(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
697 #define SK_SEQ_FOREACH_130(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_129(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
698 #define SK_SEQ_FOREACH_131(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_130(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
699 #define SK_SEQ_FOREACH_132(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_131(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
700 #define SK_SEQ_FOREACH_133(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_132(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
701 #define SK_SEQ_FOREACH_134(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_133(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
702 #define SK_SEQ_FOREACH_135(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_134(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
703 #define SK_SEQ_FOREACH_136(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_135(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
704 #define SK_SEQ_FOREACH_137(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_136(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
705 #define SK_SEQ_FOREACH_138(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_137(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
706 #define SK_SEQ_FOREACH_139(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_138(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
707 #define SK_SEQ_FOREACH_140(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_139(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
708 #define SK_SEQ_FOREACH_141(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_140(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
709 #define SK_SEQ_FOREACH_142(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_141(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
710 #define SK_SEQ_FOREACH_143(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_142(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
711 #define SK_SEQ_FOREACH_144(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_143(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
712 #define SK_SEQ_FOREACH_145(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_144(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
713 #define SK_SEQ_FOREACH_146(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_145(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
714 #define SK_SEQ_FOREACH_147(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_146(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
715 #define SK_SEQ_FOREACH_148(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_147(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
716 #define SK_SEQ_FOREACH_149(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_148(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
717 #define SK_SEQ_FOREACH_150(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_149(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
718 #define SK_SEQ_FOREACH_151(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_150(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
719 #define SK_SEQ_FOREACH_152(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_151(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
720 #define SK_SEQ_FOREACH_153(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_152(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
721 #define SK_SEQ_FOREACH_154(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_153(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
722 #define SK_SEQ_FOREACH_155(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_154(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
723 #define SK_SEQ_FOREACH_156(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_155(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
724 #define SK_SEQ_FOREACH_157(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_156(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
725 #define SK_SEQ_FOREACH_158(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_157(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
726 #define SK_SEQ_FOREACH_159(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_158(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
727 #define SK_SEQ_FOREACH_160(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_159(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
728 #define SK_SEQ_FOREACH_161(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_160(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
729 #define SK_SEQ_FOREACH_162(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_161(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
730 #define SK_SEQ_FOREACH_163(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_162(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
731 #define SK_SEQ_FOREACH_164(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_163(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
732 #define SK_SEQ_FOREACH_165(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_164(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
733 #define SK_SEQ_FOREACH_166(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_165(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
734 #define SK_SEQ_FOREACH_167(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_166(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
735 #define SK_SEQ_FOREACH_168(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_167(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
736 #define SK_SEQ_FOREACH_169(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_168(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
737 #define SK_SEQ_FOREACH_170(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_169(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
738 #define SK_SEQ_FOREACH_171(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_170(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
739 #define SK_SEQ_FOREACH_172(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_171(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
740 #define SK_SEQ_FOREACH_173(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_172(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
741 #define SK_SEQ_FOREACH_174(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_173(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
742 #define SK_SEQ_FOREACH_175(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_174(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
743 #define SK_SEQ_FOREACH_176(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_175(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
744 #define SK_SEQ_FOREACH_177(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_176(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
745 #define SK_SEQ_FOREACH_178(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_177(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
746 #define SK_SEQ_FOREACH_179(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_178(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
747 #define SK_SEQ_FOREACH_180(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_179(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
748 #define SK_SEQ_FOREACH_181(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_180(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
749 #define SK_SEQ_FOREACH_182(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_181(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
750 #define SK_SEQ_FOREACH_183(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_182(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
751 #define SK_SEQ_FOREACH_184(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_183(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
752 #define SK_SEQ_FOREACH_185(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_184(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
753 #define SK_SEQ_FOREACH_186(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_185(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
754 #define SK_SEQ_FOREACH_187(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_186(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
755 #define SK_SEQ_FOREACH_188(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_187(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
756 #define SK_SEQ_FOREACH_189(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_188(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
757 #define SK_SEQ_FOREACH_190(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_189(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
758 #define SK_SEQ_FOREACH_191(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_190(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
759 #define SK_SEQ_FOREACH_192(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_191(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
760 #define SK_SEQ_FOREACH_193(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_192(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
761 #define SK_SEQ_FOREACH_194(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_193(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
762 #define SK_SEQ_FOREACH_195(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_194(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
763 #define SK_SEQ_FOREACH_196(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_195(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
764 #define SK_SEQ_FOREACH_197(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_196(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
765 #define SK_SEQ_FOREACH_198(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_197(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
766 #define SK_SEQ_FOREACH_199(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_198(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
767 #define SK_SEQ_FOREACH_200(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_199(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
768 #define SK_SEQ_FOREACH_201(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_200(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
769 #define SK_SEQ_FOREACH_202(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_201(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
770 #define SK_SEQ_FOREACH_203(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_202(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
771 #define SK_SEQ_FOREACH_204(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_203(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
772 #define SK_SEQ_FOREACH_205(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_204(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
773 #define SK_SEQ_FOREACH_206(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_205(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
774 #define SK_SEQ_FOREACH_207(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_206(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
775 #define SK_SEQ_FOREACH_208(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_207(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
776 #define SK_SEQ_FOREACH_209(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_208(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
777 #define SK_SEQ_FOREACH_210(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_209(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
778 #define SK_SEQ_FOREACH_211(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_210(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
779 #define SK_SEQ_FOREACH_212(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_211(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
780 #define SK_SEQ_FOREACH_213(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_212(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
781 #define SK_SEQ_FOREACH_214(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_213(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
782 #define SK_SEQ_FOREACH_215(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_214(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
783 #define SK_SEQ_FOREACH_216(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_215(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
784 #define SK_SEQ_FOREACH_217(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_216(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
785 #define SK_SEQ_FOREACH_218(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_217(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
786 #define SK_SEQ_FOREACH_219(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_218(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
787 #define SK_SEQ_FOREACH_220(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_219(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
788 #define SK_SEQ_FOREACH_221(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_220(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
789 #define SK_SEQ_FOREACH_222(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_221(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
790 #define SK_SEQ_FOREACH_223(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_222(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
791 #define SK_SEQ_FOREACH_224(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_223(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
792 #define SK_SEQ_FOREACH_225(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_224(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
793 #define SK_SEQ_FOREACH_226(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_225(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
794 #define SK_SEQ_FOREACH_227(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_226(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
795 #define SK_SEQ_FOREACH_228(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_227(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
796 #define SK_SEQ_FOREACH_229(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_228(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
797 #define SK_SEQ_FOREACH_230(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_229(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
798 #define SK_SEQ_FOREACH_231(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_230(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
799 #define SK_SEQ_FOREACH_232(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_231(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
800 #define SK_SEQ_FOREACH_233(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_232(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
801 #define SK_SEQ_FOREACH_234(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_233(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
802 #define SK_SEQ_FOREACH_235(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_234(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
803 #define SK_SEQ_FOREACH_236(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_235(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
804 #define SK_SEQ_FOREACH_237(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_236(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
805 #define SK_SEQ_FOREACH_238(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_237(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
806 #define SK_SEQ_FOREACH_239(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_238(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
807 #define SK_SEQ_FOREACH_240(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_239(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
808 #define SK_SEQ_FOREACH_241(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_240(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
809 #define SK_SEQ_FOREACH_242(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_241(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
810 #define SK_SEQ_FOREACH_243(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_242(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
811 #define SK_SEQ_FOREACH_244(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_243(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
812 #define SK_SEQ_FOREACH_245(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_244(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
813 #define SK_SEQ_FOREACH_246(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_245(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
814 #define SK_SEQ_FOREACH_247(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_246(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
815 #define SK_SEQ_FOREACH_248(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_247(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
816 #define SK_SEQ_FOREACH_249(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_248(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
817 #define SK_SEQ_FOREACH_250(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_249(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
818 #define SK_SEQ_FOREACH_251(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_250(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
819 #define SK_SEQ_FOREACH_252(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_251(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
820 #define SK_SEQ_FOREACH_253(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_252(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
821 #define SK_SEQ_FOREACH_254(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_253(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
822 #define SK_SEQ_FOREACH_255(op,lop,d,x,t) op(d,x) SK_SEQ_FOREACH_254(op, lop, d,
SK_SEQ_HEAD(t), SK_SEQ_TAIL(t)) | |
823 | |
824 #define SK_SEQ_END (SK_NIL) | |
825 | |
826 #endif | |
OLD | NEW |