OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:aSignificand
(Results
1 - 6
of
6
) sorted by null
/external/compiler-rt/lib/
adddf3.c
67
rep_t
aSignificand
= aRep & significandMask;
71
if (aExponent == 0) aExponent = normalize(&
aSignificand
);
83
aSignificand
= (
aSignificand
| implicitBit) << 3;
99
aSignificand
-= bSignificand;
102
if (
aSignificand
== 0) return fromRep(0);
106
if (
aSignificand
< implicitBit << 3) {
107
const int shift = rep_clz(
aSignificand
) - rep_clz(implicitBit << 3);
108
aSignificand
<<= shift;
114
aSignificand
+= bSignificand
[
all
...]
addsf3.c
66
rep_t
aSignificand
= aRep & significandMask;
70
if (aExponent == 0) aExponent = normalize(&
aSignificand
);
82
aSignificand
= (
aSignificand
| implicitBit) << 3;
98
aSignificand
-= bSignificand;
101
if (
aSignificand
== 0) return fromRep(0);
105
if (
aSignificand
< implicitBit << 3) {
106
const int shift = rep_clz(
aSignificand
) - rep_clz(implicitBit << 3);
107
aSignificand
<<= shift;
113
aSignificand
+= bSignificand
[
all
...]
divdf3.c
30
rep_t
aSignificand
= toRep(a) & significandMask;
67
if (aAbs < implicitBit) scale += normalize(&
aSignificand
);
74
aSignificand
|= implicitBit;
135
wideMultiply(
aSignificand
<< 2, reciprocal, "ient, "ientLo);
152
residual = (
aSignificand
<< 53) - quotient * bSignificand;
156
residual = (
aSignificand
<< 52) - quotient * bSignificand;
divsf3.c
30
rep_t
aSignificand
= toRep(a) & significandMask;
67
if (aAbs < implicitBit) scale += normalize(&
aSignificand
);
74
aSignificand
|= implicitBit;
120
rep_t quotient = (uint64_t)reciprocal*(
aSignificand
<< 1) >> 32;
137
residual = (
aSignificand
<< 24) - quotient * bSignificand;
141
residual = (
aSignificand
<< 23) - quotient * bSignificand;
muldf3.c
27
rep_t
aSignificand
= toRep(a) & significandMask;
64
if (aAbs < implicitBit) scale += normalize(&
aSignificand
);
71
aSignificand
|= implicitBit;
80
wideMultiply(
aSignificand
, bSignificand << exponentBits,
mulsf3.c
27
rep_t
aSignificand
= toRep(a) & significandMask;
64
if (aAbs < implicitBit) scale += normalize(&
aSignificand
);
71
aSignificand
|= implicitBit;
80
wideMultiply(
aSignificand
, bSignificand << exponentBits,
Completed in 129 milliseconds