Home
last modified time | relevance | path

Searched refs:shift (Results 1 – 7 of 7) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
Ds_rintl.c43 shift[2] = { variable
79 x += shift[sign]; in rintl()
80 x -= shift[sign]; in rintl()
/bionic/libc/arch-arm/bionic/
Dstrcmp.a15.S521 #define body(shift) \
522 mask = 0xffffffffU RSHIFT shift; \
528 if (__builtin_expect(t1 != w2 RSHIFT shift, 0)) \
530 w2 RSHIFT= shift; \
537 w2 RSHIFT= shift; \
541 t1 = w1 RSHIFT (32 - shift); \
542 w2 = (w2 LSHIFT (32 - shift)) RSHIFT (32 - shift); \
548 if (__builtin_expect(t1 != w2 LSHIFT (32 - shift), 0)) \
550 t1 = w1 >> (32 - shift); \
551 w2 = (w2 << (32 - shift)) RSHIFT (32 - shift); \
[all …]
/bionic/libc/kernel/common/linux/
Dtimex.h59 int shift; member
/bionic/libc/bionic/
Dpthread.c171 #define FIELD_MASK(shift,bits) (((1 << (bits))-1) << (shift)) argument
174 #define FIELD_TO_BITS(val,shift,bits) (((val) & ((1 << (bits))-1)) << (shift)) argument
177 #define FIELD_FROM_BITS(val,shift,bits) (((val) >> (shift)) & ((1 << (bits))-1)) argument
Dlibc_logging.cpp368 int shift = 64 - 8*bytelen; in out_vformat() local
369 value = (uint64_t)(((int64_t)(value << shift)) >> shift); in out_vformat()
/bionic/libc/netbsd/nameser/
Dns_parse.c75 return((u_int32_t)((handle)._flags & _ns_flagdata[flag].mask) >> _ns_flagdata[flag].shift); in ns_msg_getflag()
/bionic/libc/private/
Darpa_nameser.h120 struct _ns_flagdata { int mask, shift; }; member