• Home
  • Raw
  • Download

Lines Matching refs:sll

11 signed long long sll;  variable
22 (void) __sync_fetch_and_add (&sll, 1); // CHECK: atomicrmw add i64 in test_op_ignore()
31 (void) __sync_fetch_and_sub (&sll, 1); // CHECK: atomicrmw sub i64 in test_op_ignore()
40 (void) __sync_fetch_and_or (&sll, 1); // CHECK: atomicrmw or i64 in test_op_ignore()
49 (void) __sync_fetch_and_xor (&sll, 1); // CHECK: atomicrmw xor i64 in test_op_ignore()
58 (void) __sync_fetch_and_nand (&sll, 1); // CHECK: atomicrmw nand i64 in test_op_ignore()
67 (void) __sync_fetch_and_and (&sll, 1); // CHECK: atomicrmw and i64 in test_op_ignore()
80 sll = __sync_fetch_and_add (&sll, 11); // CHECK: atomicrmw add in test_fetch_and_op()
89 sll = __sync_fetch_and_sub (&sll, 11); // CHECK: atomicrmw sub in test_fetch_and_op()
98 sll = __sync_fetch_and_or (&sll, 11); // CHECK: atomicrmw or in test_fetch_and_op()
107 sll = __sync_fetch_and_xor (&sll, 11); // CHECK: atomicrmw xor in test_fetch_and_op()
116 sll = __sync_fetch_and_nand (&sll, 11); // CHECK: atomicrmw nand in test_fetch_and_op()
125 sll = __sync_fetch_and_and (&sll, 11); // CHECK: atomicrmw and in test_fetch_and_op()
138 sll = __sync_add_and_fetch (&sll, uc); // CHECK: atomicrmw add in test_op_and_fetch()
147 sll = __sync_sub_and_fetch (&sll, uc); // CHECK: atomicrmw sub in test_op_and_fetch()
156 sll = __sync_or_and_fetch (&sll, uc); // CHECK: atomicrmw or in test_op_and_fetch()
165 sll = __sync_xor_and_fetch (&sll, uc); // CHECK: atomicrmw xor in test_op_and_fetch()
186 sll = __sync_nand_and_fetch (&sll, uc); // CHECK: atomicrmw nand in test_op_and_fetch()
199 sll = __sync_and_and_fetch (&sll, uc); // CHECK: atomicrmw and in test_op_and_fetch()
230 sll = __sync_val_compare_and_swap (&sll, uc, sc); in test_compare_and_swap()
263 ui = __sync_bool_compare_and_swap (&sll, uc, sc); in test_compare_and_swap()
280 sll = __sync_lock_test_and_set (&sll, 1); // CHECK: atomicrmw xchg i64 in test_lock()
291 __sync_lock_release (&sll); // CHECK: store atomic {{.*}} release, align 8 in test_lock()