Lines Matching refs:ull
12 unsigned long long ull; variable
25 (void) __sync_fetch_and_add (&ull, 1); // CHECK: atomicrmw add i64* {{.*}} seq_cst, align 8 in test_op_ignore()
34 (void) __sync_fetch_and_sub (&ull, 1); // CHECK: atomicrmw sub i64* {{.*}} seq_cst, align 8 in test_op_ignore()
43 (void) __sync_fetch_and_or (&ull, 1); // CHECK: atomicrmw or i64* {{.*}} seq_cst, align 8 in test_op_ignore()
52 (void) __sync_fetch_and_xor (&ull, 1); // CHECK: atomicrmw xor i64* {{.*}} seq_cst, align 8 in test_op_ignore()
63 (void) __sync_fetch_and_nand (&ull, 1); // CHECK: atomicrmw nand i64* {{.*}} seq_cst, align 8 in test_op_ignore()
72 (void) __sync_fetch_and_and (&ull, 1); // CHECK: atomicrmw and i64* {{.*}} seq_cst, align 8 in test_op_ignore()
85 ull = __sync_fetch_and_add (&ull, 11); // CHECK: atomicrmw add in test_fetch_and_op()
94 ull = __sync_fetch_and_sub (&ull, 11); // CHECK: atomicrmw sub in test_fetch_and_op()
103 ull = __sync_fetch_and_or (&ull, 11); // CHECK: atomicrmw or in test_fetch_and_op()
112 ull = __sync_fetch_and_xor (&ull, 11); // CHECK: atomicrmw xor in test_fetch_and_op()
121 ull = __sync_fetch_and_nand (&ull, 11); // CHECK: atomicrmw nand in test_fetch_and_op()
130 ull = __sync_fetch_and_and (&ull, 11); // CHECK: atomicrmw and in test_fetch_and_op()
143 ull = __sync_add_and_fetch (&ull, uc); // CHECK: atomicrmw add in test_op_and_fetch()
152 ull = __sync_sub_and_fetch (&ull, uc); // CHECK: atomicrmw sub in test_op_and_fetch()
161 ull = __sync_or_and_fetch (&ull, uc); // CHECK: atomicrmw or in test_op_and_fetch()
170 ull = __sync_xor_and_fetch (&ull, uc); // CHECK: atomicrmw xor in test_op_and_fetch()
200 ull = __sync_nand_and_fetch (&ull, uc); // CHECK: atomicrmw nand in test_op_and_fetch()
220 ull = __sync_and_and_fetch (&ull, uc); // CHECK: atomicrmw and in test_op_and_fetch()
254 ull = __sync_val_compare_and_swap (&ull, uc, sc); in test_compare_and_swap()
287 ui = __sync_bool_compare_and_swap (&ull, uc, sc); in test_compare_and_swap()
301 ull = __sync_lock_test_and_set (&ull, 1); // CHECK: atomicrmw xchg i64* {{.*}} seq_cst, align 8 in test_lock()
312 __sync_lock_release (&ull); // CHECK: store atomic {{.*}} release, align 8 in test_lock()