Lines Matching refs:arg

151 static int TST_allmul (void *a, void *b, int arg, void *result, void *expected)  in TST_allmul()  argument
157 static int TST_alldiv (void *a, void *b, int arg, void *result, void *expected) in TST_alldiv() argument
163 static int TST_allrem (void *a, void *b, int arg, void *result, void *expected) in TST_allrem() argument
169 static int TST_ualldiv (void *a, void *b, int arg, void *result, void *expected) in TST_ualldiv() argument
175 static int TST_uallrem (void *a, void *b, int arg, void *result, void *expected) in TST_uallrem() argument
181 static int TST_allshl (void *a, void *b, int arg, void *result, void *expected) in TST_allshl() argument
183 (*(long long *)result) = (*(long long *)a) << arg; in TST_allshl()
187 static int TST_aullshl (void *a, void *b, int arg, void *result, void *expected) in TST_aullshl() argument
189 (*(unsigned long long *)result) = (*(unsigned long long *)a) << arg; in TST_aullshl()
193 static int TST_allshr (void *a, void *b, int arg, void *result, void *expected) in TST_allshr() argument
195 (*(long long *)result) = (*(long long *)a) >> arg; in TST_allshr()
199 static int TST_aullshr (void *a, void *b, int arg, void *result, void *expected) in TST_aullshr() argument
201 (*(unsigned long long *)result) = (*(unsigned long long *)a) >> arg; in TST_aullshr()
206 typedef int (*LL_Intrinsic)(void *a, void *b, int arg, void *result, void *expected);
212 int arg; member
354 if (!t->routine(&t->a, &t->b, t->arg, &result, &t->expected_result)) { in Test64Bit()
357 … t->operation, al[1], al[0], bl[1], bl[0], t->arg, rl[1], rl[0], el[1], el[0]); in Test64Bit()