Lines Matching refs:si
9 signed int si; variable
20 (void) __sync_fetch_and_add (&si, 1); // CHECK: atomicrmw add i32 in test_op_ignore()
29 (void) __sync_fetch_and_sub (&si, 1); // CHECK: atomicrmw sub i32 in test_op_ignore()
38 (void) __sync_fetch_and_or (&si, 1); // CHECK: atomicrmw or i32 in test_op_ignore()
47 (void) __sync_fetch_and_xor (&si, 1); // CHECK: atomicrmw xor i32 in test_op_ignore()
56 (void) __sync_fetch_and_nand (&si, 1); // CHECK: atomicrmw nand i32 in test_op_ignore()
65 (void) __sync_fetch_and_and (&si, 1); // CHECK: atomicrmw and i32 in test_op_ignore()
78 si = __sync_fetch_and_add (&si, 11); // CHECK: atomicrmw add in test_fetch_and_op()
87 si = __sync_fetch_and_sub (&si, 11); // CHECK: atomicrmw sub in test_fetch_and_op()
96 si = __sync_fetch_and_or (&si, 11); // CHECK: atomicrmw or in test_fetch_and_op()
105 si = __sync_fetch_and_xor (&si, 11); // CHECK: atomicrmw xor in test_fetch_and_op()
114 si = __sync_fetch_and_nand (&si, 11); // CHECK: atomicrmw nand in test_fetch_and_op()
123 si = __sync_fetch_and_and (&si, 11); // CHECK: atomicrmw and in test_fetch_and_op()
136 si = __sync_add_and_fetch (&si, uc); // CHECK: atomicrmw add in test_op_and_fetch()
145 si = __sync_sub_and_fetch (&si, uc); // CHECK: atomicrmw sub in test_op_and_fetch()
154 si = __sync_or_and_fetch (&si, uc); // CHECK: atomicrmw or in test_op_and_fetch()
163 si = __sync_xor_and_fetch (&si, uc); // CHECK: atomicrmw xor in test_op_and_fetch()
180 si = __sync_nand_and_fetch (&si, uc); // CHECK: atomicrmw nand in test_op_and_fetch()
197 si = __sync_and_and_fetch (&si, uc); // CHECK: atomicrmw and in test_op_and_fetch()
222 si = __sync_val_compare_and_swap (&si, uc, sc); in test_compare_and_swap()
255 ui = __sync_bool_compare_and_swap (&si, uc, sc); in test_compare_and_swap()
278 si = __sync_lock_test_and_set (&si, 1); // CHECK: atomicrmw xchg i32 in test_lock()
289 __sync_lock_release (&si); // CHECK: store atomic {{.*}} release, align 4 in test_lock()