Home
last modified time | relevance | path

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

/bionic/libc/kernel/arch-x86/asm/
Dcmpxchg_32.h27o,n) ({ __typeof__(*(ptr)) __ret; if (likely(boot_cpu_data.x86 > 3)) __ret = __cmpxchg((ptr… argument
28o,n) ({ __typeof__(*(ptr)) __ret; if (likely(boot_cpu_data.x86 > 3)) __ret = __cmpxchg_loca… argument
29 #define cmpxchg64(ptr,o,n) ((__typeof__(*(ptr)))__cmpxchg64((ptr),(unsigned long long)(o), (unsig… argument
30 #define cmpxchg64_local(ptr,o,n) ((__typeof__(*(ptr)))__cmpxchg64_local((ptr),(unsigned long long)… argument
Dlocal_32.h31 #define local_cmpxchg(l, o, n) (cmpxchg_local(&((l)->a.counter), (o), (n))) argument
/bionic/libc/stdio/
Dflags.c48 int ret, m, o; in __sflags() local
55 o = 0; in __sflags()
61 o = O_CREAT | O_TRUNC; in __sflags()
67 o = O_CREAT | O_APPEND; in __sflags()
80 *optr = m | o; in __sflags()
Dfseek.c185 int o = target - curoff; in fseeko() local
187 fp->_p = fp->_bf._base + o; in fseeko()
188 fp->_r = n - o; in fseeko()
/bionic/libc/regex/
Dregexec.c69 #define INIT(o, n) ((o) = (unsigned long)1 << (n)) argument
70 #define INC(o) ((o) <<= 1) argument
71 #define ISSTATEIN(v, o) (((v) & (o)) != 0) argument
118 #define INIT(o, n) ((o) = (n)) argument
119 #define INC(o) ((o)++) argument
120 #define ISSTATEIN(v, o) ((v)[o]) argument
/bionic/libc/kernel/common/linux/
Dip.h39 #define IPOPT_COPIED(o) ((o)&IPOPT_COPY) argument
40 #define IPOPT_CLASS(o) ((o)&IPOPT_CLASS_MASK) argument
41 #define IPOPT_NUMBER(o) ((o)&IPOPT_NUMBER_MASK) argument
Dext2_fs.h214 #define clear_opt(o, opt) o &= ~EXT2_MOUNT_##opt argument
215 #define set_opt(o, opt) o |= EXT2_MOUNT_##opt argument
Dext3_fs.h266 #define clear_opt(o, opt) o &= ~EXT3_MOUNT_##opt argument
267 #define set_opt(o, opt) o |= EXT3_MOUNT_##opt argument
/bionic/libm/src/
Ds_ceill.c36 uint64_t o = u.bits.manh; \
38 if (u.bits.manh < o) \
44 uint64_t o = u.bits.manh; \
46 if (u.bits.manh < o) { \
92 uint64_t o = u.bits.manl; in ceill() local
94 if (u.bits.manl < o) /* got a carry */ in ceill()
Ds_floorl.c36 uint64_t o = u.bits.manh; \
38 if (u.bits.manh < o) \
44 uint64_t o = u.bits.manh; \
46 if (u.bits.manh < o) { \
92 uint64_t o = u.bits.manl; in floorl() local
94 if (u.bits.manl < o) /* got a carry */ in floorl()
/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
/bionic/libc/netbsd/net/
Dreentrant.h218 #define thr_once(o, f) __libc_thr_once((o), (f)) argument
219 #define thr_sigsetmask(f, n, o) __libc_thr_sigsetmask((f), (n), (o)) argument
226 #define thr_setcancelstate(n, o) __libc_thr_setcancelstate((n),(o)) argument
260 #define thr_once(o, f)
261 #define thr_sigsetmask(f, n, o)
/bionic/libdl/
DAndroid.mk41 GEN_SOBEGIN := $(TARGET_OUT_STATIC_LIBRARIES)/sobegin.o
46 GEN_SOEND := $(TARGET_OUT_STATIC_LIBRARIES)/soend.o
/bionic/linker/
Dlinker_format.c52 out_send(Out *o, const void *data, size_t len) in out_send() argument
54 o->send(o->opaque, data, (int)len); in out_send()
58 out_send_repeat(Out *o, char ch, int count) in out_send_repeat() argument
69 o->send(o->opaque, pad, avail); in out_send_repeat()
76 out_vformat(Out *o, const char *format, va_list args);
428 out_vformat(Out *o, const char *format, va_list args) in out_vformat() argument
455 out_send(o, format+nn, mm-nn); in out_vformat()
471 out_send(o, &c, 1); in out_vformat()
598 out_send_repeat(o, padChar, width - slen); in out_vformat()
601 out_send(o, str, slen); in out_vformat()
[all …]
/bionic/libc/kernel/arch-sh/asm/
Dsystem.h46 #define cmpxchg(ptr,o,n) ({ __typeof__(*(ptr)) _o_ = (o); __typeof__(*(ptr)) _n_ = (n); (__… argument
/bionic/libc/kernel/tools/
Dutils.py380 o = commands.getoutput( "p4 add " + files )
381 D2( o )
387 o = commands.getoutput( "p4 edit " + files )
388 D2( o )
396 o = commands.getoutput( "p4 delete " + files )
397 D2( o )
/bionic/libc/
DAndroid.mk543 GEN := $(TARGET_OUT_STATIC_LIBRARIES)/crtbegin_so.o
549 GEN := $(TARGET_OUT_STATIC_LIBRARIES)/crtend_so.o
557 GEN := $(TARGET_OUT_STATIC_LIBRARIES)/crtbegin_static.o
563 GEN := $(TARGET_OUT_STATIC_LIBRARIES)/crtbegin_dynamic.o
572 GEN := $(TARGET_OUT_STATIC_LIBRARIES)/crtend_android.o
DJamfile251 $(CC) -c -o $(1) $(CFLAGS) -I$(INCLUDES) -D$(DEFINES) $(2)
344 objname = <$(arch)>$(name).o ;