| atomic.c | 142 #define __sync_do_and_fetch(type, size, opname, op, op2) \ macro 148 __sync_do_and_fetch (int, 4, add, +, ) 149 __sync_do_and_fetch (int, 4, sub, -, ) 150 __sync_do_and_fetch (int, 4, or, |, ) 151 __sync_do_and_fetch (int, 4, and, &, ) 152 __sync_do_and_fetch (int, 4, xor, |, ) 153 __sync_do_and_fetch (int, 4, nand, &, ~) 154 __sync_do_and_fetch (long long, 8, add, +, ) 155 __sync_do_and_fetch (long long, 8, sub, -, ) 156 __sync_do_and_fetch (long long, 8, or, |, [all...] |