Home
last modified time | relevance | path

Searched refs:oldval (Results 1 – 2 of 2) sorted by relevance

/bionic/libc/bionic/
Dpthread.c1670 long oldval = cond->value; in __pthread_cond_pulse() local
1671 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() local
2203 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 …]
/bionic/libc/kernel/common/linux/
Dsysctl.h32 void __user *oldval; member