• Home
  • Raw
  • Download

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_and (&ull, 1); // CHECK: atomicrmw and i64 in test_op_ignore()
72 ull = __sync_fetch_and_add (&ull, 11); // CHECK: atomicrmw add in test_fetch_and_op()
81 ull = __sync_fetch_and_sub (&ull, 11); // CHECK: atomicrmw sub in test_fetch_and_op()
90 ull = __sync_fetch_and_or (&ull, 11); // CHECK: atomicrmw or in test_fetch_and_op()
99 ull = __sync_fetch_and_xor (&ull, 11); // CHECK: atomicrmw xor in test_fetch_and_op()
108 ull = __sync_fetch_and_and (&ull, 11); // CHECK: atomicrmw and in test_fetch_and_op()
121 ull = __sync_add_and_fetch (&ull, uc); // CHECK: atomicrmw add in test_op_and_fetch()
130 ull = __sync_sub_and_fetch (&ull, uc); // CHECK: atomicrmw sub in test_op_and_fetch()
139 ull = __sync_or_and_fetch (&ull, uc); // CHECK: atomicrmw or in test_op_and_fetch()
148 ull = __sync_xor_and_fetch (&ull, uc); // CHECK: atomicrmw xor in test_op_and_fetch()
157 ull = __sync_and_and_fetch (&ull, uc); // CHECK: atomicrmw and in test_op_and_fetch()
170 ull = __sync_val_compare_and_swap (&ull, uc, sc); // CHECK: cmpxchg i64 in test_compare_and_swap()
179 ui = __sync_bool_compare_and_swap (&ull, uc, sc); // CHECK: cmpxchg in test_compare_and_swap()
191 ull = __sync_lock_test_and_set (&ull, 1); // CHECK: atomicrmw xchg i64 in test_lock()
202 __sync_lock_release (&ull); // CHECK: store atomic {{.*}} release, align 8 in test_lock()