Lines Matching refs:by
4 | Description: Converts normalized packed bcd value pointed to by
24 | A1. Convert the bcd exponent to binary by successive adds and muls.
30 | A2. Convert the bcd mantissa to binary by successive
56 | A5. Form the final binary number by scaling the mantissa by
57 | the exponent factor. This is done by multiplying the
58 | mantissa in FP0 by the factor in FP1 if the adjusted
59 | exponent sign is positive, and dividing FP0 by FP1 if
125 | 2. Calculate absolute value of exponent in d1 by mul and add.
153 mulul #TEN,%d1 |mul partial product by one digit place
172 | 1. Calculate absolute value of mantissa in fp0 by mul and add.
252 | 6. Multiply the mantissa by 10**count.
258 | 6. Divide the mantissa by 10**count.
299 addql #8,%d1 |and inc count by 8
331 bccs ap_p_en |if 1, mul fp1 by pwrten factor
332 fmulx (%a1,%d3),%fp1 |mul by 10**(d3_bit_no)
337 fmulx %fp1,%fp0 |mul mantissa by 10**(no_bits_shifted)
348 addql #8,%d1 |inc counter by 8
379 bccs ap_n_en |if 1, mul fp1 by pwrten factor
380 fmulx (%a1,%d3),%fp1 |mul by 10**(d3_bit_no)
385 fdivx %fp1,%fp0 |div mantissa by 10**(no_bits_shifted)
464 fmulx (%a1,%d3),%fp1 |mul by 10**(d3_bit_no)
485 fdivx %fp1,%fp0 |exp is negative, so divide mant by exp
488 fmulx %fp1,%fp0 |exp is positive, so multiply by exp
494 | it will be inex2, but will be reported as inex1 by get_op.