blob: 301c17c48459aaf8ecf44d4c50f68335c9056012 [file] [log] [blame]
Lev Walkin69353a32017-07-25 08:10:46 -07001
2/*** <<< INCLUDES [T] >>> ***/
3
4#include <NativeInteger.h>
5#include <INTEGER.h>
6#include <constr_SEQUENCE.h>
7
8/*** <<< TYPE-DECLS [T] >>> ***/
9
10typedef struct T {
11 long unsigned8;
12 long unsigned16;
13 long unsigned16stack;
14 long unsigned16stack_ext;
15 INTEGER_t unsigned33;
16 long *minmax /* OPTIONAL */;
17 /*
18 * This type is extensible,
19 * possible extensions are below.
20 */
21 long *signed8 /* DEFAULT 3 */;
22 long *signed16;
23 long *signed16stack;
24 long *signed16stack_ext;
25 long *signed32;
26 INTEGER_t *signed33ext;
27
28 /* Context for parsing across buffer boundaries */
29 asn_struct_ctx_t _asn_ctx;
30} T_t;
31
32/*** <<< FUNC-DECLS [T] >>> ***/
33
34extern asn_TYPE_descriptor_t asn_DEF_T;
35
36/*** <<< CODE [T] >>> ***/
37
38static int
Lev Walkin20696a42017-10-17 21:27:33 -070039memb_unsigned8_constraint_1(const asn_TYPE_descriptor_t *td, const void *sptr,
Lev Walkin69353a32017-07-25 08:10:46 -070040 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
41 long value;
42
43 if(!sptr) {
44 ASN__CTFAIL(app_key, td, sptr,
45 "%s: value not given (%s:%d)",
46 td->name, __FILE__, __LINE__);
47 return -1;
48 }
49
50 value = *(const long *)sptr;
51
52 if((value >= 0 && value <= 255)) {
53 /* Constraint check succeeded */
54 return 0;
55 } else {
56 ASN__CTFAIL(app_key, td, sptr,
57 "%s: constraint failed (%s:%d)",
58 td->name, __FILE__, __LINE__);
59 return -1;
60 }
61}
62
63static int
Lev Walkin20696a42017-10-17 21:27:33 -070064memb_unsigned16_constraint_1(const asn_TYPE_descriptor_t *td, const void *sptr,
Lev Walkin69353a32017-07-25 08:10:46 -070065 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
66 long value;
67
68 if(!sptr) {
69 ASN__CTFAIL(app_key, td, sptr,
70 "%s: value not given (%s:%d)",
71 td->name, __FILE__, __LINE__);
72 return -1;
73 }
74
75 value = *(const long *)sptr;
76
77 if((value >= 0 && value <= 65535)) {
78 /* Constraint check succeeded */
79 return 0;
80 } else {
81 ASN__CTFAIL(app_key, td, sptr,
82 "%s: constraint failed (%s:%d)",
83 td->name, __FILE__, __LINE__);
84 return -1;
85 }
86}
87
88static int
Lev Walkin20696a42017-10-17 21:27:33 -070089memb_unsigned16stack_constraint_1(const asn_TYPE_descriptor_t *td, const void *sptr,
Lev Walkin69353a32017-07-25 08:10:46 -070090 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
91 long value;
92
93 if(!sptr) {
94 ASN__CTFAIL(app_key, td, sptr,
95 "%s: value not given (%s:%d)",
96 td->name, __FILE__, __LINE__);
97 return -1;
98 }
99
100 value = *(const long *)sptr;
101
102 if((value >= 0 && value <= 255)) {
103 /* Constraint check succeeded */
104 return 0;
105 } else {
106 ASN__CTFAIL(app_key, td, sptr,
107 "%s: constraint failed (%s:%d)",
108 td->name, __FILE__, __LINE__);
109 return -1;
110 }
111}
112
113static int
Lev Walkin20696a42017-10-17 21:27:33 -0700114memb_unsigned16stack_ext_constraint_1(const asn_TYPE_descriptor_t *td, const void *sptr,
Lev Walkin69353a32017-07-25 08:10:46 -0700115 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
116 long value;
117
118 if(!sptr) {
119 ASN__CTFAIL(app_key, td, sptr,
120 "%s: value not given (%s:%d)",
121 td->name, __FILE__, __LINE__);
122 return -1;
123 }
124
125 value = *(const long *)sptr;
126
127 if((value >= 0 && value <= 255)) {
128 /* Constraint check succeeded */
129 return 0;
130 } else {
131 ASN__CTFAIL(app_key, td, sptr,
132 "%s: constraint failed (%s:%d)",
133 td->name, __FILE__, __LINE__);
134 return -1;
135 }
136}
137
138static int
Lev Walkin20696a42017-10-17 21:27:33 -0700139memb_unsigned33_constraint_1(const asn_TYPE_descriptor_t *td, const void *sptr,
Lev Walkin69353a32017-07-25 08:10:46 -0700140 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
141 const INTEGER_t *st = (const INTEGER_t *)sptr;
142 long value;
143
144 if(!sptr) {
145 ASN__CTFAIL(app_key, td, sptr,
146 "%s: value not given (%s:%d)",
147 td->name, __FILE__, __LINE__);
148 return -1;
149 }
150
151 if(asn_INTEGER2long(st, &value)) {
152 ASN__CTFAIL(app_key, td, sptr,
153 "%s: value too large (%s:%d)",
154 td->name, __FILE__, __LINE__);
155 return -1;
156 }
157
158 if((value >= 0 && value <= 5000000000)) {
159 /* Constraint check succeeded */
160 return 0;
161 } else {
162 ASN__CTFAIL(app_key, td, sptr,
163 "%s: constraint failed (%s:%d)",
164 td->name, __FILE__, __LINE__);
165 return -1;
166 }
167}
168
169static int
Lev Walkin20696a42017-10-17 21:27:33 -0700170memb_minmax_constraint_1(const asn_TYPE_descriptor_t *td, const void *sptr,
Lev Walkin69353a32017-07-25 08:10:46 -0700171 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
172
173 if(!sptr) {
174 ASN__CTFAIL(app_key, td, sptr,
175 "%s: value not given (%s:%d)",
176 td->name, __FILE__, __LINE__);
177 return -1;
178 }
179
180
181 if(1 /* No applicable constraints whatsoever */) {
182 /* Nothing is here. See below */
183 }
184
Lev Walkin0bfea562017-09-29 23:16:48 -0700185 return td->encoding_constraints.general_constraints(td, sptr, ctfailcb, app_key);
Lev Walkin69353a32017-07-25 08:10:46 -0700186}
187
188static int
Lev Walkin20696a42017-10-17 21:27:33 -0700189memb_signed8_constraint_1(const asn_TYPE_descriptor_t *td, const void *sptr,
Lev Walkin69353a32017-07-25 08:10:46 -0700190 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
191 long value;
192
193 if(!sptr) {
194 ASN__CTFAIL(app_key, td, sptr,
195 "%s: value not given (%s:%d)",
196 td->name, __FILE__, __LINE__);
197 return -1;
198 }
199
200 value = *(const long *)sptr;
201
202 if((value >= -128 && value <= 127)) {
203 /* Constraint check succeeded */
204 return 0;
205 } else {
206 ASN__CTFAIL(app_key, td, sptr,
207 "%s: constraint failed (%s:%d)",
208 td->name, __FILE__, __LINE__);
209 return -1;
210 }
211}
212
213static int
Lev Walkin20696a42017-10-17 21:27:33 -0700214memb_signed16_constraint_1(const asn_TYPE_descriptor_t *td, const void *sptr,
Lev Walkin69353a32017-07-25 08:10:46 -0700215 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
216 long value;
217
218 if(!sptr) {
219 ASN__CTFAIL(app_key, td, sptr,
220 "%s: value not given (%s:%d)",
221 td->name, __FILE__, __LINE__);
222 return -1;
223 }
224
225 value = *(const long *)sptr;
226
227 if((value >= -32768 && value <= 32767)) {
228 /* Constraint check succeeded */
229 return 0;
230 } else {
231 ASN__CTFAIL(app_key, td, sptr,
232 "%s: constraint failed (%s:%d)",
233 td->name, __FILE__, __LINE__);
234 return -1;
235 }
236}
237
238static int
Lev Walkin20696a42017-10-17 21:27:33 -0700239memb_signed16stack_constraint_1(const asn_TYPE_descriptor_t *td, const void *sptr,
Lev Walkin69353a32017-07-25 08:10:46 -0700240 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
241 long value;
242
243 if(!sptr) {
244 ASN__CTFAIL(app_key, td, sptr,
245 "%s: value not given (%s:%d)",
246 td->name, __FILE__, __LINE__);
247 return -1;
248 }
249
250 value = *(const long *)sptr;
251
252 if((value >= -128 && value <= 127)) {
253 /* Constraint check succeeded */
254 return 0;
255 } else {
256 ASN__CTFAIL(app_key, td, sptr,
257 "%s: constraint failed (%s:%d)",
258 td->name, __FILE__, __LINE__);
259 return -1;
260 }
261}
262
263static int
Lev Walkin20696a42017-10-17 21:27:33 -0700264memb_signed16stack_ext_constraint_1(const asn_TYPE_descriptor_t *td, const void *sptr,
Lev Walkin69353a32017-07-25 08:10:46 -0700265 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
266 long value;
267
268 if(!sptr) {
269 ASN__CTFAIL(app_key, td, sptr,
270 "%s: value not given (%s:%d)",
271 td->name, __FILE__, __LINE__);
272 return -1;
273 }
274
275 value = *(const long *)sptr;
276
277 if((value >= -128 && value <= 127)) {
278 /* Constraint check succeeded */
279 return 0;
280 } else {
281 ASN__CTFAIL(app_key, td, sptr,
282 "%s: constraint failed (%s:%d)",
283 td->name, __FILE__, __LINE__);
284 return -1;
285 }
286}
287
288static int
Lev Walkin20696a42017-10-17 21:27:33 -0700289memb_signed32_constraint_1(const asn_TYPE_descriptor_t *td, const void *sptr,
Lev Walkin69353a32017-07-25 08:10:46 -0700290 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
291 long value;
292
293 if(!sptr) {
294 ASN__CTFAIL(app_key, td, sptr,
295 "%s: value not given (%s:%d)",
296 td->name, __FILE__, __LINE__);
297 return -1;
298 }
299
300 value = *(const long *)sptr;
301
302 if((value >= -2000000000 && value <= 2000000000)) {
303 /* Constraint check succeeded */
304 return 0;
305 } else {
306 ASN__CTFAIL(app_key, td, sptr,
307 "%s: constraint failed (%s:%d)",
308 td->name, __FILE__, __LINE__);
309 return -1;
310 }
311}
312
313static int
Lev Walkin20696a42017-10-17 21:27:33 -0700314memb_signed33ext_constraint_1(const asn_TYPE_descriptor_t *td, const void *sptr,
Lev Walkin69353a32017-07-25 08:10:46 -0700315 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
316 const INTEGER_t *st = (const INTEGER_t *)sptr;
317 long value;
318
319 if(!sptr) {
320 ASN__CTFAIL(app_key, td, sptr,
321 "%s: value not given (%s:%d)",
322 td->name, __FILE__, __LINE__);
323 return -1;
324 }
325
326 if(asn_INTEGER2long(st, &value)) {
327 ASN__CTFAIL(app_key, td, sptr,
328 "%s: value too large (%s:%d)",
329 td->name, __FILE__, __LINE__);
330 return -1;
331 }
332
333 if((value >= -4000000000 && value <= 4000000000)) {
334 /* Constraint check succeeded */
335 return 0;
336 } else {
337 ASN__CTFAIL(app_key, td, sptr,
338 "%s: constraint failed (%s:%d)",
339 td->name, __FILE__, __LINE__);
340 return -1;
341 }
342}
343
344
345/*** <<< CTDEFS [T] >>> ***/
346
Lev Walkin0479e042017-09-26 18:39:58 -0700347static asn_oer_constraints_t asn_OER_memb_unsigned8_constr_2 CC_NOTUSED = {
Lev Walkin8041fe82017-08-02 10:39:01 -0700348 { 1, 1 } /* (0..255) */,
349 -1};
Lev Walkin0479e042017-09-26 18:39:58 -0700350static asn_oer_constraints_t asn_OER_memb_unsigned16_constr_3 CC_NOTUSED = {
Lev Walkin8041fe82017-08-02 10:39:01 -0700351 { 2, 1 } /* (0..65535) */,
352 -1};
Lev Walkin0479e042017-09-26 18:39:58 -0700353static asn_oer_constraints_t asn_OER_memb_unsigned16stack_constr_4 CC_NOTUSED = {
Lev Walkin8041fe82017-08-02 10:39:01 -0700354 { 1, 1 } /* (0..255) */,
355 -1};
Lev Walkin0479e042017-09-26 18:39:58 -0700356static asn_oer_constraints_t asn_OER_memb_unsigned16stack_ext_constr_5 CC_NOTUSED = {
Lev Walkin8041fe82017-08-02 10:39:01 -0700357 { 2, 1 } /* (0..32767) */,
358 -1};
Lev Walkin0479e042017-09-26 18:39:58 -0700359static asn_oer_constraints_t asn_OER_memb_unsigned33_constr_6 CC_NOTUSED = {
Lev Walkin8041fe82017-08-02 10:39:01 -0700360 { 8, 1 } /* (0..5000000000) */,
361 -1};
Lev Walkin0479e042017-09-26 18:39:58 -0700362static asn_oer_constraints_t asn_OER_memb_minmax_constr_7 CC_NOTUSED = {
Lev Walkin8041fe82017-08-02 10:39:01 -0700363 { 0, 0 },
364 -1};
Lev Walkin0479e042017-09-26 18:39:58 -0700365static asn_oer_constraints_t asn_OER_memb_signed8_constr_9 CC_NOTUSED = {
Lev Walkin8041fe82017-08-02 10:39:01 -0700366 { 1, 0 } /* (-128..127) */,
367 -1};
Lev Walkin0479e042017-09-26 18:39:58 -0700368static asn_oer_constraints_t asn_OER_memb_signed16_constr_10 CC_NOTUSED = {
Lev Walkin8041fe82017-08-02 10:39:01 -0700369 { 2, 0 } /* (-32768..32767) */,
370 -1};
Lev Walkin0479e042017-09-26 18:39:58 -0700371static asn_oer_constraints_t asn_OER_memb_signed16stack_constr_11 CC_NOTUSED = {
Lev Walkin8041fe82017-08-02 10:39:01 -0700372 { 1, 0 } /* (-128..127) */,
373 -1};
Lev Walkin0479e042017-09-26 18:39:58 -0700374static asn_oer_constraints_t asn_OER_memb_signed16stack_ext_constr_12 CC_NOTUSED = {
Lev Walkin8041fe82017-08-02 10:39:01 -0700375 { 2, 0 } /* (-32768..32767) */,
376 -1};
Lev Walkin0479e042017-09-26 18:39:58 -0700377static asn_oer_constraints_t asn_OER_memb_signed32_constr_13 CC_NOTUSED = {
Lev Walkin8041fe82017-08-02 10:39:01 -0700378 { 4, 0 } /* (-2000000000..2000000000) */,
379 -1};
Lev Walkin0479e042017-09-26 18:39:58 -0700380static asn_oer_constraints_t asn_OER_memb_signed33ext_constr_14 CC_NOTUSED = {
Lev Walkin8041fe82017-08-02 10:39:01 -0700381 { 0, 0 },
382 -1};
Lev Walkin69353a32017-07-25 08:10:46 -0700383
384/*** <<< STAT-DEFS [T] >>> ***/
385
Lev Walkin20696a42017-10-17 21:27:33 -0700386static int asn_DFL_9_cmp_3(const void *sptr) {
387 const long *st = sptr;
388
389 if(!st) {
390 return -1; /* No value is not a default value */
391 }
392
393 /* Test default value 3 */
394 return (*st != 3);
395}
396static int asn_DFL_9_set_3(void **sptr) {
Lev Walkin69353a32017-07-25 08:10:46 -0700397 long *st = *sptr;
398
399 if(!st) {
Lev Walkin69353a32017-07-25 08:10:46 -0700400 st = (*sptr = CALLOC(1, sizeof(*st)));
401 if(!st) return -1;
402 }
403
Lev Walkin20696a42017-10-17 21:27:33 -0700404 /* Install default value 3 */
405 *st = 3;
406 return 0;
Lev Walkin69353a32017-07-25 08:10:46 -0700407}
408static asn_TYPE_member_t asn_MBR_T_1[] = {
409 { ATF_NOFLAGS, 0, offsetof(struct T, unsigned8),
410 .tag = (ASN_TAG_CLASS_CONTEXT | (0 << 2)),
411 .tag_mode = -1, /* IMPLICIT tag at current level */
412 .type = &asn_DEF_NativeInteger,
Lev Walkin67a30122017-08-10 05:48:54 -0700413 .type_selector = 0,
Lev Walkin0bfea562017-09-29 23:16:48 -0700414 { .oer_constraints = &asn_OER_memb_unsigned8_constr_2, .per_constraints = 0, .general_constraints = memb_unsigned8_constraint_1 },
Lev Walkin20696a42017-10-17 21:27:33 -0700415 0, 0, /* No default value */
Lev Walkin69353a32017-07-25 08:10:46 -0700416 .name = "unsigned8"
417 },
418 { ATF_NOFLAGS, 0, offsetof(struct T, unsigned16),
419 .tag = (ASN_TAG_CLASS_CONTEXT | (1 << 2)),
420 .tag_mode = -1, /* IMPLICIT tag at current level */
421 .type = &asn_DEF_NativeInteger,
Lev Walkin67a30122017-08-10 05:48:54 -0700422 .type_selector = 0,
Lev Walkin0bfea562017-09-29 23:16:48 -0700423 { .oer_constraints = &asn_OER_memb_unsigned16_constr_3, .per_constraints = 0, .general_constraints = memb_unsigned16_constraint_1 },
Lev Walkin20696a42017-10-17 21:27:33 -0700424 0, 0, /* No default value */
Lev Walkin69353a32017-07-25 08:10:46 -0700425 .name = "unsigned16"
426 },
427 { ATF_NOFLAGS, 0, offsetof(struct T, unsigned16stack),
428 .tag = (ASN_TAG_CLASS_CONTEXT | (2 << 2)),
429 .tag_mode = -1, /* IMPLICIT tag at current level */
430 .type = &asn_DEF_NativeInteger,
Lev Walkin67a30122017-08-10 05:48:54 -0700431 .type_selector = 0,
Lev Walkin0bfea562017-09-29 23:16:48 -0700432 { .oer_constraints = &asn_OER_memb_unsigned16stack_constr_4, .per_constraints = 0, .general_constraints = memb_unsigned16stack_constraint_1 },
Lev Walkin20696a42017-10-17 21:27:33 -0700433 0, 0, /* No default value */
Lev Walkin69353a32017-07-25 08:10:46 -0700434 .name = "unsigned16stack"
435 },
436 { ATF_NOFLAGS, 0, offsetof(struct T, unsigned16stack_ext),
437 .tag = (ASN_TAG_CLASS_CONTEXT | (15 << 2)),
438 .tag_mode = -1, /* IMPLICIT tag at current level */
439 .type = &asn_DEF_NativeInteger,
Lev Walkin67a30122017-08-10 05:48:54 -0700440 .type_selector = 0,
Lev Walkin0bfea562017-09-29 23:16:48 -0700441 { .oer_constraints = &asn_OER_memb_unsigned16stack_ext_constr_5, .per_constraints = 0, .general_constraints = memb_unsigned16stack_ext_constraint_1 },
Lev Walkin20696a42017-10-17 21:27:33 -0700442 0, 0, /* No default value */
Lev Walkin69353a32017-07-25 08:10:46 -0700443 .name = "unsigned16stack-ext"
444 },
445 { ATF_NOFLAGS, 0, offsetof(struct T, unsigned33),
446 .tag = (ASN_TAG_CLASS_CONTEXT | (3 << 2)),
447 .tag_mode = -1, /* IMPLICIT tag at current level */
448 .type = &asn_DEF_INTEGER,
Lev Walkin67a30122017-08-10 05:48:54 -0700449 .type_selector = 0,
Lev Walkin0bfea562017-09-29 23:16:48 -0700450 { .oer_constraints = &asn_OER_memb_unsigned33_constr_6, .per_constraints = 0, .general_constraints = memb_unsigned33_constraint_1 },
Lev Walkin20696a42017-10-17 21:27:33 -0700451 0, 0, /* No default value */
Lev Walkin69353a32017-07-25 08:10:46 -0700452 .name = "unsigned33"
453 },
454 { ATF_POINTER, 7, offsetof(struct T, minmax),
455 .tag = (ASN_TAG_CLASS_CONTEXT | (6 << 2)),
456 .tag_mode = -1, /* IMPLICIT tag at current level */
457 .type = &asn_DEF_NativeInteger,
Lev Walkin67a30122017-08-10 05:48:54 -0700458 .type_selector = 0,
Lev Walkin0bfea562017-09-29 23:16:48 -0700459 { .oer_constraints = &asn_OER_memb_minmax_constr_7, .per_constraints = 0, .general_constraints = memb_minmax_constraint_1 },
Lev Walkin20696a42017-10-17 21:27:33 -0700460 0, 0, /* No default value */
Lev Walkin69353a32017-07-25 08:10:46 -0700461 .name = "minmax"
462 },
463 { ATF_POINTER, 6, offsetof(struct T, signed8),
464 .tag = (ASN_TAG_CLASS_CONTEXT | (10 << 2)),
465 .tag_mode = -1, /* IMPLICIT tag at current level */
466 .type = &asn_DEF_NativeInteger,
Lev Walkin67a30122017-08-10 05:48:54 -0700467 .type_selector = 0,
Lev Walkin0bfea562017-09-29 23:16:48 -0700468 { .oer_constraints = &asn_OER_memb_signed8_constr_9, .per_constraints = 0, .general_constraints = memb_signed8_constraint_1 },
Lev Walkin20696a42017-10-17 21:27:33 -0700469 .default_value_cmp = asn_DFL_9_cmp_3, /* Compare DEFAULT 3 */
470 .default_value_set = asn_DFL_9_set_3, /* Set DEFAULT 3 */
Lev Walkin69353a32017-07-25 08:10:46 -0700471 .name = "signed8"
472 },
473 { ATF_POINTER, 5, offsetof(struct T, signed16),
474 .tag = (ASN_TAG_CLASS_CONTEXT | (11 << 2)),
475 .tag_mode = -1, /* IMPLICIT tag at current level */
476 .type = &asn_DEF_NativeInteger,
Lev Walkin67a30122017-08-10 05:48:54 -0700477 .type_selector = 0,
Lev Walkin0bfea562017-09-29 23:16:48 -0700478 { .oer_constraints = &asn_OER_memb_signed16_constr_10, .per_constraints = 0, .general_constraints = memb_signed16_constraint_1 },
Lev Walkin20696a42017-10-17 21:27:33 -0700479 0, 0, /* No default value */
Lev Walkin69353a32017-07-25 08:10:46 -0700480 .name = "signed16"
481 },
482 { ATF_POINTER, 4, offsetof(struct T, signed16stack),
483 .tag = (ASN_TAG_CLASS_CONTEXT | (12 << 2)),
484 .tag_mode = -1, /* IMPLICIT tag at current level */
485 .type = &asn_DEF_NativeInteger,
Lev Walkin67a30122017-08-10 05:48:54 -0700486 .type_selector = 0,
Lev Walkin0bfea562017-09-29 23:16:48 -0700487 { .oer_constraints = &asn_OER_memb_signed16stack_constr_11, .per_constraints = 0, .general_constraints = memb_signed16stack_constraint_1 },
Lev Walkin20696a42017-10-17 21:27:33 -0700488 0, 0, /* No default value */
Lev Walkin69353a32017-07-25 08:10:46 -0700489 .name = "signed16stack"
490 },
491 { ATF_POINTER, 3, offsetof(struct T, signed16stack_ext),
492 .tag = (ASN_TAG_CLASS_CONTEXT | (5 << 2)),
493 .tag_mode = -1, /* IMPLICIT tag at current level */
494 .type = &asn_DEF_NativeInteger,
Lev Walkin67a30122017-08-10 05:48:54 -0700495 .type_selector = 0,
Lev Walkin0bfea562017-09-29 23:16:48 -0700496 { .oer_constraints = &asn_OER_memb_signed16stack_ext_constr_12, .per_constraints = 0, .general_constraints = memb_signed16stack_ext_constraint_1 },
Lev Walkin20696a42017-10-17 21:27:33 -0700497 0, 0, /* No default value */
Lev Walkin69353a32017-07-25 08:10:46 -0700498 .name = "signed16stack-ext"
499 },
500 { ATF_POINTER, 2, offsetof(struct T, signed32),
501 .tag = (ASN_TAG_CLASS_CONTEXT | (7 << 2)),
502 .tag_mode = -1, /* IMPLICIT tag at current level */
503 .type = &asn_DEF_NativeInteger,
Lev Walkin67a30122017-08-10 05:48:54 -0700504 .type_selector = 0,
Lev Walkin0bfea562017-09-29 23:16:48 -0700505 { .oer_constraints = &asn_OER_memb_signed32_constr_13, .per_constraints = 0, .general_constraints = memb_signed32_constraint_1 },
Lev Walkin20696a42017-10-17 21:27:33 -0700506 0, 0, /* No default value */
Lev Walkin69353a32017-07-25 08:10:46 -0700507 .name = "signed32"
508 },
509 { ATF_POINTER, 1, offsetof(struct T, signed33ext),
510 .tag = (ASN_TAG_CLASS_CONTEXT | (8 << 2)),
511 .tag_mode = -1, /* IMPLICIT tag at current level */
512 .type = &asn_DEF_INTEGER,
Lev Walkin67a30122017-08-10 05:48:54 -0700513 .type_selector = 0,
Lev Walkin0bfea562017-09-29 23:16:48 -0700514 { .oer_constraints = &asn_OER_memb_signed33ext_constr_14, .per_constraints = 0, .general_constraints = memb_signed33ext_constraint_1 },
Lev Walkin20696a42017-10-17 21:27:33 -0700515 0, 0, /* No default value */
Lev Walkin69353a32017-07-25 08:10:46 -0700516 .name = "signed33ext"
517 },
518};
519static const int asn_MAP_T_oms_1[] = { 5, 6, 7, 8, 9, 10, 11 };
520static const ber_tlv_tag_t asn_DEF_T_tags_1[] = {
521 (ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
522};
523static const asn_TYPE_tag2member_t asn_MAP_T_tag2el_1[] = {
524 { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* unsigned8 */
525 { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* unsigned16 */
526 { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 }, /* unsigned16stack */
527 { (ASN_TAG_CLASS_CONTEXT | (3 << 2)), 4, 0, 0 }, /* unsigned33 */
528 { (ASN_TAG_CLASS_CONTEXT | (5 << 2)), 9, 0, 0 }, /* signed16stack-ext */
529 { (ASN_TAG_CLASS_CONTEXT | (6 << 2)), 5, 0, 0 }, /* minmax */
530 { (ASN_TAG_CLASS_CONTEXT | (7 << 2)), 10, 0, 0 }, /* signed32 */
531 { (ASN_TAG_CLASS_CONTEXT | (8 << 2)), 11, 0, 0 }, /* signed33ext */
532 { (ASN_TAG_CLASS_CONTEXT | (10 << 2)), 6, 0, 0 }, /* signed8 */
533 { (ASN_TAG_CLASS_CONTEXT | (11 << 2)), 7, 0, 0 }, /* signed16 */
534 { (ASN_TAG_CLASS_CONTEXT | (12 << 2)), 8, 0, 0 }, /* signed16stack */
535 { (ASN_TAG_CLASS_CONTEXT | (15 << 2)), 3, 0, 0 } /* unsigned16stack-ext */
536};
537static asn_SEQUENCE_specifics_t asn_SPC_T_specs_1 = {
538 sizeof(struct T),
539 offsetof(struct T, _asn_ctx),
Lev Walkine3917082017-08-23 10:29:38 -0700540 .tag2el = asn_MAP_T_tag2el_1,
541 .tag2el_count = 12, /* Count of tags in the map */
Lev Walkin69353a32017-07-25 08:10:46 -0700542 asn_MAP_T_oms_1, /* Optional members */
543 1, 6, /* Root/Additions */
544 5, /* Start extensions */
545 13 /* Stop extensions */
546};
547asn_TYPE_descriptor_t asn_DEF_T = {
548 "T",
549 "T",
Bi-Ruei, Chiu1f87ac02017-08-20 01:25:45 +0800550 &asn_OP_SEQUENCE,
Lev Walkin69353a32017-07-25 08:10:46 -0700551 asn_DEF_T_tags_1,
552 sizeof(asn_DEF_T_tags_1)
553 /sizeof(asn_DEF_T_tags_1[0]), /* 1 */
554 asn_DEF_T_tags_1, /* Same as above */
555 sizeof(asn_DEF_T_tags_1)
556 /sizeof(asn_DEF_T_tags_1[0]), /* 1 */
Lev Walkin0bfea562017-09-29 23:16:48 -0700557 { 0, 0, SEQUENCE_constraint },
Lev Walkin69353a32017-07-25 08:10:46 -0700558 asn_MBR_T_1,
559 12, /* Elements count */
560 &asn_SPC_T_specs_1 /* Additional specs */
561};
562