/bionic/libc/kernel/arch-mips/asm/ |
D | cmpxchg.h | 24 …new) ({ __typeof(*(m)) __ret; if (cpu_has_llsc && R10000_LLSC_WAR) { __asm__ __volatile__… argument 25 …pxchg(ptr, old, new, barrier) ({ __typeof__(ptr) __ptr = (ptr); __typeof__(*(ptr)) __old = (o… argument 26 #define cmpxchg(ptr, old, new) __cmpxchg(ptr, old, new, smp_llsc_mb()) argument 27 #define cmpxchg_local(ptr, old, new) __cmpxchg(ptr, old, new, ) argument
|
D | atomic.h | 34 #define atomic_xchg(v, new) (xchg(&((v)->counter), (new))) argument
|
D | mipsregs.h | 719 …nsigned int change, unsigned int new) { unsigned int res; res = read_c0_##name(); res &= …
|
/bionic/libc/netbsd/isc/ |
D | ev_streams.c | 65 evStream *new; in evWrite() local 68 OKNEW(new); in evWrite() 69 new->func = func; in evWrite() 70 new->uap = uap; in evWrite() 71 new->fd = fd; in evWrite() 72 new->flags = 0; in evWrite() 73 if (evSelectFD(opaqueCtx, fd, EV_WRITE, writable, new, &new->file) < 0) in evWrite() 75 if (copyvec(new, iov, iocnt) < 0) in evWrite() 77 new->prevDone = NULL; in evWrite() 78 new->nextDone = NULL; in evWrite() [all …]
|
/bionic/libstdc++/include/ |
D | new | 14 void* operator new(std::size_t); 15 void* operator new[](std::size_t); 18 void* operator new(std::size_t, const std::nothrow_t&); 19 void* operator new[](std::size_t, const std::nothrow_t&); 23 inline void* operator new(std::size_t, void* p) { return p; } 24 inline void* operator new[](std::size_t, void* p) { return p; }
|
/bionic/libc/kernel/arch-x86/asm/ |
D | atomic_32.h | 30 #define atomic_cmpxchg(v, old, new) (cmpxchg(&((v)->counter), (old), (new))) argument 31 #define atomic_xchg(v, new) (xchg(&((v)->counter), (new))) argument
|
/bionic/libc/bionic/ |
D | semaphore.c | 166 unsigned int old, new; in __sem_dec() local 175 new = SEMCOUNT_DECREMENT(old); in __sem_dec() 178 (int)(new|shared), in __sem_dec() 190 unsigned int old, new; in __sem_trydec() local 199 new = SEMCOUNT_DECREMENT(old); in __sem_trydec() 202 (int)(new|shared), in __sem_trydec() 220 unsigned int old, new; in __sem_inc() local 234 new = SEMCOUNT_ONE; in __sem_inc() 236 new = SEMCOUNT_INCREMENT(old); in __sem_inc() 239 (int)(new|shared), in __sem_inc()
|
/bionic/libstdc++/ |
D | Android.mk | 17 src/new.cpp \ 33 src/new.cpp \
|
/bionic/libc/arch-arm/bionic/ |
D | clone.S | 32 @ insert the args onto the new stack 41 @ new sp is already in r1
|
/bionic/libc/kernel/common/linux/ |
D | cpumask.h | 70 #define cpu_remap(oldbit, old, new) __cpu_remap((oldbit), &(old), &(new), NR_CPUS) argument 71 #define cpus_remap(dst, src, old, new) __cpus_remap(&(dst), &(src), &(old), &(new), NR_CPUS) argument
|
D | nodemask.h | 71 #define node_remap(oldbit, old, new) __node_remap((oldbit), &(old), &(new), MAX_NUMNODES) argument 72 #define nodes_remap(dst, src, old, new) __nodes_remap(&(dst), &(src), &(old), &(new), MAX_NUMNODE… argument
|
/bionic/libc/ |
D | README | 22 Adding new syscalls: 26 stubs from the list defined in the file SYSCALLS.TXT. You can thus add a new syscall 30 - add a new line describing your syscall, it should look like:
|
/bionic/linker/ |
D | README.TXT | 25 It should be updated each time a new system library is added to the 136 3/ Rebuild a new system image. 140 affect new processes being launched.
|
/bionic/libc/tzcode/ |
D | private.h | 242 char * icatalloc P((char * old, const char * new));
|
/bionic/libc/docs/ |
D | SYSV-IPC.TXT | 18 Killing processes automatically to make room for new ones is an
|
D | CHANGES.TXT | 6 - <android/api-level.h>: Added new header to define __ANDROID_API__ to 141 - <sys/queue.h>: Added new header (no implementation - macro templates). 275 - DNS: Support for DNS domain search lists through the new net.dns.search
|
/bionic/libc/stdio/ |
D | vfprintf.c | 1208 unsigned char *new = (unsigned char *)mmap(NULL, in __grow_type_table() local 1211 memmove(new, *typetable, *tablesize); in __grow_type_table() 1213 *typetable = new; in __grow_type_table()
|
/bionic/libc/kernel/ |
D | README.TXT | 85 - add a new item to the 'kernel_archs' list of supported architectures 93 then, add the new architecture-specific headers to original/asm-<arch>. 112 for any new kernel header you want to add, first run tools/find_headers.py to be
|