Home
last modified time | relevance | path

Searched refs:parts (Results 1 – 5 of 5) 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.h60 } parts; member
78 } parts; member
93 (ix0) = ew_u.parts.msw; \
94 (ix1) = ew_u.parts.lsw; \
111 (i) = gh_u.parts.msw; \
120 (i) = gl_u.parts.lsw; \
128 iw_u.parts.msw = (ix0); \
129 iw_u.parts.lsw = (ix1); \
147 sh_u.parts.msw = (v); \
157 sl_u.parts.lsw = (v); \
/bionic/tools/bionicbb/
D.gitignore22 parts/
/bionic/libc/
DAndroid.bp1443 // libc_pthread.a - pthreads parts that previously lived in
1559 // all the parts of libc that are safe to statically link.