Lines Matching defs:a0
11 uint64_t a0, a1;
20 a0 = atomic_load_u64(&prof_accum->accumbytes, ATOMIC_RELAXED);
22 a1 = a0 + accumbytes;
23 assert(a1 >= a0);
28 } while (!atomic_compare_exchange_weak_u64(&prof_accum->accumbytes, &a0,
32 a0 = prof_accum->accumbytes;
33 a1 = a0 + accumbytes;
54 uint64_t a0, a1;
56 a0 = atomic_load_u64(&prof_accum->accumbytes, ATOMIC_RELAXED);
58 a1 = (a0 >= LARGE_MINCLASS - usize) ? a0 - (LARGE_MINCLASS -
60 } while (!atomic_compare_exchange_weak_u64(&prof_accum->accumbytes, &a0,
64 a0 = prof_accum->accumbytes;
65 a1 = (a0 >= LARGE_MINCLASS - usize) ? a0 - (LARGE_MINCLASS - usize) :