OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:toRep
(Results
1 - 14
of
14
) sorted by null
/external/compiler-rt/lib/builtins/
negdf2.c
21
return fromRep(
toRep
(a) ^ signBit);
negsf2.c
21
return fromRep(
toRep
(a) ^ signBit);
subdf3.c
23
return __adddf3(a, fromRep(
toRep
(b) ^ signBit));
subsf3.c
23
return __addsf3(a, fromRep(
toRep
(b) ^ signBit));
divdf3.c
27
const unsigned int aExponent =
toRep
(a) >> significandBits & maxExponent;
28
const unsigned int bExponent =
toRep
(b) >> significandBits & maxExponent;
29
const rep_t quotientSign = (
toRep
(a) ^
toRep
(b)) & signBit;
31
rep_t aSignificand =
toRep
(a) & significandMask;
32
rep_t bSignificand =
toRep
(b) & significandMask;
38
const rep_t aAbs =
toRep
(a) & absMask;
39
const rep_t bAbs =
toRep
(b) & absMask;
42
if (aAbs > infRep) return fromRep(
toRep
(a) | quietBit);
44
if (bAbs > infRep) return fromRep(
toRep
(b) | quietBit)
[
all
...]
divsf3.c
27
const unsigned int aExponent =
toRep
(a) >> significandBits & maxExponent;
28
const unsigned int bExponent =
toRep
(b) >> significandBits & maxExponent;
29
const rep_t quotientSign = (
toRep
(a) ^
toRep
(b)) & signBit;
31
rep_t aSignificand =
toRep
(a) & significandMask;
32
rep_t bSignificand =
toRep
(b) & significandMask;
38
const rep_t aAbs =
toRep
(a) & absMask;
39
const rep_t bAbs =
toRep
(b) & absMask;
42
if (aAbs > infRep) return fromRep(
toRep
(a) | quietBit);
44
if (bAbs > infRep) return fromRep(
toRep
(b) | quietBit)
[
all
...]
comparetf2.c
53
const srep_t aInt =
toRep
(a);
54
const srep_t bInt =
toRep
(b);
91
const srep_t aInt =
toRep
(a);
92
const srep_t bInt =
toRep
(b);
110
const rep_t aAbs =
toRep
(a) & absMask;
111
const rep_t bAbs =
toRep
(b) & absMask;
subtf3.c
24
return __addtf3(a, fromRep(
toRep
(b) ^ signBit));
divtf3.c
25
const unsigned int aExponent =
toRep
(a) >> significandBits & maxExponent;
26
const unsigned int bExponent =
toRep
(b) >> significandBits & maxExponent;
27
const rep_t quotientSign = (
toRep
(a) ^
toRep
(b)) & signBit;
29
rep_t aSignificand =
toRep
(a) & significandMask;
30
rep_t bSignificand =
toRep
(b) & significandMask;
36
const rep_t aAbs =
toRep
(a) & absMask;
37
const rep_t bAbs =
toRep
(b) & absMask;
40
if (aAbs > infRep) return fromRep(
toRep
(a) | quietBit);
42
if (bAbs > infRep) return fromRep(
toRep
(b) | quietBit)
[
all
...]
comparedf2.c
53
const srep_t aInt =
toRep
(a);
54
const srep_t bInt =
toRep
(b);
93
const srep_t aInt =
toRep
(a);
94
const srep_t bInt =
toRep
(b);
115
const rep_t aAbs =
toRep
(a) & absMask;
116
const rep_t bAbs =
toRep
(b) & absMask;
comparesf2.c
53
const srep_t aInt =
toRep
(a);
54
const srep_t bInt =
toRep
(b);
93
const srep_t aInt =
toRep
(a);
94
const srep_t bInt =
toRep
(b);
115
const rep_t aAbs =
toRep
(a) & absMask;
116
const rep_t bAbs =
toRep
(b) & absMask;
fixdfsi.c
27
const rep_t aRep =
toRep
(a);
fixsfsi.c
24
const rep_t aRep =
toRep
(a);
fp_lib.h
231
static inline rep_t
toRep
(fp_t x) {
Completed in 415 milliseconds