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 24 #define EXP_BIAS (127+23)
46 int exp = unpack_exp(packed) - EXP_BIAS;
72 int exp = unpack_exp(packed) - EXP_BIAS;
102 int exp = unpack_exp(packed) - EXP_BIAS;
132 int exp = unpack_exp(packed) - EXP_BIAS;
162 int shift = EXP_BIAS;
195 int shift = EXP_BIAS;
SkFloat.cpp 13 #define EXP_BIAS (127+23)
37 int exp = get_unsigned_exp(packed) - EXP_BIAS - shift;
86 shift += EXP_BIAS;
156 return SkFloat::SetShift(value_a + value_b, exp - EXP_BIAS);
181 return SkFloat::SetShift(mul24(value_a, value_b), exp_a + exp_b - 2*EXP_BIAS + 24);
226 int nexp = exp - EXP_BIAS;

Completed in 57 milliseconds