OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LDBL_NBIT
(Results
1 - 14
of
14
) sorted by null
/bionic/libm/i386/
_fpmath.h
45
#define
LDBL_NBIT
0x80000000
46
#define mask_nbit_l(u) ((u).bits.manh &= ~
LDBL_NBIT
)
/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))
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
);
66
if ((ux.bits.manh&~
LDBL_NBIT
)==0)
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
46
u.bits.manh |=
LDBL_NBIT
;
60
if (u.bits.manh-- ==
LDBL_NBIT
) {
62
u.bits.manh |=
LDBL_NBIT
;
s_nexttoward.c
46
((uy.bits.manh&~
LDBL_NBIT
)|uy.bits.manl) != 0))
s_nexttowardf.c
36
((uy.bits.manh&~
LDBL_NBIT
)|uy.bits.manl) != 0))
e_hypotl.c
69
if (manh ==
LDBL_NBIT
&& manl == 0) w = a;
71
if (hb >= ESW(MAX_EXP) && manh ==
LDBL_NBIT
&& manl == 0) w = b;
e_acosl.c
53
if(expt==BIAS && ((u.bits.manh&~
LDBL_NBIT
)|u.bits.manl)==0) {
e_asinl.c
43
if(expt==BIAS && ((u.bits.manh&~
LDBL_NBIT
)|u.bits.manl)==0)
s_atanl.c
46
((u.bits.manh&~
LDBL_NBIT
)|u.bits.manl)!=0)
e_fmodl.c
81
((uy.bits.manh&~
LDBL_NBIT
)|uy.bits.manl)!=0)) /* or y is NaN */
s_remquol.c
88
((uy.bits.manh&~
LDBL_NBIT
)|uy.bits.manl)!=0)) /* or y is NaN */
/bionic/libm/mips/
_fpmath.h
46
#define
LDBL_NBIT
0
/bionic/libm/arm/
_fpmath.h
57
#define
LDBL_NBIT
0
Completed in 220 milliseconds