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

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_rintl.c 36 /* We also require the usual bias, min exp and expsign packing. */
40 #define BIAS (LDBL_MAX_EXP - 1)
65 if (ex >= BIAS + LDBL_MANT_DIG - 1) {
66 if (ex == BIAS + LDBL_MAX_EXP)
86 if (ex < BIAS && x == 0.0L)
s_atanl.c 45 if(expt == BIAS + LDBL_MAX_EXP &&
54 if (expman < ((BIAS - 2) << 8) + 0xc0) { /* |x| < 0.4375 */
61 if (expman < (BIAS << 8) + 0x30) { /* |x| < 1.1875 */
62 if (expman < ((BIAS - 1) << 8) + 0x60) { /* 7/16 <=|x|<11/16 */
68 if (expman < ((BIAS + 1) << 8) + 0x38) { /* |x| < 2.4375 */
e_fmodl.c 23 #define BIAS (LDBL_MAX_EXP - 1)
79 (ux.bits.exp == BIAS + LDBL_MAX_EXP) || /* or x not finite */
80 (uy.bits.exp == BIAS + LDBL_MAX_EXP &&
98 ix = ux.bits.exp - (BIAS + 512);
100 ix = ux.bits.exp - BIAS;
106 iy = uy.bits.exp - (BIAS + 512);
108 iy = uy.bits.exp - BIAS;
142 ux.bits.exp = iy + (BIAS + 512);
145 ux.bits.exp = iy + BIAS;
e_atan2l.c 61 if ((exptx==BIAS+LDBL_MAX_EXP &&
63 (expty==BIAS+LDBL_MAX_EXP &&
66 if (expsignx==BIAS && ((ux.bits.manh&~LDBL_NBIT)|ux.bits.manl)==0)
84 if(exptx==BIAS+LDBL_MAX_EXP) {
85 if(expty==BIAS+LDBL_MAX_EXP) {
102 if(expty==BIAS+LDBL_MAX_EXP)
s_cbrtl.c 29 #define BIAS (LDBL_MAX_EXP - 1)
53 if (k == BIAS + LDBL_MAX_EXP)
64 k -= BIAS + 514;
66 k -= BIAS;
67 u.xbits.expsign = BIAS;
83 v.xbits.expsign = (expsign & 0x8000) | (BIAS + k / 3);
e_acosl.c 52 if(expt >= BIAS) { /* |x| >= 1 */
53 if(expt==BIAS && ((u.bits.manh&~LDBL_NBIT)|u.bits.manl)==0) {
59 if(expt<BIAS-1) { /* |x| < 0.5 */
e_asinl.c 42 if(expt >= BIAS) { /* |x|>= 1 */
43 if(expt==BIAS && ((u.bits.manh&~LDBL_NBIT)|u.bits.manl)==0)
47 } else if (expt<BIAS-1) { /* |x|<0.5 */
s_remquol.c 23 #define BIAS (LDBL_MAX_EXP - 1)
86 (ux.bits.exp == BIAS + LDBL_MAX_EXP) || /* or x not finite */
87 (uy.bits.exp == BIAS + LDBL_MAX_EXP &&
107 ix = ux.bits.exp - (BIAS + 512);
109 ix = ux.bits.exp - BIAS;
115 iy = uy.bits.exp - (BIAS + 512);
117 iy = uy.bits.exp - BIAS;
152 ux.bits.exp = iy + (BIAS + 512);
155 ux.bits.exp = iy + BIAS;
  /external/stlport/src/
num_get_float.cpp 458 * Exponent bias +1023
469 _Stl_set_exponent(value, bexp + 1022); /* add bias */
482 template <class D, class IEEE, int M, int BIAS>
565 * Exponent bias +1023
582 v.ieee.exponent = bexp + BIAS - 1;
588 bexp += BIAS - 1;
748 template <class D, class IEEE, int M, int BIAS>
837 x = _Stl_atodT<D,IEEE,M,BIAS>(digits, n, exp);
  /ndk/sources/cxx-stl/stlport/src/
num_get_float.cpp 458 * Exponent bias +1023
469 _Stl_set_exponent(value, bexp + 1022); /* add bias */
482 template <class D, class IEEE, int M, int BIAS>
565 * Exponent bias +1023
582 v.ieee.exponent = bexp + BIAS - 1;
588 bexp += BIAS - 1;
748 template <class D, class IEEE, int M, int BIAS>
837 x = _Stl_atodT<D,IEEE,M,BIAS>(digits, n, exp);
  /external/openssl/crypto/
sparccpuid.S 11 # define BIAS 2047
14 # define BIAS 0
126 add %fp,BIAS,%i0 ! return pointer to callerīs top of stack
238 add %sp,BIAS+2,%o1
  /external/webp/src/enc/
vp8enci.h 163 #define BIAS(b) ((b) << (QFIX - 8))
236 uint16_t bias_[16]; // rounding bias
quant.c 149 const int bias = kBiasMatrices[type][j]; local
151 m->bias_[j] = BIAS(bias);
153 m->zthresh_[j] = ((256 /*+ kCoeffThresh[j]*/ - bias) * m->q_[j] + 127) >> 8;
467 // If a coefficient was quantized to a value Q (using a neutral bias),
536 const int B = BIAS(0x00); // neutral bias
    [all...]
  /external/srec/config/en.us/dictionary/
c0.6     [all...]

Completed in 330 milliseconds