Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dpthread.c1666 long oldval = cond->value; in __pthread_cond_pulse() local
1667 long newval = ((oldval - COND_COUNTER_INCREMENT) & COND_COUNTER_MASK) in __pthread_cond_pulse()
1669 if (__bionic_cmpxchg(oldval, newval, &cond->value) == 0) in __pthread_cond_pulse()
2194 int32_t oldval, newval; in pthread_once() local
2197 oldval = *ocptr; in pthread_once()
2198 if ((oldval & ONCE_COMPLETED) != 0) in pthread_once()
2201 newval = oldval | ONCE_INITIALIZING; in pthread_once()
2202 } while (__bionic_cmpxchg(oldval, newval, ocptr) != 0); in pthread_once()
2204 if ((oldval & ONCE_COMPLETED) != 0) { in pthread_once()
2210 if ((oldval & ONCE_INITIALIZING) == 0) { in pthread_once()
[all …]
/bionic/libc/kernel/common/linux/
Dsysctl.h32 void __user *oldval; member