Home
last modified time | relevance | path

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

/titanic_50/usr/src/lib/libbc/libc/gen/common/
H A Ddouble_decim.c223 int tensig, tenpower; in binary_to_decimal_fraction() local
245 tensig = nfrac; in binary_to_decimal_fraction()
246 if (nsig > tensig) in binary_to_decimal_fraction()
247 tensig = nsig; in binary_to_decimal_fraction()
248 tensig = 1 + (((tensig + 2) * 217706) >> 16); in binary_to_decimal_fraction()
249 tensig = -tensig; in binary_to_decimal_fraction()
253 …ary to decimal fraction nsig %d nfrac %d tenpower %d tensig %d \n", nsig, nfrac, tenpower, tensig); in binary_to_decimal_fraction()
255 _big_float_times_power(&b, 10, tenpower, tensig, &pb); in binary_to_decimal_fraction()