Searched defs:old (Results 1 - 4 of 4) sorted by relevance
/bionic/libc/arch-arm/bionic/ |
H A D | atomics_arm.c | 61 __atomic_cmpxchg(int old, int _new, volatile int *ptr) argument 64 return __sync_val_compare_and_swap(ptr, old, _new) != old;
|
/bionic/libc/bionic/ |
H A D | semaphore.c | 158 * and return the old one. As a special case, 166 unsigned int old, new; local 170 old = (*pvalue & SEMCOUNT_VALUE_MASK); 171 ret = SEMCOUNT_TO_VALUE(old); 175 new = SEMCOUNT_DECREMENT(old); 177 while (__bionic_cmpxchg((int)(old|shared), 184 * value is already negative *or* 0. Returns the old value. 190 unsigned int old, new; local 194 old = (*pvalue & SEMCOUNT_VALUE_MASK); 195 ret = SEMCOUNT_TO_VALUE(old); 220 unsigned int old, new; local 339 int old; local [all...] |
/bionic/libc/kernel/common/linux/ |
H A D | uinput.h | 29 struct ff_effect old; member in struct:uinput_ff_upload
|
/bionic/libc/netbsd/isc/ |
H A D | ev_streams.c | 152 evStream *old = id.opaque; local 163 if (old->prev != NULL) 164 old->prev->next = old->next; 166 ctx->streams = old->next; 167 if (old->next != NULL) 168 old->next->prev = old->prev; 171 * If 'old' is on the ctx->strDone list, remove it. Update 174 if (old [all...] |
Completed in 84 milliseconds