Home
last modified time | relevance | path

Searched defs:o (Results 1 – 19 of 19) sorted by relevance

/bionic/libc/kernel/arch-x86/asm/
Dcmpxchg_32.h31 #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
Dlocal_32.h36 #define local_cmpxchg(l, o, n) (cmpxchg_local(&((l)->a.counter), (o), (n))) argument
/bionic/libc/upstream-netbsd/libc/regex/
Dregexec.c122 #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/
Dcmpxchg.h29 #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
Datomic.h32 #define atomic_cmpxchg(v, o, n) (cmpxchg(&((v)->counter), (o), (n))) argument
Dlocal.h41 #define local_cmpxchg(l, o, n) ((long)cmpxchg_local(&((l)->a.counter), (o), (n))) argument
/bionic/libc/upstream-freebsd/lib/libc/stdio/
Dflags.c54 int ret, m, o; in __sflags() local
/bionic/libc/upstream-freebsd/
Dlibc_private.h26 #define ORIENT(fp, o) /* Only needed for wide-character stream support. */ argument
/bionic/libm/upstream-freebsd/lib/msun/src/
Ds_floorl.c91 uint64_t o = u.bits.manl; in floorl() local
Ds_ceill.c91 uint64_t o = u.bits.manl; in ceill() local
/bionic/libc/stdio/
Dfseek.c189 int o = target - curoff; in fseeko() local
/bionic/libc/netbsd/net/
Dreentrant.h219 #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/
Dxtalk.h42 #define XIO_PACK(p, o) ((((uint64_t)(p))<<XIO_PORT_SHIFT) | ((o)&XIO_ADDR_BITS)) argument
/bionic/libc/kernel/common/linux/
Dip.h47 #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
Dext2_fs.h236 #define clear_opt(o, opt) o &= ~EXT2_MOUNT_##opt argument
237 #define set_opt(o, opt) o |= EXT2_MOUNT_##opt argument
Dext3_fs.h292 #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/
Dip.h118 #define IPOPT_COPIED(o) ((o)&0x80) argument
119 #define IPOPT_CLASS(o) ((o)&0x60) argument
120 #define IPOPT_NUMBER(o) ((o)&0x1f) argument
Dip6.h165 #define IP6OPT_TYPE(o) ((o) & 0xC0) argument
/bionic/libc/bionic/
Dlibc_logging.cpp211 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()