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

1 2

  /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_atanhl.c 49 #define BIAS (LDBL_MAX_EXP - 1)
65 if (ix < BIAS + EXP_TINY && (huge + x) > zero)
s_asinhl.c 51 #define BIAS (LDBL_MAX_EXP - 1)
78 if (ix < BIAS + EXP_TINY) { /* |x| < TINY, or misnormal */
81 if (ix >= BIAS + EXP_LARGE) { /* |x| >= LARGE, or misnormal */
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;
e_acoshl.c 49 #define BIAS (LDBL_MAX_EXP - 1)
75 } else if (hx >= BIAS + EXP_LARGE) { /* x >= LARGE */
e_coshl.c 38 #define BIAS (LDBL_MAX_EXP - 1)
102 if (ix<BIAS-(LDBL_MANT_DIG+1)/2) /* |x| < TINY */
e_sinhl.c 38 #define BIAS (LDBL_MAX_EXP - 1)
104 if (ix<BIAS-(LDBL_MANT_DIG+1)/2) /* |x|<TINY */
s_tanhl.c 39 #define BIAS (LDBL_MAX_EXP - 1)
132 if (__predict_false(ix<BIAS-(LDBL_MANT_DIG+1)/2)) { /* |x|<TINY */
catrig.c 538 #define BIAS (DBL_MAX_EXP - 1)
545 if (ix <= (BIAS + DBL_MAX_EXP / 2 - CUTOFF) << 20)
catrigf.c 324 #define BIAS (FLT_MAX_EXP - 1)
330 if (ix <= (BIAS + FLT_MAX_EXP / 2 - CUTOFF) << 23)
  /bionic/libm/upstream-freebsd/lib/msun/ld128/
invtrig.h 33 #define BIAS (LDBL_MAX_EXP - 1)
37 #define ASIN_LINEAR (BIAS - 56) /* 2**-56 */
38 #define ACOS_CONST (BIAS - 113) /* 2**-113 */
39 #define ATAN_CONST (BIAS + 113) /* 2**113 */
40 #define ATAN_LINEAR (BIAS - 56) /* 2**-56 */
s_expl.c 72 if (ix >= BIAS + 13) { /* |x| >= 8192 or x is NaN */
73 if (ix == BIAS + LDBL_MAX_EXP) {
82 } else if (ix < BIAS - 114) { /* |x| < 0x1p-114 */
97 SET_LDBL_EXPSIGN(twopk, BIAS + k);
100 SET_LDBL_EXPSIGN(twopk, BIAS + k + 10000);
214 if (ix >= BIAS + 7) { /* |x| >= 128 or x is NaN */
215 if (ix == BIAS + LDBL_MAX_EXP) {
240 if (ix < BIAS - 113) { /* |x| < 0x1p-113 */
262 if (ix >= BIAS - 7)
284 v.xbits.expsign = BIAS + k
    [all...]
e_rem_pio2l.h 31 #define BIAS (LDBL_MAX_EXP - 1)
74 if (ex < BIAS + 45 || ex == BIAS + 45 &&
124 e0 = ex - BIAS - 23; /* e0 = ilogb(|x|)-23; */
s_exp2l.c 39 #define BIAS (LDBL_MAX_EXP - 1)
40 #define EXPMASK (BIAS + LDBL_MAX_EXP)
366 if (ix >= BIAS + 14) { /* |x| >= 16384 */
367 if (ix == BIAS + LDBL_MAX_EXP) {
379 } else if (ix <= BIAS - 115) { /* |x| < 0x1p-115 */
k_expl.h 43 #define BIAS (LDBL_MAX_EXP - 1)
297 SET_LDBL_EXPSIGN(twopkm2, BIAS + k - 2);
321 SET_LDBL_EXPSIGN(scale1, BIAS + half_expt);
323 SET_LDBL_EXPSIGN(scale1, BIAS + expt - half_expt);
  /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/webp/src/enc/
vp8enci.h 168 #define BIAS(b) ((b) << (QFIX - 8))
241 uint32_t bias_[16]; // rounding bias
quant.c 174 #define SHARPEN_BITS 11 // number of descaling bits for sharpening bias
190 const int bias = kBiasMatrices[type][is_ac_coeff]; local
192 m->bias_[i] = BIAS(bias);
531 // If a coefficient was quantized to a value Q (using a neutral bias),
602 const uint32_t B = BIAS(0x00); // neutral bias
    [all...]
  /external/owasp/sanitizer/lib/htmlparser-1.3/
htmlparser-1.3-with-transitions.jar 

Completed in 892 milliseconds

1 2