Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Darpa_inet.cpp38 unsigned long parts[4]; in inet_aton() local
43 parts[i] = strtoul(cp, &end, 0); in inet_aton()
52 if (parts[0] > 0xffffffff) return 0; in inet_aton()
53 result = parts[0]; in inet_aton()
56 if (parts[0] > 0xff || parts[1] > 0xffffff) return 0; in inet_aton()
57 result = (parts[0] << 24) | parts[1]; in inet_aton()
60 if (parts[0] > 0xff || parts[1] > 0xff || parts[2] > 0xffff) return 0; in inet_aton()
61 result = (parts[0] << 24) | (parts[1] << 16) | parts[2]; in inet_aton()
64 if (parts[0] > 0xff || parts[1] > 0xff || parts[2] > 0xff || parts[3] > 0xff) return 0; in inet_aton()
65 result = (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8) | parts[3]; in inet_aton()
/bionic/libc/upstream-freebsd/lib/libc/gen/
Dldexp.c32 } parts; member
46 } parts; member
57 (ix0) = ew_u.parts.msw; \
58 (ix1) = ew_u.parts.lsw; \
67 (i) = gh_u.parts.msw; \
76 sh_u.parts.msw = (v); \
/bionic/libm/upstream-freebsd/lib/msun/src/
Dmath_private.h101 } parts; member
119 } parts; member
134 (ix0) = ew_u.parts.msw; \
135 (ix1) = ew_u.parts.lsw; \
152 (i) = gh_u.parts.msw; \
161 (i) = gl_u.parts.lsw; \
169 iw_u.parts.msw = (ix0); \
170 iw_u.parts.lsw = (ix1); \
188 sh_u.parts.msw = (v); \
198 sl_u.parts.lsw = (v); \
/bionic/tools/bionicbb/
D.gitignore22 parts/
/bionic/linker/
Dld.config.format.md8 The configuration consists of 2 parts
/bionic/libc/
DAndroid.bp1194 // libc_pthread.a - pthreads parts that previously lived in
1292 // all the parts of libc that are safe to statically link.
/bionic/docs/
Delf-tls.md598  ** and should not be used/included by user-serviceable parts of