Lines Matching refs:shift_amount
344 int32_t shift_amount = 0; in simple_decimal_conversion() local
346 shift_amount = 60; in simple_decimal_conversion()
348 shift_amount = POWERS_OF_TWO[hpd.get_decimal_point()]; in simple_decimal_conversion()
350 exp2 += shift_amount; in simple_decimal_conversion()
351 hpd.shift(-shift_amount); in simple_decimal_conversion()
357 int32_t shift_amount = 0; in simple_decimal_conversion() local
360 shift_amount = 60; in simple_decimal_conversion()
362 shift_amount = POWERS_OF_TWO[-hpd.get_decimal_point()]; in simple_decimal_conversion()
364 shift_amount = 1; in simple_decimal_conversion()
366 exp2 -= shift_amount; in simple_decimal_conversion()
367 hpd.shift(shift_amount); in simple_decimal_conversion()