OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LDBL_NBIT
(Results
1 - 18
of
18
) sorted by null
/ndk/sources/android/support/src/stdio/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 */
/ndk/sources/android/support/src/stdio/amd64/
_fpmath.h
48
#define
LDBL_NBIT
0
/ndk/sources/android/support/src/stdio/arm/
_fpmath.h
53
#define
LDBL_NBIT
0
/ndk/sources/android/support/src/stdio/arm64/
_fpmath.h
61
#define
LDBL_NBIT
0
/bionic/libm/
fpmath.h
80
#define
LDBL_NBIT
0
/ndk/sources/android/support/src/stdio/mips/
_fpmath.h
61
#define
LDBL_NBIT
0
/bionic/libm/upstream-freebsd/lib/msun/ld128/
invtrig.h
43
#define THRESH ((0xe666666666666666ULL>>(64-(MANH_SIZE-1)))|
LDBL_NBIT
)
Completed in 443 milliseconds