/bionic/libc/kernel/arch-x86/asm/ |
D | cmpxchg_32.h | 31 #define cmpxchg(ptr,o,n) ({ __typeof__(*(ptr)) __ret; if (likely(boot_cpu_data.x86 > 3)) __r… argument 32 #define cmpxchg_local(ptr,o,n) ({ __typeof__(*(ptr)) __ret; if (likely(boot_cpu_data.x86 > 3))… argument 34 #define cmpxchg64(ptr,o,n) ((__typeof__(*(ptr)))__cmpxchg64((ptr),(unsigned long long)(o), (unsig… argument 35 #define cmpxchg64_local(ptr,o,n) ((__typeof__(*(ptr)))__cmpxchg64_local((ptr),(unsigned long long)… argument
|
D | local_32.h | 36 #define local_cmpxchg(l, o, n) (cmpxchg_local(&((l)->a.counter), (o), (n))) argument
|
/bionic/libc/upstream-netbsd/libc/regex/ |
D | regexec.c | 122 #define INIT(o, n) ((o) = (unsigned long)1 << (n)) in __weak_alias() argument 123 #define INC(o) ((o) <<= 1) in __weak_alias() argument 124 #define ISSTATEIN(v, o) (((v) & (o)) != 0) in __weak_alias() argument 174 #define INIT(o, n) ((o) = (int)(n)) argument 175 #define INC(o) ((o)++) argument 176 #define ISSTATEIN(v, o) ((v)[o]) argument
|
/bionic/libc/kernel/arch-mips/asm/ |
D | cmpxchg.h | 29 #define cmpxchg64(ptr, o, n) ({ BUILD_BUG_ON(sizeof(*(ptr)) != 8); cmpxchg((ptr), (o), (n)); … argument 31 #define cmpxchg64_local(ptr, o, n) __cmpxchg64_local_generic((ptr), (o), (n)) argument
|
D | atomic.h | 32 #define atomic_cmpxchg(v, o, n) (cmpxchg(&((v)->counter), (o), (n))) argument
|
D | local.h | 41 #define local_cmpxchg(l, o, n) ((long)cmpxchg_local(&((l)->a.counter), (o), (n))) argument
|
/bionic/libc/upstream-freebsd/lib/libc/stdio/ |
D | flags.c | 54 int ret, m, o; in __sflags() local
|
/bionic/libc/upstream-freebsd/ |
D | libc_private.h | 26 #define ORIENT(fp, o) /* Only needed for wide-character stream support. */ argument
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
D | s_floorl.c | 91 uint64_t o = u.bits.manl; in floorl() local
|
D | s_ceill.c | 91 uint64_t o = u.bits.manl; in ceill() local
|
/bionic/libc/stdio/ |
D | fseek.c | 189 int o = target - curoff; in fseeko() local
|
/bionic/libc/netbsd/net/ |
D | reentrant.h | 219 #define thr_once(o, f) __libc_thr_once((o), (f)) argument 220 #define thr_sigsetmask(f, n, o) __libc_thr_sigsetmask((f), (n), (o)) argument 227 #define thr_setcancelstate(n, o) __libc_thr_setcancelstate((n),(o)) argument
|
/bionic/libc/kernel/arch-mips/asm/xtalk/ |
D | xtalk.h | 42 #define XIO_PACK(p, o) ((((uint64_t)(p))<<XIO_PORT_SHIFT) | ((o)&XIO_ADDR_BITS)) argument
|
/bionic/libc/kernel/common/linux/ |
D | ip.h | 47 #define IPOPT_COPIED(o) ((o)&IPOPT_COPY) argument 49 #define IPOPT_CLASS(o) ((o)&IPOPT_CLASS_MASK) argument 50 #define IPOPT_NUMBER(o) ((o)&IPOPT_NUMBER_MASK) argument
|
D | ext2_fs.h | 236 #define clear_opt(o, opt) o &= ~EXT2_MOUNT_##opt argument 237 #define set_opt(o, opt) o |= EXT2_MOUNT_##opt argument
|
D | ext3_fs.h | 292 #define clear_opt(o, opt) o &= ~EXT3_MOUNT_##opt argument 294 #define set_opt(o, opt) o |= EXT3_MOUNT_##opt argument
|
/bionic/libc/include/netinet/ |
D | ip.h | 118 #define IPOPT_COPIED(o) ((o)&0x80) argument 119 #define IPOPT_CLASS(o) ((o)&0x60) argument 120 #define IPOPT_NUMBER(o) ((o)&0x1f) argument
|
D | ip6.h | 165 #define IP6OPT_TYPE(o) ((o) & 0xC0) argument
|
/bionic/libc/bionic/ |
D | libc_logging.cpp | 211 static void SendRepeat(Out& o, char ch, int count) { in SendRepeat() 228 static void out_vformat(Out& o, const char* format, va_list args) { in out_vformat()
|