Searched defs:parts (Results 1 - 3 of 3) sorted by relevance

/bionic/libc/bionic/
H A Darpa_inet.cpp38 unsigned long parts[4]; local
43 parts[i] = strtoul(cp, &end, 0);
52 if (parts[0] > 0xffffffff) return 0;
53 result = parts[0];
56 if (parts[0] > 0xff || parts[1] > 0xffffff) return 0;
57 result = (parts[0] << 24) | parts[1];
60 if (parts[0] > 0xff || parts[
[all...]
/bionic/libc/upstream-freebsd/lib/libc/gen/
H A Dldexp.c32 } parts; member in union:__anon1010
46 } parts; member in union:__anon1012
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/
H A Dmath_private.h60 } parts; member in union:__anon1064
78 } parts; member in union:__anon1067
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
[all...]

Completed in 2865 milliseconds