OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fromRep
(Results
1 - 13
of
13
) 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
42
if (aAbs > infRep) return
fromRep
(toRep(a) | quietBit);
44
if (bAbs > infRep) return
fromRep
(toRep(b) | quietBit);
48
if (bAbs == infRep) return
fromRep
(qnanRep);
50
else return
fromRep
(aAbs | quotientSign);
54
if (bAbs == infRep) return
fromRep
(quotientSign);
58
if (!bAbs) return
fromRep
(qnanRep);
60
else return
fromRep
(quotientSign);
63
if (!bAbs) return
fromRep
(infRep | quotientSign);
164
return
fromRep
(infRep | quotientSign);
170
return
fromRep
(quotientSign)
[
all
...]
divsf3.c
42
if (aAbs > infRep) return
fromRep
(toRep(a) | quietBit);
44
if (bAbs > infRep) return
fromRep
(toRep(b) | quietBit);
48
if (bAbs == infRep) return
fromRep
(qnanRep);
50
else return
fromRep
(aAbs | quotientSign);
54
if (bAbs == infRep) return
fromRep
(quotientSign);
58
if (!bAbs) return
fromRep
(qnanRep);
60
else return
fromRep
(quotientSign);
63
if (!bAbs) return
fromRep
(infRep | quotientSign);
149
return
fromRep
(infRep | quotientSign);
155
return
fromRep
(quotientSign)
[
all
...]
floatunsidf.c
29
if (a == 0) return
fromRep
(0);
41
return
fromRep
(result);
floatsidf.c
30
return
fromRep
(0);
52
return
fromRep
(result | sign);
divtf3.c
40
if (aAbs > infRep) return
fromRep
(toRep(a) | quietBit);
42
if (bAbs > infRep) return
fromRep
(toRep(b) | quietBit);
46
if (bAbs == infRep) return
fromRep
(qnanRep);
48
else return
fromRep
(aAbs | quotientSign);
52
if (bAbs == infRep) return
fromRep
(quotientSign);
56
if (!bAbs) return
fromRep
(qnanRep);
58
else return
fromRep
(quotientSign);
61
if (!bAbs) return
fromRep
(infRep | quotientSign);
182
return
fromRep
(infRep | quotientSign);
187
return
fromRep
(quotientSign)
[
all
...]
subtf3.c
24
return __addtf3(a,
fromRep
(toRep(b) ^ signBit));
floatsisf.c
30
return
fromRep
(0);
58
return
fromRep
(result | sign);
floatunsisf.c
29
if (a == 0) return
fromRep
(0);
49
return
fromRep
(result);
fp_lib.h
236
static inline fp_t
fromRep
(rep_t x) {
Completed in 560 milliseconds