Home
last modified time | relevance | path

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

/titanic_50/usr/src/lib/libbc/libc/gen/common/
H A D_times_power.c97 …unsigned short productsize, trailing_zeros_to_delete, needed_precision, *pp, *table[3], max[3], *… in _big_float_times_power() local
163 productsize = pbf->blength; in _big_float_times_power()
165 productsize += (start[i])[tablepower[i] + 1] - (start[i])[tablepower[i]]; in _big_float_times_power()
167 if (productsize < needed_precision) in _big_float_times_power()
168 needed_precision = productsize; in _big_float_times_power()
170 if (productsize <= pbf->bsize) { in _big_float_times_power()
176 mallocarg = sizeof(_big_float) + sizeof(_BIG_FLOAT_DIGIT) * (productsize - _BIG_FLOAT_SIZE); in _big_float_times_power()
191 pbf->bsize = productsize; in _big_float_times_power()
/titanic_50/usr/src/lib/libc/port/fp/
H A D__x_power.c238 int base, needed_precision, productsize; in __big_float_times_power() local
349 productsize = pbf->blength; in __big_float_times_power()
351 productsize += length[i]; in __big_float_times_power()
353 if (productsize < needed_precision) in __big_float_times_power()
354 needed_precision = productsize; in __big_float_times_power()
356 if (productsize <= pbf->bsize) { in __big_float_times_power()
360 (productsize - _BIG_FLOAT_SIZE); in __big_float_times_power()
370 pbf->bsize = productsize; in __big_float_times_power()