OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rep_t
(Results
1 - 15
of
15
) sorted by null
/external/compiler-rt/lib/
floatunsisf.c
32
rep_t
result;
37
result = (
rep_t
)a << shift ^ implicitBit;
40
result = (
rep_t
)a >> shift ^ implicitBit;
41
rep_t
round = (
rep_t
)a << (typeWidth - shift);
47
result += (
rep_t
)(exponent + exponentBias) << significandBits;
floatsidf.c
32
rep_t
sign = 0;
40
rep_t
result;
46
result = (
rep_t
)(unsigned int)a << shift ^ implicitBit;
49
result += (
rep_t
)(exponent + exponentBias) << significandBits;
floatsisf.c
32
rep_t
sign = 0;
40
rep_t
result;
45
result = (
rep_t
)a << shift ^ implicitBit;
48
result = (
rep_t
)a >> shift ^ implicitBit;
49
rep_t
round = (
rep_t
)a << (typeWidth - shift);
55
result += (
rep_t
)(exponent + exponentBias) << significandBits;
fixdfsi.c
26
const
rep_t
aRep = toRep(a);
27
const
rep_t
aAbs = aRep & absMask;
30
const
rep_t
significand = (aAbs & significandMask) | implicitBit;
fixsfsi.c
24
const
rep_t
aRep = toRep(a);
25
const
rep_t
aAbs = aRep & absMask;
28
const
rep_t
significand = (aAbs & significandMask) | implicitBit;
floatunsidf.c
32
rep_t
result;
36
result = (
rep_t
)a << shift ^ implicitBit;
39
result += (
rep_t
)(exponent + exponentBias) << significandBits;
fp_lib.h
31
typedef uint32_t
rep_t
;
typedef
37
static inline int rep_clz(
rep_t
a) {
42
static inline void wideMultiply(
rep_t
a,
rep_t
b,
rep_t
*hi,
rep_t
*lo) {
50
typedef uint64_t
rep_t
;
typedef
56
static inline int rep_clz(
rep_t
a) {
73
static inline void wideMultiply(
rep_t
a,
rep_t
b, rep_t *hi, rep_t *lo)
[
all
...]
adddf3.c
23
rep_t
aRep = toRep(a);
24
rep_t
bRep = toRep(b);
25
const
rep_t
aAbs = aRep & absMask;
26
const
rep_t
bAbs = bRep & absMask;
59
const
rep_t
temp = aRep;
67
rep_t
aSignificand = aRep & significandMask;
68
rep_t
bSignificand = bRep & significandMask;
76
const
rep_t
resultSign = aRep & signBit;
141
rep_t
result = aSignificand >> 3 & significandMask;
144
result |= (
rep_t
)aExponent << significandBits
[
all
...]
addsf3.c
22
rep_t
aRep = toRep(a);
23
rep_t
bRep = toRep(b);
24
const
rep_t
aAbs = aRep & absMask;
25
const
rep_t
bAbs = bRep & absMask;
58
const
rep_t
temp = aRep;
66
rep_t
aSignificand = aRep & significandMask;
67
rep_t
bSignificand = bRep & significandMask;
75
const
rep_t
resultSign = aRep & signBit;
140
rep_t
result = aSignificand >> 3 & significandMask;
143
result |= (
rep_t
)aExponent << significandBits
[
all
...]
muldf3.c
25
const
rep_t
productSign = (toRep(a) ^ toRep(b)) & signBit;
27
rep_t
aSignificand = toRep(a) & significandMask;
28
rep_t
bSignificand = toRep(b) & significandMask;
34
const
rep_t
aAbs = toRep(a) & absMask;
35
const
rep_t
bAbs = toRep(b) & absMask;
79
rep_t
productHi, productLo;
110
productHi |= (
rep_t
)productExponent << significandBits;
mulsf3.c
25
const
rep_t
productSign = (toRep(a) ^ toRep(b)) & signBit;
27
rep_t
aSignificand = toRep(a) & significandMask;
28
rep_t
bSignificand = toRep(b) & significandMask;
34
const
rep_t
aAbs = toRep(a) & absMask;
35
const
rep_t
bAbs = toRep(b) & absMask;
79
rep_t
productHi, productLo;
101
productHi |= (
rep_t
)productExponent << significandBits;
divdf3.c
28
const
rep_t
quotientSign = (toRep(a) ^ toRep(b)) & signBit;
30
rep_t
aSignificand = toRep(a) & significandMask;
31
rep_t
bSignificand = toRep(b) & significandMask;
37
const
rep_t
aAbs = toRep(a) & absMask;
38
const
rep_t
bAbs = toRep(b) & absMask;
134
rep_t
quotient, quotientLo;
150
rep_t
residual;
175
rep_t
absResult = quotient & significandMask;
177
absResult |= (
rep_t
)writtenExponent << significandBits;
divsf3.c
28
const
rep_t
quotientSign = (toRep(a) ^ toRep(b)) & signBit;
30
rep_t
aSignificand = toRep(a) & significandMask;
31
rep_t
bSignificand = toRep(b) & significandMask;
37
const
rep_t
aAbs = toRep(a) & absMask;
38
const
rep_t
bAbs = toRep(b) & absMask;
120
rep_t
quotient = (uint64_t)reciprocal*(aSignificand << 1) >> 32;
135
rep_t
residual;
160
rep_t
absResult = quotient & significandMask;
162
absResult |= (
rep_t
)writtenExponent << significandBits;
comparedf2.c
54
const
rep_t
aAbs = aInt & absMask;
55
const
rep_t
bAbs = bInt & absMask;
93
const
rep_t
aAbs = aInt & absMask;
94
const
rep_t
bAbs = bInt & absMask;
112
const
rep_t
aAbs = toRep(a) & absMask;
113
const
rep_t
bAbs = toRep(b) & absMask;
comparesf2.c
54
const
rep_t
aAbs = aInt & absMask;
55
const
rep_t
bAbs = bInt & absMask;
93
const
rep_t
aAbs = aInt & absMask;
94
const
rep_t
bAbs = bInt & absMask;
112
const
rep_t
aAbs = toRep(a) & absMask;
113
const
rep_t
bAbs = toRep(b) & absMask;
Completed in 162 milliseconds