Searched defs:val (Results 1 - 22 of 22) sorted by relevance

/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/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:__anon232
/bionic/libc/upstream-netbsd/common/lib/libc/inet/
H A Dinet_addr.c111 struct in_addr val; local
113 if (inet_aton(cp, &val))
114 return (val.s_addr);
127 uint32_t val; local
144 val = 0; base = 10; digit = 0;
158 val = (val * base) + (c - '0');
163 val = (val << 4) |
177 if (pp >= parts + 3 || val >
[all...]
/bionic/libc/kernel/common/linux/
H A Dswap.h57 unsigned long val; member in struct:__anon511
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 Dpkt_cls.h200 __be32 val; member in struct:tc_u32_key
222 __u32 val; member in struct:tc_u32_mark
H A Dvideodev2.h2062 __u64 val; member in struct:v4l2_dbg_register
/bionic/libc/upstream-netbsd/libc/inet/
H A Dinet_pton.c102 u_int32_t val; local
121 val = 0; base = 10;
137 val = (val * base) + digit;
143 val = (val << 4) | digit;
158 *pp++ = val;
185 if (parts[0] > 0xff || val > 0xffffff)
187 val |= parts[0] << 24;
191 if ((parts[0] | parts[1]) > 0xff || val >
230 u_int val; local
[all...]
/bionic/linker/
H A Dlinker_environ.cpp180 const char* val = env_match(p[0], name); local
181 if (val != NULL) {
182 if (val[0] == '\0') {
185 return val;
/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 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;
H A Dmalloc_debug_qemu.cpp395 * val - Event's value parameter.
397 static inline void notify_qemu(uint32_t code, uint32_t val) { argument
399 *(volatile uint32_t*)((uint32_t)qtrace + ((code - 1024) << 2)) = val;
H A Dpthread.c49 int __futex_wake_ex(volatile void *ftx, int pshared, int val) argument
51 return __futex_syscall3(ftx, pshared ? FUTEX_WAKE : FUTEX_WAKE_PRIVATE, val);
54 int __futex_wait_ex(volatile void *ftx, int pshared, int val, const struct timespec *timeout) argument
56 return __futex_syscall4(ftx, pshared ? FUTEX_WAIT : FUTEX_WAIT_PRIVATE, val, timeout);
184 #define FIELD_TO_BITS(val,shift,bits) (((val) & ((1 << (bits))-1)) << (shift))
187 #define FIELD_FROM_BITS(val,shift,bits) (((val) >> (shift)) & ((1 << (bits))-1))
/bionic/libc/kernel/arch-arm/asm/
H A Dposix_types.h59 int val[2]; member in struct:__anon97
/bionic/libc/kernel/arch-mips/asm/
H A Dposix_types.h75 long val[2]; member in struct:__anon130
79 int val[2]; member in struct:__anon130
/bionic/libc/arch-mips/include/machine/
H A D_types.h127 __register_t val[14]; member in struct:label_t
/bionic/libc/kernel/common/media/
H A Dsoc2030.h101 __u16 val; member in struct:soc2030_regs
/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/kernel/common/sound/
H A Dasound.h677 unsigned int val; member in struct:snd_timer_tread
/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...]

Completed in 766 milliseconds