Searched defs:val (Results 1 - 25 of 25) sorted by path

/bionic/libc/arch-mips/include/machine/
H A D_types.h135 __register_t val[14]; member in struct:label_t
/bionic/libc/bionic/
H A Darc4random.c177 u_int8_t val; local
182 val = arc4_getbyte();
184 return val;
190 u_int32_t val; local
191 val = arc4_getbyte() << 24;
192 val |= arc4_getbyte() << 16;
193 val |= arc4_getbyte() << 8;
194 val |= arc4_getbyte();
195 return val;
219 u_int32_t val; local
[all...]
H A Ddlmalloc.c38 intptr_t val = (intptr_t) ptr; local
44 int digit = val & 15;
46 val >>= 4;
H A Dmalloc_debug_qemu.cpp399 * val - Event's value parameter.
401 static inline void notify_qemu(uint32_t code, uint32_t val) { argument
403 *(volatile uint32_t*)((uint32_t)qtrace + ((code - 1024) << 2)) = val;
H A Dpthread.c63 int __futex_wake_ex(volatile void *ftx, int pshared, int val) argument
65 return __futex_syscall3(ftx, pshared ? FUTEX_WAKE : FUTEX_WAKE_PRIVATE, val);
68 int __futex_wait_ex(volatile void *ftx, int pshared, int val, const struct timespec *timeout) argument
70 return __futex_syscall4(ftx, pshared ? FUTEX_WAIT : FUTEX_WAIT_PRIVATE, val, timeout);
773 #define FIELD_TO_BITS(val,shift,bits) (((val) & ((1 << (bits))-1)) << (shift))
776 #define FIELD_FROM_BITS(val,shift,bits) (((val) >> (shift)) & ((1 << (bits))-1))
H A Dsemaphore.c72 #define SEMCOUNT_FROM_VALUE(val) (((val) << SEMCOUNT_VALUE_SHIFT) & SEMCOUNT_VALUE_MASK)
389 int val; local
396 val = SEMCOUNT_TO_VALUE(sem->count);
397 if (val < 0)
398 val = 0;
400 *sval = val;
/bionic/libc/include/
H A Dgetopt.h60 /* if not NULL, set *flag to val when option found */
63 int val; member in struct:option
/bionic/libc/inet/
H A Dinet_addr.c67 struct in_addr val; local
69 if (inet_aton(cp, &val))
70 return (val.s_addr);
H A Dinet_aton.c70 in_addr_t val; local
85 val = 0; base = 10;
95 val = (val * base) + (c - '0');
98 val = (val << 4) |
113 *pp++ = val;
137 if ((val > 0xffffff) || (parts[0] > 0xff))
139 val |= parts[0] << 24;
143 if ((val >
[all...]
H A Dinet_pton.c108 u_int32_t val; local
127 val = 0; base = 10;
143 val = (val * base) + digit;
149 val = (val << 4) | digit;
164 *pp++ = val;
191 if (parts[0] > 0xff || val > 0xffffff)
193 val |= parts[0] << 24;
197 if ((parts[0] | parts[1]) > 0xff || val >
236 u_int val; local
[all...]
/bionic/libc/kernel/arch-arm/asm/
H A Dposix_types.h59 int val[2]; member in struct:__anon65
/bionic/libc/kernel/arch-mips/asm/
H A Dposix_types.h75 long val[2]; member in struct:__anon98
79 int val[2]; member in struct:__anon98
/bionic/libc/kernel/arch-x86/asm/
H A Dbyteorder.h36 static __inline__ __attribute_const__ __u64 ___arch__swab64(__u64 val) argument
44 v.u = val;
H A Dposix_types_32.h59 int val[2]; member in struct:__anon200
/bionic/libc/kernel/common/linux/mfd/
H A Dmsm-adie-codec.h39 #define ADIE_CODEC_PACK_ENTRY(reg, mask, val) ((val)|(mask << 8)|(reg << 16))
40 #define ADIE_CODEC_UNPACK_ENTRY(packed, reg, mask, val) do { ((reg) = ((packed >> 16) & (0xff))); ((mask) = ((packed >> 8) & (0xff))); ((val) = ((packed) & (0xff))); } while (0);
64 u8 val; member in struct:adie_codec_register
/bionic/libc/kernel/common/linux/
H A Dpkt_cls.h200 __be32 val; member in struct:tc_u32_key
222 __u32 val; member in struct:tc_u32_mark
H A Dppdev.h29 unsigned char val; member in struct:ppdev_frob_struct
H A Dsem.h56 int val; member in union:semun
H A Dswap.h57 unsigned long val; member in struct:__anon497
H A Dvideodev2.h2062 __u64 val; member in struct:v4l2_dbg_register
/bionic/libc/kernel/common/media/
H A Dsoc2030.h101 __u16 val; member in struct:soc2030_regs
/bionic/libc/kernel/common/sound/
H A Dasound.h677 unsigned int val; member in struct:snd_timer_tread
/bionic/libc/netbsd/resolv/
H A Dres_debug.c711 unsigned long val; local
717 val = mantissa * poweroften[exponent];
719 (void) sprintf(retbuf, "%lu.%.2lu", val/100, val%100);
/bionic/libc/upstream-dlmalloc/
H A Dmalloc.c1835 int val = 1; local
1839 : "r" (val), "m" (*(sl)), "0"(cmp)
3207 size_t val; local
3209 val = (value == -1)? MAX_SIZE_T : (size_t)value;
3212 mparams.trim_threshold = val;
3215 if (val >= mparams.page_size && ((val & (val-1)) == 0)) {
3216 mparams.granularity = val;
3222 mparams.mmap_threshold = val;
[all...]
/bionic/linker/
H A Dlinker_environ.c130 char* val = env_match(readp[0], name); local
131 if (val != NULL) {
133 if (val[0] == '\0')
134 val = NULL;
135 return val;

Completed in 273 milliseconds