OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:manh
(Results
1 - 25
of
41
) sorted by null
1
2
/bionic/libm/src/
s_nextafterl.c
45
((ux.bits.
manh
&~LDBL_NBIT)|ux.bits.manl) != 0) ||
47
((uy.bits.
manh
&~LDBL_NBIT)|uy.bits.manl) != 0))
51
ux.bits.
manh
= 0; /* return +-minsubnormal */
59
if ((ux.bits.
manh
&~LDBL_NBIT)==0)
61
ux.bits.
manh
= (ux.bits.
manh
- 1) | (ux.bits.
manh
& LDBL_NBIT);
67
ux.bits.
manh
= (ux.bits.
manh
+ 1) | (ux.bits.
manh
& LDBL_NBIT)
[
all
...]
s_ceill.c
36
uint64_t o = u.bits.
manh
; \
37
u.bits.
manh
+= (c); \
38
if (u.bits.
manh
< o) \
44
uint64_t o = u.bits.
manh
; \
45
u.bits.
manh
+= (c); \
46
if (u.bits.
manh
< o) { \
48
u.bits.
manh
|= 1llu << (LDBL_MANH_SIZE - 1); \
65
(u.bits.
manh
| u.bits.manl) != 0)
69
if (((u.bits.
manh
& m) | u.bits.manl) == 0)
80
u.bits.
manh
&= ~m
[
all
...]
s_floorl.c
36
uint64_t o = u.bits.
manh
; \
37
u.bits.
manh
+= (c); \
38
if (u.bits.
manh
< o) \
44
uint64_t o = u.bits.
manh
; \
45
u.bits.
manh
+= (c); \
46
if (u.bits.
manh
< o) { \
48
u.bits.
manh
|= 1llu << (LDBL_MANH_SIZE - 1); \
65
(u.bits.
manh
| u.bits.manl) != 0)
69
if (((u.bits.
manh
& m) | u.bits.manl) == 0)
80
u.bits.
manh
&= ~m
[
all
...]
s_ilogbl.c
32
if ((u.bits.manl | u.bits.
manh
) == 0)
35
if (u.bits.
manh
== 0) {
41
for (b = 0; !(u.bits.
manh
& m); m >>= 1)
50
else if (u.bits.manl != 0 || u.bits.
manh
!= 0)
fpmath.h
56
unsigned int
manh
:20;
member in struct:IEEEd2bits::__anon561
62
unsigned int
manh
:20;
68
unsigned int
manh
:20;
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)
s_isnan.c
41
return (u.bits.exp == 2047 && (u.bits.manl != 0 || u.bits.
manh
!= 0));
61
return (u.bits.exp == 32767 && (u.bits.manl != 0 || u.bits.
manh
!= 0));
s_truncl.c
53
if (((u.bits.
manh
& m) | u.bits.manl) == 0)
56
u.bits.
manh
&= ~m;
s_frexpl.c
46
if ((u.bits.manl | u.bits.
manh
) == 0) {
s_nexttowardf.c
37
((uy.bits.
manh
&~LDBL_NBIT)|uy.bits.manl) != 0))
s_nexttoward.c
47
((uy.bits.
manh
&~LDBL_NBIT)|uy.bits.manl) != 0))
s_scalbnl.c
52
if ((u.bits.
manh
|u.bits.manl)==0) return x; /* +-0 */
/bionic/libm/ia64/
_fpmath.h
37
unsigned int
manh
:32;
member in struct:IEEEl2bits::__anon551
45
unsigned int
manh
:32;
53
#define mask_nbit_l(u) ((u).bits.
manh
&= ~LDBL_NBIT)
62
#define mask_nbit_l(u) ((u).bits.
manh
&= ~LDBL_NBIT)
70
(a)[1] = (uint32_t)(u).bits.
manh
; \
/bionic/libm/amd64/
_fpmath.h
33
unsigned int
manh
:32;
member in struct:IEEEl2bits::__anon544
42
#define mask_nbit_l(u) ((u).bits.
manh
&= ~LDBL_NBIT)
49
(a)[1] = (uint32_t)(u).bits.
manh
; \
/bionic/libm/arm/
_fpmath.h
34
unsigned int
manh
:20;
member in struct:IEEEl2bits::__anon547
40
unsigned int
manh
:20;
54
(a)[1] = (uint32_t)(u).bits.
manh
; \
/bionic/libm/i386/
_fpmath.h
33
unsigned int
manh
:32;
member in struct:IEEEl2bits::__anon548
41
#define mask_nbit_l(u) ((u).bits.
manh
&= ~LDBL_NBIT)
48
(a)[1] = (uint32_t)(u).bits.
manh
; \
/bionic/libm/sparc64/
_fpmath.h
35
unsigned long
manh
:48;
member in struct:IEEEl2bits::__anon559
50
(a)[2] = (uint32_t)(u).bits.
manh
; \
51
(a)[3] = (uint32_t)((u).bits.
manh
>> 32); \
/bionic/libm/
isinf.c
44
return (u.bits.exp == 2047 && u.bits.manl == 0 && u.bits.
manh
== 0);
64
return (u.bits.exp == 32767 && u.bits.manl == 0 && u.bits.
manh
== 0);
66
return (u.bits.exp == 2047 && u.bits.manl == 0 && u.bits.
manh
== 0);
fpclassify.c
63
if ((u.bits.manl | u.bits.
manh
) == 0)
68
if ((u.bits.manl | u.bits.
manh
) == 0)
82
if ((u.bits.manl | u.bits.
manh
) == 0)
88
if ((u.bits.manl | u.bits.
manh
) == 0)
/bionic/libm/alpha/
_fpmath.h
33
unsigned int
manh
:20;
member in struct:IEEEl2bits::__anon543
48
(a)[1] = (uint32_t)(u).bits.
manh
; \
/bionic/libm/powerpc/
_fpmath.h
34
unsigned int
manh
:20;
member in struct:IEEEl2bits::__anon556
48
(a)[1] = (uint32_t)(u).bits.
manh
; \
/bionic/libm/sh/
_fpmath.h
38
unsigned int
manh
:20;
member in struct:IEEEl2bits::__anon558
44
unsigned int
manh
:20;
Completed in 419 milliseconds
1
2