Searched refs:manh (Results 1 - 25 of 47) sorted by relevance

12

/freebsd-11-stable/lib/libc/sparc64/
H A D_fpmath.h35 unsigned long manh :48; member in struct:IEEEl2bits::__anon6740
40 unsigned long manh :48; member in struct:IEEEl2bits::__anon6741
55 (a)[2] = (uint32_t)(u).bits.manh; \
56 (a)[3] = (uint32_t)((u).bits.manh >> 32); \
/freebsd-11-stable/lib/libc/aarch64/
H A D_fpmath.h34 unsigned long manh :48; member in struct:IEEEl2bits::__anon6579
41 unsigned long manh :48; member in struct:IEEEl2bits::__anon6580
56 (a)[2] = (uint32_t)(u).bits.manh; \
57 (a)[3] = (uint32_t)((u).bits.manh >> 32); \
/freebsd-11-stable/lib/libc/powerpc/
H A D_fpmath.h34 unsigned int manh :20; member in struct:IEEEl2bits::__anon6691
40 unsigned int manh :20;
55 (a)[1] = (uint32_t)(u).bits.manh; \
/freebsd-11-stable/lib/libc/powerpc64/
H A D_fpmath.h34 unsigned int manh :20; member in struct:IEEEl2bits::__anon6698
40 unsigned int manh :20;
55 (a)[1] = (uint32_t)(u).bits.manh; \
/freebsd-11-stable/lib/libc/mips/
H A D_fpmath.h34 unsigned int manh :20; member in struct:IEEEl2bits::__anon6672
40 unsigned int manh :20;
55 (a)[1] = (uint32_t)(u).bits.manh; \
/freebsd-11-stable/lib/libc/riscv/
H A D_fpmath.h34 unsigned long manh :48; member in struct:IEEEl2bits::__anon6711
40 unsigned long manh :48; member in struct:IEEEl2bits::__anon6712
54 (a)[1] = (uint32_t)(u).bits.manh; \
68 (a)[2] = (uint32_t)(u).bits.manh; \
69 (a)[3] = (uint32_t)((u).bits.manh >> 32); \
/freebsd-11-stable/lib/libc/amd64/
H A D_fpmath.h33 unsigned int manh :32; member in struct:IEEEl2bits::__anon6581
47 #define mask_nbit_l(u) ((u).bits.manh &= ~LDBL_NBIT)
54 (a)[1] = (uint32_t)(u).bits.manh; \
/freebsd-11-stable/lib/libc/i386/
H A D_fpmath.h33 unsigned int manh :32; member in struct:IEEEl2bits::__anon6614
46 #define mask_nbit_l(u) ((u).bits.manh &= ~LDBL_NBIT)
53 (a)[1] = (uint32_t)(u).bits.manh; \
/freebsd-11-stable/lib/msun/src/
H A Ds_nextafterl.c43 ((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
[all...]
H A Ds_ilogbl.c31 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)
H A Ds_ceill.c35 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
[all...]
H A Ds_floorl.c35 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
[all...]
H A Ds_logbl.c31 if ((u.bits.manl | u.bits.manh) == 0) { /* x == 0 */
36 if (u.bits.manh == 0) {
42 for (b = 0; !(u.bits.manh & m); m >>= 1)
H A Ds_fmaxl.c45 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)
H A Ds_fminl.c45 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)
H A De_fmodl.c78 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...]
H A De_hypotl.c28 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;
/freebsd-11-stable/lib/libc/arm/
H A D_fpmath.h42 unsigned int manh :20; member in struct:IEEEl2bits::__anon6583
51 unsigned int manh :20;
66 (a)[1] = (uint32_t)(u).bits.manh; \
/freebsd-11-stable/lib/libc/include/
H A Dfpmath.h65 unsigned int manh :20; member in struct:IEEEd2bits::__anon4658
74 unsigned int manh :20;
/freebsd-11-stable/lib/libc/gen/
H A Dfpclassify.c65 if ((u.bits.manl | u.bits.manh) == 0)
70 if ((u.bits.manl | u.bits.manh) == 0)
84 if ((u.bits.manl | u.bits.manh) == 0)
91 if ((u.bits.manl | u.bits.manh) == 0)
97 if ((u.bits.manl | u.bits.manh) == 0)
H A Disinf.c48 return (u.bits.exp == 2047 && u.bits.manl == 0 && u.bits.manh == 0);
68 return (u.bits.exp == 2047 && u.bits.manl == 0 && u.bits.manh == 0);
70 return (u.bits.exp == 32767 && u.bits.manl == 0 && u.bits.manh == 0);
/freebsd-11-stable/lib/libc/gdtoa/
H A D_hdtoa.c78 uint32_t manh, manl; local
124 manh = u.bits.manh;
128 *s = xdigs[(manh >> (DBL_MANH_SIZE - 4)) & 0xf];
129 manh = (manh << 4) | (manl >> (DBL_MANL_SIZE - 4));
H A D_hldtoa.c81 manh_t manh; local
145 manh = u.bits.manh;
149 *s = xdigs[(manh >> (MANH_SIZE - 4)) & 0xf];
150 manh = (manh << 4) | (manl >> (LDBL_MANL_SIZE - 4));
/freebsd-11-stable/lib/msun/ld128/
H A Ds_nanl.c44 u.ieee.bits.manh |= 1ULL << 47; /* make it a quiet NaN */
/freebsd-11-stable/lib/msun/ld80/
H A Ds_nanl.c44 u.ieee.bits.manh |= 0xc0000000; /* make it a quiet NaN */

Completed in 145 milliseconds

12