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

  /external/chromium_org/third_party/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;
160 int shift = EXP_BIAS;
193 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);
175 return SkFloat::SetShift(mul24(value_a, value_b), exp_a + exp_b - 2*EXP_BIAS + 24);
220 int nexp = exp - EXP_BIAS;
  /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;
160 int shift = EXP_BIAS;
193 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);
175 return SkFloat::SetShift(mul24(value_a, value_b), exp_a + exp_b - 2*EXP_BIAS + 24);
220 int nexp = exp - EXP_BIAS;
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
floatnum.c 61 #define EXP_BIAS 0x7FFF
249 expon = (((int)acc->exponent)-EXP_BIAS) + (((int)op->exponent)-EXP_BIAS);
250 expon += EXP_BIAS;
562 long exp_bias = (1<<(exp_bits-1))-1; local
588 exponent -= EXP_BIAS-exp_bias;

Completed in 110 milliseconds