Lines Matching defs:y
16 unsigned test_add_overflow_uint_uint_uint(unsigned x, unsigned y) { in test_add_overflow_uint_uint_uint()
30 int test_add_overflow_int_int_int(int x, int y) { in test_add_overflow_int_int_int()
44 unsigned test_sub_overflow_uint_uint_uint(unsigned x, unsigned y) { in test_sub_overflow_uint_uint_uint()
58 int test_sub_overflow_int_int_int(int x, int y) { in test_sub_overflow_int_int_int()
72 unsigned test_mul_overflow_uint_uint_uint(unsigned x, unsigned y) { in test_mul_overflow_uint_uint_uint()
86 int test_mul_overflow_int_int_int(int x, int y) { in test_mul_overflow_int_int_int()
100 int test_add_overflow_uint_int_int(unsigned x, int y) { in test_add_overflow_uint_int_int()
119 _Bool test_add_overflow_uint_uint_bool(unsigned x, unsigned y) { in test_add_overflow_uint_uint_bool()
138 unsigned test_add_overflow_bool_bool_uint(_Bool x, _Bool y) { in test_add_overflow_bool_bool_uint()
153 _Bool test_add_overflow_bool_bool_bool(_Bool x, _Bool y) { in test_add_overflow_bool_bool_bool()
167 int test_add_overflow_volatile(int x, int y) { in test_add_overflow_volatile()
180 unsigned test_uadd_overflow(unsigned x, unsigned y) { in test_uadd_overflow()
189 unsigned long test_uaddl_overflow(unsigned long x, unsigned long y) { in test_uaddl_overflow()
198 unsigned long long test_uaddll_overflow(unsigned long long x, unsigned long long y) { in test_uaddll_overflow()
207 unsigned test_usub_overflow(unsigned x, unsigned y) { in test_usub_overflow()
216 unsigned long test_usubl_overflow(unsigned long x, unsigned long y) { in test_usubl_overflow()
225 unsigned long long test_usubll_overflow(unsigned long long x, unsigned long long y) { in test_usubll_overflow()
234 unsigned test_umul_overflow(unsigned x, unsigned y) { in test_umul_overflow()
243 unsigned long test_umull_overflow(unsigned long x, unsigned long y) { in test_umull_overflow()
252 unsigned long long test_umulll_overflow(unsigned long long x, unsigned long long y) { in test_umulll_overflow()
261 int test_sadd_overflow(int x, int y) { in test_sadd_overflow()
270 long test_saddl_overflow(long x, long y) { in test_saddl_overflow()
279 long long test_saddll_overflow(long long x, long long y) { in test_saddll_overflow()
288 int test_ssub_overflow(int x, int y) { in test_ssub_overflow()
297 long test_ssubl_overflow(long x, long y) { in test_ssubl_overflow()
306 long long test_ssubll_overflow(long long x, long long y) { in test_ssubll_overflow()
315 int test_smul_overflow(int x, int y) { in test_smul_overflow()
324 long test_smull_overflow(long x, long y) { in test_smull_overflow()
333 long long test_smulll_overflow(long long x, long long y) { in test_smulll_overflow()