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

12

/bionic/libc/kernel/uapi/asm-mips/asm/
H A Dposix_types.h27 long val[2]; member in struct:__anon88
/bionic/libc/kernel/uapi/linux/
H A Datm_he.h30 unsigned addr, val; member in struct:he_ioctl_reg
H A Dselinux_netlink.h45 __s32 val; member in struct:selnl_msg_setenforce
H A Dvirtio_balloon.h44 __u64 val; member in struct:virtio_balloon_stat
H A Dwil6210_uapi.h41 uint32_t val; member in struct:wil_memio
H A Dconnector.h51 __u32 val; member in struct:cb_id
H A Dppdev.h29 unsigned char val; member in struct:ppdev_frob_struct
H A Dsem.h56 int val; member in union:semun
/bionic/libc/upstream-openbsd/lib/libc/net/
H A Dinet_addr.c67 struct in_addr val; local
69 if (inet_aton(cp, &val))
70 return (val.s_addr);
84 in_addr_t val; local
99 val = 0; base = 10;
110 val = (val * base) + (c - '0');
115 val = (val << 4) |
130 *pp++ = val;
[all...]
H A Dinet_network.c44 in_addr_t val, base, n; local
50 val = 0; base = 10;
57 val = (val * base) + (c - '0');
62 val = (val << 4) + (c + 10 - (islower(c) ? 'a' : 'A'));
71 *pp++ = val, cp++;
76 *pp++ = val;
78 for (val = 0, i = 0; i < 4; i++) {
79 val <<
[all...]
H A Dinet_pton.c131 u_int val; local
142 val = 0;
151 val <<= 4;
152 val |= (pch - xdigits);
153 if (val > 0xffff)
171 *tp++ = (u_char) (val >> 8) & 0xff;
172 *tp++ = (u_char) val & 0xff;
175 val = 0;
190 *tp++ = (u_char) (val >> 8) & 0xff;
191 *tp++ = (u_char) val
[all...]
/bionic/libc/arch-arm64/denver64/bionic/
H A Dmemset.S49 #define val w1 define
69 ands A_lw, val, #255
/bionic/libc/arch-arm64/generic/bionic/
H A Dmemset.S53 #define val w1 define
77 ands A_lw, val, #255
/bionic/libc/include/
H A Dgetopt.h54 /* if not NULL, set *flag to val when option found */
57 int val; member in struct:option
/bionic/libc/kernel/uapi/linux/tc_ematch/
H A Dtc_em_cmp.h25 __u32 val; member in struct:tcf_em_cmp
/bionic/tests/
H A Dmalloc_test.cpp347 int val; local
350 ASSERT_EQ(tinyxml2::XML_SUCCESS, arena->QueryIntAttribute("nr", &val));
352 arena->FirstChildElement("allocated-large")->QueryIntText(&val));
354 arena->FirstChildElement("allocated-huge")->QueryIntText(&val));
356 arena->FirstChildElement("allocated-bins")->QueryIntText(&val));
358 arena->FirstChildElement("bins-total")->QueryIntText(&val));
363 ASSERT_EQ(tinyxml2::XML_SUCCESS, bin->QueryIntAttribute("nr", &val));
365 bin->FirstChildElement("allocated")->QueryIntText(&val));
367 bin->FirstChildElement("nmalloc")->QueryIntText(&val));
369 bin->FirstChildElement("ndalloc")->QueryIntText(&val));
[all...]
/bionic/libc/kernel/uapi/linux/tc_act/
H A Dtc_pedit.h36 __u32 val; member in struct:tc_pedit_key
/bionic/libc/bionic/
H A Dsemaphore.cpp72 #define SEMCOUNT_FROM_VALUE(val) (((val) << SEMCOUNT_VALUE_SHIFT) & SEMCOUNT_VALUE_MASK)
303 int val = SEMCOUNT_TO_VALUE(atomic_load(sem_count_ptr)); local
304 if (val < 0) {
305 val = 0;
308 *sval = val;
H A Dmalloc_debug_qemu.cpp400 * val - Event's value parameter.
402 static inline void notify_qemu(uint32_t code, uintptr_t val) { argument
404 *(volatile uintptr_t*)((uintptr_t)qtrace + ((code - 1024) << 2)) = val;
/bionic/libc/kernel/uapi/asm-generic/
H A Dposix_types.h85 int val[2]; member in struct:__anon76
/bionic/libc/upstream-openbsd/lib/libc/crypt/
H A Darc4random.c165 _rs_random_u32(uint32_t *val) argument
169 _rs_stir_if_needed(sizeof(*val));
170 if (rs->rs_have < sizeof(*val))
173 memcpy(val, keystream, sizeof(*val));
174 memset(keystream, 0, sizeof(*val));
175 rs->rs_have -= sizeof(*val);
181 uint32_t val; local
184 _rs_random_u32(&val);
186 return val;
[all...]
/bionic/libc/kernel/uapi/linux/dvb/
H A Dosd.h95 long val; member in struct:osd_cap_s
/bionic/libc/kernel/uapi/linux/netfilter/
H A Dxt_osf.h47 __u32 val; member in struct:xt_osf_wc
/bionic/libc/dns/resolv/
H A Dres_debug.c764 unsigned long val; local
770 val = mantissa * poweroften[exponent];
772 (void) snprintf(retbuf, sizeof(retbuf), "%lu.%.2lu", val/100, val%100);
/bionic/libc/kernel/uapi/drm/
H A Dvia_drm.h136 __u32 val; member in struct:_drm_via_futex

Completed in 571 milliseconds

12