OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:extu_frach
(Results
1 - 25
of
26
) sorted by relevancy
1
2
/src/lib/libm/src/
s_nextafterl.c
54
((ux.
extu_frach
&~ LDBL_NBIT)|ux.extu_fracl) != 0) ||
56
((uy.
extu_frach
&~ LDBL_NBIT)|uy.extu_fracl) != 0))
62
ux.
extu_frach
= 0; /* return +-minsubnormal */
74
if ((ux.
extu_frach
& ~LDBL_NBIT) == 0)
76
ux.
extu_frach
= (ux.
extu_frach
- 1) |
77
(ux.
extu_frach
& LDBL_NBIT);
83
ux.
extu_frach
= (ux.
extu_frach
+ 1) |
84
(ux.
extu_frach
& LDBL_NBIT)
[
all
...]
s_ceill.c
44
uint64_t oi = ux.
extu_frach
; \
45
ux.
extu_frach
+= (c); \
46
if (ux.
extu_frach
< oi) \
52
uint64_t oi = ux.
extu_frach
; \
53
ux.
extu_frach
+= (c); \
54
if (ux.
extu_frach
< oi) { \
56
ux.
extu_frach
|= 1llu << (EXT_FRACHBITS - 1); \
73
(ux.
extu_frach
| ux.extu_fracl) != 0)
77
if (((ux.
extu_frach
& m) | ux.extu_fracl) == 0)
88
ux.
extu_frach
&= ~m
[
all
...]
s_floorl.c
44
uint64_t oi = ux.
extu_frach
; \
45
ux.
extu_frach
+= (c); \
46
if (ux.
extu_frach
< oi) \
52
uint64_t oi = ux.
extu_frach
; \
53
ux.
extu_frach
+= (c); \
54
if (ux.
extu_frach
< oi) { \
56
ux.
extu_frach
|= 1llu << (EXT_FRACHBITS - 1); \
73
(ux.
extu_frach
| ux.extu_fracl) != 0)
77
if (((ux.
extu_frach
& m) | ux.extu_fracl) == 0)
88
ux.
extu_frach
&= ~m
[
all
...]
e_fmodl.c
85
if((uy.extu_exp|uy.
extu_frach
|uy.extu_fracl)==0 || /* y=0 */
88
((uy.
extu_frach
&~LDBL_NBIT)|uy.extu_fracl)!=0)) /* or y is NaN */
92
(ux.
extu_frach
<=uy.
extu_frach
&&
93
(ux.
extu_frach
<uy.
extu_frach
||
97
if(ux.
extu_frach
==uy.
extu_frach
&& ux.extu_fracl==uy.extu_fracl) {
119
hx = SET_NBIT(ux.
extu_frach
);
120
hy = SET_NBIT(uy.
extu_frach
);
[
all
...]
s_remquol.c
94
if((uy.extu_exp|uy.
extu_frach
|uy.extu_fracl)==0 || /* y=0 */
97
((uy.
extu_frach
&~LDBL_NBIT)|uy.extu_fracl)!=0)) /* or y is NaN */
101
(ux.
extu_frach
<=uy.
extu_frach
&&
102
(ux.
extu_frach
<uy.
extu_frach
||
107
if(ux.
extu_frach
==uy.
extu_frach
&& ux.extu_fracl==uy.extu_fracl) {
130
hx = SET_NBIT(ux.
extu_frach
);
131
hy = SET_NBIT(uy.
extu_frach
);
[
all
...]
s_modfl.c
77
if ((GETFRAC(ux.
extu_frach
, HIBITS - 1 - e) |
83
ux.
extu_frach
>>= HIBITS - 1 - e;
84
ux.
extu_frach
<<= HIBITS - 1 - e;
e_sqrtl.c
58
if (++ux.
extu_frach
== 0) {
60
ux.
extu_frach
|= LDBL_NBIT;
73
if (ux.
extu_frach
-- == LDBL_NBIT) {
75
ux.
extu_frach
|= LDBL_NBIT;
101
if ((ux.
extu_frach
| ux.extu_fracl | ux.extu_exp) == 0)
e_atan2l.c
82
((ux.
extu_frach
&~LDBL_NBIT)|ux.extu_fracl)!=0) || /* x is NaN */
84
((uy.
extu_frach
&~LDBL_NBIT)|uy.extu_fracl)!=0)) /* y is NaN */
86
if (expsignx==BIAS && ((ux.
extu_frach
&~LDBL_NBIT)|ux.extu_fracl)==0)
91
if(expty==0 && ((uy.
extu_frach
&~LDBL_NBIT)|uy.extu_fracl)==0) {
100
if(exptx==0 && ((ux.
extu_frach
&~LDBL_NBIT)|ux.extu_fracl)==0)
s_truncl.c
62
if (((ux.
extu_frach
& m) | ux.extu_fracl) == 0)
65
ux.
extu_frach
&= ~m;
e_asinl.c
61
if(expt==BIAS && ((u.
extu_frach
&~LDBL_NBIT)|u.extu_fracl)==0)
81
if(u.
extu_frach
>=THRESH) { /* if |x| is close to 1 */
s_atanl.c
65
((u.
extu_frach
&~LDBL_NBIT)|u.extu_fracl)!=0)
72
expman = (expt << 8) | ((u.
extu_frach
>> (MANH_SIZE - 9)) & 0xff);
s_nexttoward.c
59
((uy.
extu_frach
& ~LDBL_NBIT) | uy.extu_fracl) != 0))
e_acosl.c
71
if(expt==BIAS && ((u.
extu_frach
&~LDBL_NBIT)|u.extu_fracl)==0) {
math_private.h
242
(((uint64_t)(u)->
extu_frach
<< EXT_FRACLBITS) | (u)->extu_fracl)
245
(u)->
extu_frach
= (v) >> EXT_FRACLBITS)
271
(ix1) = ew_u.
extu_frach
; \
307
iw_u.
extu_frach
= (ix1); \
326
.
extu_frach
= __CONCAT(m, ULL) >> EXT_FRACLBITS, \
869
u.
extu_frach
&= ~m; \
s_cbrtl.c
60
if ((u.
extu_frach
| u.extu_fracl) == 0)
e_hypotl.c
37
h = uv.
extu_frach
; \
/src/lib/libm/ld128/
s_nanl.c
43
u.ieee.
extu_frach
|= 1ULL << 47; /* make it a quiet NaN */
e_rem_pio2l.h
77
u.
extu_frach
< 0x921fb54442d1LL)) {
/src/lib/libm/ld80/
s_nanl.c
44
u.ieee.
extu_frach
|= 0xc0000000; /* make it a quiet NaN */
e_rem_pio2l.h
87
if (ex < BIAS + 25 || (ex == BIAS + 25 && u.
extu_frach
< 0xc90fdaa2U)) {
/src/sys/arch/x86/include/
ieee.h
116
#define
extu_frach
extu_ext.ext_frach
macro
119
#define mask_nbit_l(u) ((u).
extu_frach
&= ~LDBL_NBIT)
/src/sys/arch/m68k/include/
ieee.h
112
#define
extu_frach
extu_ext.ext_frach
macro
115
#define mask_nbit_l(u) ((u).
extu_frach
&= ~LDBL_NBIT)
/src/lib/libc/gen/
floatunditf_ieee754.c
66
ux.
extu_frach
= (x >> (64 - EXT_FRACHBITS));
/src/sys/sys/
ieee754.h
209
#define
extu_frach
extu_ext.ext_frach
macro
210
#define EXTU_ZEROFRAC_P(u) (((u).
extu_frach
|(u).extu_fracl) != 0)
/src/lib/libc/quad/
floatunditf_ieee754.c
94
extu.
extu_frach
= (unsigned int)(x >> (64 - EXT_FRACHBITS));
Completed in 133 milliseconds
1
2
Indexes created Sat Oct 18 21:09:54 GMT 2025