Home
last modified time | relevance | path

Searched refs:abs_n (Results 1 – 2 of 2) sorted by relevance

/external/bison/lib/
Dvasnprintf.c1076 unsigned int abs_n; in scale10_round_decimal_decoded() local
1106 abs_n = (n >= 0 ? n : -n); in scale10_round_decimal_decoded()
1108 pow5_ptr = (mp_limb_t *) malloc (((int)(abs_n * (2.322f / GMP_LIMB_BITS)) + 1 in scale10_round_decimal_decoded()
1120 if (abs_n > 0) in scale10_round_decimal_decoded()
1128 for (n13 = 0; n13 <= abs_n; n13 += 13) in scale10_round_decimal_decoded()
1130 mp_limb_t digit1 = small_pow5[n13 + 13 <= abs_n ? 13 : abs_n - n13]; in scale10_round_decimal_decoded()
/external/crcalc/src/com/hp/creals/
DCR.java239 int abs_n = Math.abs(n); in bound_log2() local
240 return (int)Math.ceil(Math.log((double)(abs_n + 1))/Math.log(2.0)); in bound_log2()