HomeSort by relevance Sort by last modified time
    Searched refs:manh (Results 1 - 25 of 38) sorted by null

1 2

  /ndk/sources/android/support/src/stdio/arm64/
_fpmath.h 38 unsigned long manh :48; member in struct:IEEEl2bits::__anon35606
44 unsigned long manh :48;
51 unsigned long manh :48; member in struct:IEEEl2bits::__anon35607
55 unsigned long manh :48;
71 (a)[2] = (uint32_t)(u).bits.manh; \
72 (a)[3] = (uint32_t)((u).bits.manh >> 32); \
  /ndk/sources/android/support/src/stdio/amd64/
_fpmath.h 37 unsigned long manh :48; member in struct:IEEEl2bits::__anon35603
43 unsigned long manh :48; member in struct:IEEEl2bits::__anon35604
58 (a)[2] = (uint32_t)(u).bits.manh; \
59 (a)[3] = (uint32_t)((u).bits.manh >> 32); \
  /ndk/sources/android/support/src/stdio/mips/
_fpmath.h 35 unsigned long manh :48; member in struct:IEEEl2bits::__anon35612
40 unsigned int manh :20;
48 unsigned long manh :48;
53 unsigned int manh :20;
72 (a)[2] = (uint32_t)(u).bits.manh; \
73 (a)[3] = (uint32_t)((u).bits.manh >> 32); \
81 (a)[1] = (uint32_t)(u).bits.manh; \
  /ndk/sources/android/support/src/stdio/arm/
_fpmath.h 38 unsigned int manh :20; member in struct:IEEEl2bits::__anon35605
47 unsigned int manh :20;
62 (a)[1] = (uint32_t)(u).bits.manh; \
  /ndk/sources/android/support/src/stdio/i386/
_fpmath.h 33 unsigned int manh :32; member in struct:IEEEl2bits::__anon35610
46 #define mask_nbit_l(u) ((u).bits.manh &= ~LDBL_NBIT)
53 (a)[1] = (uint32_t)(u).bits.manh; \
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_nextafterl.c 43 ((ux.bits.manh&~LDBL_NBIT)|ux.bits.manl) != 0) ||
45 ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl) != 0))
49 ux.bits.manh = 0; /* return +-minsubnormal */
57 if ((ux.bits.manh&~LDBL_NBIT)==0)
59 ux.bits.manh = (ux.bits.manh - 1) | (ux.bits.manh & LDBL_NBIT);
65 ux.bits.manh = (ux.bits.manh + 1) | (ux.bits.manh & LDBL_NBIT)
    [all...]
s_ilogbl.c 31 if ((u.bits.manl | u.bits.manh) == 0)
34 if (u.bits.manh == 0) {
40 for (b = 0; !(u.bits.manh & m); m >>= 1)
49 else if (u.bits.manl != 0 || u.bits.manh != 0)
s_ceill.c 35 uint64_t o = u.bits.manh; \
36 u.bits.manh += (c); \
37 if (u.bits.manh < o) \
43 uint64_t o = u.bits.manh; \
44 u.bits.manh += (c); \
45 if (u.bits.manh < o) { \
47 u.bits.manh |= 1llu << (LDBL_MANH_SIZE - 1); \
64 (u.bits.manh | u.bits.manl) != 0)
68 if (((u.bits.manh & m) | u.bits.manl) == 0)
79 u.bits.manh &= ~m
    [all...]
s_floorl.c 35 uint64_t o = u.bits.manh; \
36 u.bits.manh += (c); \
37 if (u.bits.manh < o) \
43 uint64_t o = u.bits.manh; \
44 u.bits.manh += (c); \
45 if (u.bits.manh < o) { \
47 u.bits.manh |= 1llu << (LDBL_MANH_SIZE - 1); \
64 (u.bits.manh | u.bits.manl) != 0)
68 if (((u.bits.manh & m) | u.bits.manl) == 0)
79 u.bits.manh &= ~m
    [all...]
s_logbl.c 32 if ((u.bits.manl | u.bits.manh) == 0) { /* x == 0 */
37 if (u.bits.manh == 0) {
43 for (b = 0; !(u.bits.manh & m); m >>= 1)
s_fmax.c 43 if (u[0].bits.exp == 2047 && (u[0].bits.manh | u[0].bits.manl) != 0)
45 if (u[1].bits.exp == 2047 && (u[1].bits.manh | u[1].bits.manl) != 0)
s_fmaxl.c 45 if (u[0].bits.exp == 32767 && (u[0].bits.manh | u[0].bits.manl) != 0)
47 if (u[1].bits.exp == 32767 && (u[1].bits.manh | u[1].bits.manl) != 0)
s_fmin.c 43 if (u[0].bits.exp == 2047 && (u[0].bits.manh | u[0].bits.manl) != 0)
45 if (u[1].bits.exp == 2047 && (u[1].bits.manh | u[1].bits.manl) != 0)
s_fminl.c 45 if (u[0].bits.exp == 32767 && (u[0].bits.manh | u[0].bits.manl) != 0)
47 if (u[1].bits.exp == 32767 && (u[1].bits.manh | u[1].bits.manl) != 0)
e_fmodl.c 78 if((uy.bits.exp|uy.bits.manh|uy.bits.manl)==0 || /* y=0 */
81 ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl)!=0)) /* or y is NaN */
85 (ux.bits.manh<=uy.bits.manh &&
86 (ux.bits.manh<uy.bits.manh ||
90 if(ux.bits.manh==uy.bits.manh && ux.bits.manl==uy.bits.manl) {
112 hx = SET_NBIT(ux.bits.manh);
113 hy = SET_NBIT(uy.bits.manh);
    [all...]
e_hypotl.c 28 h = uv.bits.manh; \
65 man_t manh, manl; local
68 GET_LDBL_MAN(manh,manl,a);
69 if (manh == LDBL_NBIT && manl == 0) w = a;
70 GET_LDBL_MAN(manh,manl,b);
71 if (hb >= ESW(MAX_EXP) && manh == LDBL_NBIT && manl == 0) w = b;
82 man_t manh, manl; local
83 GET_LDBL_MAN(manh,manl,b);
84 if((manh|manl)==0) return a;
s_truncl.c 53 if (((u.bits.manh & m) | u.bits.manl) == 0)
56 u.bits.manh &= ~m;
s_modfl.c 52 /* The number of fraction bits in manh, not counting the integer bit */
65 if (e < HIBITS) { /* Integer part is in manh. */
70 if ((GETFRAC(ux.bits.manh, HIBITS - 1 - e) |
76 ux.bits.manh >>= HIBITS - 1 - e;
77 ux.bits.manh <<= HIBITS - 1 - e;
e_atan2l.c 62 ((ux.bits.manh&~LDBL_NBIT)|ux.bits.manl)!=0) || /* x is NaN */
64 ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl)!=0)) /* y is NaN */
66 if (expsignx==BIAS && ((ux.bits.manh&~LDBL_NBIT)|ux.bits.manl)==0)
71 if(expty==0 && ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl)==0) {
80 if(exptx==0 && ((ux.bits.manh&~LDBL_NBIT)|ux.bits.manl)==0)
e_sqrtl.c 44 if (++u.bits.manh == 0) {
46 u.bits.manh |= LDBL_NBIT;
60 if (u.bits.manh-- == LDBL_NBIT) {
62 u.bits.manh |= LDBL_NBIT;
92 if ((u.bits.manh | u.bits.manl | u.bits.exp) == 0)
s_remquol.c 85 if((uy.bits.exp|uy.bits.manh|uy.bits.manl)==0 || /* y=0 */
88 ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl)!=0)) /* or y is NaN */
92 (ux.bits.manh<=uy.bits.manh &&
93 (ux.bits.manh<uy.bits.manh ||
98 if(ux.bits.manh==uy.bits.manh && ux.bits.manl==uy.bits.manl) {
121 hx = SET_NBIT(ux.bits.manh);
122 hy = SET_NBIT(uy.bits.manh);
    [all...]
s_frexpl.c 46 if ((u.bits.manl | u.bits.manh) == 0) {
  /bionic/libm/
fpmath.h 57 unsigned int manh :20; member in struct:IEEEd2bits::__anon1196
69 unsigned long manh :48; member in struct:IEEEl2bits::__anon1197
75 unsigned long manh :48; member in struct:IEEEl2bits::__anon1198
90 (a)[2] = (uint32_t)(u).bits.manh; \
91 (a)[3] = (uint32_t)((u).bits.manh >> 32); \
  /ndk/sources/android/support/src/stdio/
fpmath.h 68 unsigned int manh :20; member in struct:IEEEd2bits::__anon35609
74 unsigned int manh :20;
80 unsigned int manh :20;
  /bionic/libm/upstream-freebsd/lib/msun/ld128/
s_nanl.c 44 u.ieee.bits.manh |= 1ULL << 47; /* make it a quiet NaN */

Completed in 653 milliseconds

1 2