HomeSort by relevance Sort by last modified time
    Searched refs:EXP_BIAS (Results 1 - 2 of 2) sorted by null

  /external/skia/src/core/
SkFloatBits.cpp 17 #define EXP_BIAS (127+23)
39 int exp = unpack_exp(packed) - EXP_BIAS;
65 int exp = unpack_exp(packed) - EXP_BIAS;
95 int exp = unpack_exp(packed) - EXP_BIAS;
125 int exp = unpack_exp(packed) - EXP_BIAS;
155 int shift = EXP_BIAS;
188 int shift = EXP_BIAS;
SkFloat.cpp 20 #define EXP_BIAS (127+23)
44 int exp = get_unsigned_exp(packed) - EXP_BIAS - shift;
93 shift += EXP_BIAS;
163 return SkFloat::SetShift(value_a + value_b, exp - EXP_BIAS);
188 return SkFloat::SetShift(mul24(value_a, value_b), exp_a + exp_b - 2*EXP_BIAS + 24);
233 int nexp = exp - EXP_BIAS;

Completed in 49 milliseconds