Lines Matching refs:ull
12 unsigned long long ull; variable
23 (void) __sync_fetch_and_add (&ull, 1); // CHECK: atomicrmw add i64 in test_op_ignore()
32 (void) __sync_fetch_and_sub (&ull, 1); // CHECK: atomicrmw sub i64 in test_op_ignore()
41 (void) __sync_fetch_and_or (&ull, 1); // CHECK: atomicrmw or i64 in test_op_ignore()
50 (void) __sync_fetch_and_xor (&ull, 1); // CHECK: atomicrmw xor i64 in test_op_ignore()
59 (void) __sync_fetch_and_nand (&ull, 1); // CHECK: atomicrmw nand i64 in test_op_ignore()
68 (void) __sync_fetch_and_and (&ull, 1); // CHECK: atomicrmw and i64 in test_op_ignore()
81 ull = __sync_fetch_and_add (&ull, 11); // CHECK: atomicrmw add in test_fetch_and_op()
90 ull = __sync_fetch_and_sub (&ull, 11); // CHECK: atomicrmw sub in test_fetch_and_op()
99 ull = __sync_fetch_and_or (&ull, 11); // CHECK: atomicrmw or in test_fetch_and_op()
108 ull = __sync_fetch_and_xor (&ull, 11); // CHECK: atomicrmw xor in test_fetch_and_op()
117 ull = __sync_fetch_and_nand (&ull, 11); // CHECK: atomicrmw nand in test_fetch_and_op()
126 ull = __sync_fetch_and_and (&ull, 11); // CHECK: atomicrmw and in test_fetch_and_op()
139 ull = __sync_add_and_fetch (&ull, uc); // CHECK: atomicrmw add in test_op_and_fetch()
148 ull = __sync_sub_and_fetch (&ull, uc); // CHECK: atomicrmw sub in test_op_and_fetch()
157 ull = __sync_or_and_fetch (&ull, uc); // CHECK: atomicrmw or in test_op_and_fetch()
166 ull = __sync_xor_and_fetch (&ull, uc); // CHECK: atomicrmw xor in test_op_and_fetch()
189 ull = __sync_nand_and_fetch (&ull, uc); // CHECK: atomicrmw nand in test_op_and_fetch()
200 ull = __sync_and_and_fetch (&ull, uc); // CHECK: atomicrmw and in test_op_and_fetch()
234 ull = __sync_val_compare_and_swap (&ull, uc, sc); in test_compare_and_swap()
267 ui = __sync_bool_compare_and_swap (&ull, uc, sc); in test_compare_and_swap()
281 ull = __sync_lock_test_and_set (&ull, 1); // CHECK: atomicrmw xchg i64 in test_lock()
292 __sync_lock_release (&ull); // CHECK: store atomic {{.*}} release, align 8 in test_lock()