| /third_party/ulib/backtrace/ |
| A D | atomic.c | 81 void *old; in backtrace_atomic_store_pointer() local 84 old = *pp; in backtrace_atomic_store_pointer() 86 old = *pp; in backtrace_atomic_store_pointer() 94 size_t old; in backtrace_atomic_store_size_t() local 96 old = *p; in backtrace_atomic_store_size_t() 97 while (!__sync_bool_compare_and_swap (p, old, v)) in backtrace_atomic_store_size_t() 98 old = *p; in backtrace_atomic_store_size_t() 106 size_t old; in backtrace_atomic_store_int() local 108 old = *p; in backtrace_atomic_store_int() 109 while (!__sync_bool_compare_and_swap (p, old, v)) in backtrace_atomic_store_int() [all …]
|
| A D | install-sh | 480 set X $old && old=:$2:$4:$5:$6 && 484 test "$old" = "$new" &&
|
| /third_party/ulib/musl/pthread/ |
| A D | pthread_sigmask.c | 6 int pthread_sigmask(int how, const sigset_t* restrict set, sigset_t* restrict old) { in pthread_sigmask() argument 9 if (old) { in pthread_sigmask() 10 if (sizeof old->__bits[0] == 8) { in pthread_sigmask() 11 old->__bits[0] &= ~0x380000000ULL; in pthread_sigmask() 13 old->__bits[0] &= ~0x80000000UL; in pthread_sigmask() 14 old->__bits[1] &= ~0x3UL; in pthread_sigmask()
|
| A D | pthread_mutex_trylock.c | 4 int old, own; in __pthread_mutex_trylock_owner() local 8 old = atomic_load(&m->_m_lock); in __pthread_mutex_trylock_owner() 9 own = old & PTHREAD_MUTEX_OWNED_LOCK_MASK; in __pthread_mutex_trylock_owner() 17 if (own || a_cas_shim(&m->_m_lock, old, tid) != old) { in __pthread_mutex_trylock_owner()
|
| A D | pthread_mutex_setprioceiling.c | 3 int pthread_mutex_setprioceiling(pthread_mutex_t* restrict m, int ceiling, int* restrict old) { in pthread_mutex_setprioceiling() argument
|
| A D | pthread_setcancelstate.c | 5 int pthread_setcancelstate(int new, int* old) { in pthread_setcancelstate() argument
|
| A D | pthread_setcanceltype.c | 5 int pthread_setcanceltype(int new, int* old) { in pthread_setcanceltype() argument
|
| /third_party/ulib/musl/src/locale/ |
| A D | duplocale.c | 6 locale_t __duplocale(locale_t old) { in __duplocale() argument 10 if (old == LC_GLOBAL_LOCALE) in __duplocale() 11 old = &libc.global_locale; in __duplocale() 12 *new = *old; in __duplocale()
|
| A D | uselocale.c | 7 locale_t old = self->locale; in __uselocale() local 13 return old == global ? LC_GLOBAL_LOCALE : old; in __uselocale()
|
| /third_party/ulib/musl/src/unistd/ |
| A D | ualarm.c | 10 struct itimerval old = {}; in ualarm() local 11 setitimer(ITIMER_REAL, &it, &old); in ualarm() 12 return old.it_value.tv_sec * 1000000 + old.it_value.tv_usec; in ualarm()
|
| /third_party/ulib/jemalloc/test/unit/ |
| A D | prof_active.c | 11 bool old; in mallctl_bool_get() local 14 sz = sizeof(old); in mallctl_bool_get() 15 assert_d_eq(mallctl(name, (void *)&old, &sz, NULL, 0), 0, in mallctl_bool_get() 17 assert_b_eq(old, expected, "%s():%d: Unexpected %s value", func, line, in mallctl_bool_get() 25 bool old; in mallctl_bool_set() local 28 sz = sizeof(old); in mallctl_bool_set() 29 assert_d_eq(mallctl(name, (void *)&old, &sz, (void *)&val_new, in mallctl_bool_set() 33 assert_b_eq(old, old_expected, "%s():%d: Unexpected %s value", func, in mallctl_bool_set()
|
| /third_party/ulib/musl/src/process/ |
| A D | system.c | 11 sigset_t old, reset; in system() local 22 sigprocmask(SIG_BLOCK, &sa.sa_mask, &old); in system() 30 posix_spawnattr_setsigmask(&attr, &old); in system() 41 sigprocmask(SIG_SETMASK, &old, NULL); in system()
|
| /third_party/ulib/musl/src/internal/ |
| A D | asm.h | 22 #define ALIAS(old, new) \ argument 23 new = old; \ 26 #define WEAK_ALIAS(old, new) \ argument 27 new = old; \
|
| A D | libc.h | 104 #define weak_alias(old, new) extern __typeof(old) new __attribute__((weak, alias(#old))) argument
|
| /third_party/ulib/musl/src/signal/ |
| A D | sigprocmask.c | 4 int sigprocmask(int how, const sigset_t* restrict set, sigset_t* restrict old) { in sigprocmask() argument 5 int r = pthread_sigmask(how, set, old); in sigprocmask()
|
| A D | getitimer.c | 4 int getitimer(int which, struct itimerval* old) { in getitimer() argument
|
| A D | sigaltstack.c | 4 int sigaltstack(const stack_t* restrict ss, stack_t* restrict old) { in sigaltstack() argument
|
| A D | setitimer.c | 4 int setitimer(int which, const struct itimerval* restrict new, struct itimerval* restrict old) { in setitimer() argument
|
| A D | sigaction.c | 4 int sigaction(int sig, const struct sigaction* restrict sa, struct sigaction* restrict old) { in sigaction() argument
|
| /third_party/uapp/dash/src/ |
| A D | exec.c | 537 const char *old, *new; in changepath() local 542 old = pathval(); in changepath() 548 if (*old != *new) { in changepath() 550 if ((*old == '\0' && *new == ':') in changepath() 551 || (*old == ':' && *new == '\0')) in changepath() 553 old = new; /* ignore subsequent differences */ in changepath() 562 new++, old++; in changepath()
|
| /third_party/ulib/musl/ |
| A D | WHATSNEW | 584 - avoid using "old" syscalls that don't exist on arm eabi linux 630 - test for old binutils that can't support musl dynamic linker 884 - further emulation of atomic close-on-exec/nonblock options for old kernels 917 - broken pipe2 fallback code on mips with old kernels 1024 - qemu-user's rt_sigaction syscall does not allow old to alias new 1208 - non-working clock_gettime fallback for old kernels 1257 - better O_CLOEXEC/SOCK_CLOEXEC fallbacks for old kernels 1428 - suppress EINTR in semaphores for old kernels where futex restart is broken 1438 - old aio implementation had numerous conformance bugs 1497 - duplocale clobbered new locale struct with memcpy of old
|
| /third_party/ulib/musl/stubs/ |
| A D | iostubs.c | 453 static int stub_renameat(int oldfd, const char* old, int newfd, const char* new) { in stub_renameat() argument
|
| /third_party/ulib/jemalloc/ |
| A D | INSTALL | 279 requirement for performance reasons. An old discussion can be found at
|
| A D | ChangeLog | 280 specify the old chunk size rather than the new chunk size. This bug caused 612 + Internal reallocation of the quarantined object array leaked the old
|
| /third_party/ulib/jemalloc/include/jemalloc/internal/ |
| A D | jemalloc_internal.h.in | 864 * ind is invalid, cache is old (too small), or tdata to be
|