OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MANTISSA_BITS
(Results
1 - 7
of
7
) sorted by null
/system/media/audio_utils/
minifloat.c
24
#define
MANTISSA_BITS
13
25
#define MANTISSA_MAX ((1 <<
MANTISSA_BITS
) - 1)
26
#define HIDDEN_BIT (1 <<
MANTISSA_BITS
)
27
#define ONE_FLOAT ((float) (1 << (
MANTISSA_BITS
+ 1)))
29
#define MINIFLOAT_MAX ((EXPONENT_MAX <<
MANTISSA_BITS
) | MANTISSA_MAX)
31
#if EXPONENT_BITS +
MANTISSA_BITS
!= 16
32
#error EXPONENT_BITS and
MANTISSA_BITS
must sum to 16
48
if (-exp >=
MANTISSA_BITS
) {
52
return exp > 0 ? (exp <<
MANTISSA_BITS
) | (mantissa & ~HIDDEN_BIT) :
59
int exponent = (a >>
MANTISSA_BITS
) & EXPONENT_MAX
[
all
...]
/libcore/luni/src/main/java/java/lang/
RealToString.java
69
int e = (int) ((inputNumberBits & Double.EXPONENT_MASK) >> Double.
MANTISSA_BITS
);
92
int p = Double.EXPONENT_BIAS + Double.
MANTISSA_BITS
; // the power offset (precision)
94
int numBits = Double.
MANTISSA_BITS
;
136
int e = (inputNumberBits & Float.EXPONENT_MASK) >> Float.
MANTISSA_BITS
;
154
int p = Float.EXPONENT_BIAS + Float.
MANTISSA_BITS
; // the power offset (precision)
156
int numBits = Float.
MANTISSA_BITS
;
Math.java
[
all
...]
Double.java
30
static final int
MANTISSA_BITS
= 52;
Float.java
30
static final int
MANTISSA_BITS
= 23;
StrictMath.java
[
all
...]
/external/deqp/framework/common/
tcuFloat.hpp
56
MANTISSA_BITS
= MantissaBits,
Completed in 959 milliseconds