Searched refs:oldval (Results 1 – 2 of 2) sorted by relevance
1670 long oldval = cond->value; in __pthread_cond_pulse() local1671 long newval = ((oldval - COND_COUNTER_INCREMENT) & COND_COUNTER_MASK) in __pthread_cond_pulse()1673 if (__bionic_cmpxchg(oldval, newval, &cond->value) == 0) in __pthread_cond_pulse()2200 int32_t oldval, newval; in pthread_once() local2203 oldval = *ocptr; in pthread_once()2204 if ((oldval & ONCE_COMPLETED) != 0) in pthread_once()2207 newval = oldval | ONCE_INITIALIZING; in pthread_once()2208 } while (__bionic_cmpxchg(oldval, newval, ocptr) != 0); in pthread_once()2210 if ((oldval & ONCE_COMPLETED) != 0) { in pthread_once()2216 if ((oldval & ONCE_INITIALIZING) == 0) { in pthread_once()[all …]
32 void __user *oldval; member