OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:maxExponent
(Results
1 - 8
of
8
) sorted by null
/external/compiler-rt/lib/
muldf3.c
23
const unsigned int aExponent = toRep(a) >> significandBits &
maxExponent
;
24
const unsigned int bExponent = toRep(b) >> significandBits &
maxExponent
;
32
if (aExponent-1U >=
maxExponent
-1U || bExponent-1U >=
maxExponent
-1U) {
90
if (productExponent >=
maxExponent
) return fromRep(infRep | productSign);
mulsf3.c
23
const unsigned int aExponent = toRep(a) >> significandBits &
maxExponent
;
24
const unsigned int bExponent = toRep(b) >> significandBits &
maxExponent
;
32
if (aExponent-1U >=
maxExponent
-1U || bExponent-1U >=
maxExponent
-1U) {
90
if (productExponent >=
maxExponent
) return fromRep(infRep | productSign);
divdf3.c
26
const unsigned int aExponent = toRep(a) >> significandBits &
maxExponent
;
27
const unsigned int bExponent = toRep(b) >> significandBits &
maxExponent
;
35
if (aExponent-1U >=
maxExponent
-1U || bExponent-1U >=
maxExponent
-1U) {
161
if (writtenExponent >=
maxExponent
) {
divsf3.c
26
const unsigned int aExponent = toRep(a) >> significandBits &
maxExponent
;
27
const unsigned int bExponent = toRep(b) >> significandBits &
maxExponent
;
35
if (aExponent-1U >=
maxExponent
-1U || bExponent-1U >=
maxExponent
-1U) {
146
if (writtenExponent >=
maxExponent
) {
adddf3.c
65
int aExponent = aRep >> significandBits &
maxExponent
;
66
int bExponent = bRep >> significandBits &
maxExponent
;
126
if (aExponent >=
maxExponent
) return fromRep(infRep | resultSign);
addsf3.c
64
int aExponent = aRep >> significandBits &
maxExponent
;
65
int bExponent = bRep >> significandBits &
maxExponent
;
125
if (aExponent >=
maxExponent
) return fromRep(infRep | resultSign);
fp_lib.h
93
#define
maxExponent
((1 << exponentBits) - 1)
94
#define exponentBias (
maxExponent
>> 1)
/external/llvm/lib/Support/
APFloat.cpp
47
APFloat::ExponentType
maxExponent
;
89
const unsigned int
maxExponent
= 16383;
91
const unsigned int maxPowerOfFiveExponent =
maxExponent
+ maxPrecision - 1;
466
assert(power <=
maxExponent
);
750
return isFiniteNonZero() && exponent == semantics->
maxExponent
[
all
...]
Completed in 62 milliseconds