Home | History | Annotate | Download | only in extensions

Lines Matching defs:ct

45 	const struct xt_u32_test *ct;
50 ct = &data->tests[testind];
55 printf("0x%x", ct->location[0].number);
56 for (i = 1; i < ct->nnums; ++i) {
57 switch (ct->location[i].nextop) {
71 printf("0x%x", ct->location[i].number);
75 for (i = 0; i < ct->nvalues; ++i) {
78 if (ct->value[i].min == ct->value[i].max)
79 printf("0x%x", ct->value[i].min);
81 printf("0x%x:0x%x", ct->value[i].min,
82 ct->value[i].max);
110 struct xt_u32_test *ct = &data->tests[testind]; /* current test */
137 ct->nnums = locind;
138 ct->nvalues = valind;
167 ct->location[locind].nextop = XT_U32_AND;
172 ct->location[locind].nextop = XT_U32_LEFTSH;
177 ct->location[locind].nextop = XT_U32_RIGHTSH;
179 ct->location[locind].nextop = XT_U32_AT;
187 ct->location[locind].number =
207 ct->nnums = locind;
208 ct->nvalues = valind;
209 ct = &data->tests[++testind];
225 ct->value[valind].min =
233 ct->value[valind].max =
236 ct->value[valind].max =
237 ct->value[valind].min;