Lines Matching refs:ss
7 signed short ss; variable
18 (void) __sync_fetch_and_add (&ss, 1); // CHECK: atomicrmw add i16 in test_op_ignore()
27 (void) __sync_fetch_and_sub (&ss, 1); // CHECK: atomicrmw sub i16 in test_op_ignore()
36 (void) __sync_fetch_and_or (&ss, 1); // CHECK: atomicrmw or i16 in test_op_ignore()
45 (void) __sync_fetch_and_xor (&ss, 1); // CHECK: atomicrmw xor i16 in test_op_ignore()
54 (void) __sync_fetch_and_nand (&ss, 1); // CHECK: atomicrmw nand i16 in test_op_ignore()
63 (void) __sync_fetch_and_and (&ss, 1); // CHECK: atomicrmw and i16 in test_op_ignore()
76 ss = __sync_fetch_and_add (&ss, 11); // CHECK: atomicrmw add in test_fetch_and_op()
85 ss = __sync_fetch_and_sub (&ss, 11); // CHECK: atomicrmw sub in test_fetch_and_op()
94 ss = __sync_fetch_and_or (&ss, 11); // CHECK: atomicrmw or in test_fetch_and_op()
103 ss = __sync_fetch_and_xor (&ss, 11); // CHECK: atomicrmw xor in test_fetch_and_op()
112 ss = __sync_fetch_and_nand (&ss, 11); // CHECK: atomicrmw nand in test_fetch_and_op()
121 ss = __sync_fetch_and_and (&ss, 11); // CHECK: atomicrmw and in test_fetch_and_op()
134 ss = __sync_add_and_fetch (&ss, uc); // CHECK: atomicrmw add in test_op_and_fetch()
143 ss = __sync_sub_and_fetch (&ss, uc); // CHECK: atomicrmw sub in test_op_and_fetch()
152 ss = __sync_or_and_fetch (&ss, uc); // CHECK: atomicrmw or in test_op_and_fetch()
161 ss = __sync_xor_and_fetch (&ss, uc); // CHECK: atomicrmw xor in test_op_and_fetch()
174 ss = __sync_nand_and_fetch (&ss, uc); // CHECK: atomicrmw nand in test_op_and_fetch()
195 ss = __sync_and_and_fetch (&ss, uc); // CHECK: atomicrmw and in test_op_and_fetch()
214 ss = __sync_val_compare_and_swap (&ss, uc, sc); in test_compare_and_swap()
247 ui = __sync_bool_compare_and_swap (&ss, uc, sc); in test_compare_and_swap()
276 ss = __sync_lock_test_and_set (&ss, 1); // CHECK: atomicrmw xchg i16 in test_lock()
287 __sync_lock_release (&ss); // CHECK: store atomic {{.*}} release, align 2 in test_lock()