Home
last modified time | relevance | path

Searched refs:new (Results 1 – 18 of 18) sorted by relevance

/bionic/libc/kernel/arch-mips/asm/
Dcmpxchg.h24new) ({ __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
Datomic.h34 #define atomic_xchg(v, new) (xchg(&((v)->counter), (new))) argument
Dmipsregs.h719 …nsigned int change, unsigned int new) { unsigned int res; res = read_c0_##name(); res &= …
/bionic/libc/netbsd/isc/
Dev_streams.c65 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/
Dnew14 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/
Datomic_32.h30 #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/
Dsemaphore.c166 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++/
DAndroid.mk17 src/new.cpp \
33 src/new.cpp \
/bionic/libc/arch-arm/bionic/
Dclone.S32 @ insert the args onto the new stack
41 @ new sp is already in r1
/bionic/libc/kernel/common/linux/
Dcpumask.h70 #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
Dnodemask.h71 #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/
DREADME22 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/
DREADME.TXT25 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/
Dprivate.h242 char * icatalloc P((char * old, const char * new));
/bionic/libc/docs/
DSYSV-IPC.TXT18 Killing processes automatically to make room for new ones is an
DCHANGES.TXT6 - <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/
Dvfprintf.c1208 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/
DREADME.TXT85 - 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