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/upstream-netbsd/libc/isc/
Dev_streams.c71 evStream *new; in evWrite() local
74 OKNEW(new); in evWrite()
75 new->func = func; in evWrite()
76 new->uap = uap; in evWrite()
77 new->fd = fd; in evWrite()
78 new->flags = 0; in evWrite()
79 if (evSelectFD(opaqueCtx, fd, EV_WRITE, writable, new, &new->file) < 0) in evWrite()
81 if (copyvec(new, iov, iocnt) < 0) in evWrite()
83 new->prevDone = NULL; in evWrite()
84 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 \
34 src/new.cpp \
/bionic/libc/upstream-freebsd/
DREADME.txt2 files directly. Make fixes upstream and then pull down the new version of
/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/tests/
Dbenchmark.h61 (new ::testing::Benchmark(#f, f))
/bionic/libc/upstream-dlmalloc/
DREADME.txt3 upstream and then pull down the new version of the file.
/bionic/libc/upstream-netbsd/
DREADME.txt2 files directly. Make fixes upstream and then pull down the new version of
/bionic/libc/arch-arm/bionic/
Dclone.S35 # Copy the args onto the new stack.
/bionic/libc/tzcode/
Dprivate.h242 char * icatalloc P((char * old, const char * new));
/bionic/libc/stdio/
Dvfprintf.c1209 unsigned char *new = (unsigned char *)mmap(NULL, in __grow_type_table() local
1212 memmove(new, *typetable, *tablesize); in __grow_type_table()
1214 *typetable = new; in __grow_type_table()
/bionic/libc/kernel/
DREADME.TXT78 - add a new item to the 'kernel_archs' list of supported architectures
86 then, add the new architecture-specific headers to original/asm-<arch>.
105 for any new kernel header you want to add, first run tools/find_headers.py to be