Lines Matching refs:sfract
243 unsigned int sfract; /* Scaled fraction. */ in tic4x_gen_to_words() local
497 sfract = smant - sone; /* smant - 1.0. */ in tic4x_gen_to_words()
504 sfract = 0; in tic4x_gen_to_words()
508 sfract = -smant & (sone-1); /* 2.0 - smant. */ in tic4x_gen_to_words()
510 sfract |= sone; /* Insert sign bit. */ in tic4x_gen_to_words()
523 words[0] |= sfract >> 24; in tic4x_gen_to_words()
524 words[1] = sfract >> 8; in tic4x_gen_to_words()
527 words[2] = sfract >> 16; in tic4x_gen_to_words()
528 words[3] = sfract & 0xffff; in tic4x_gen_to_words()
533 sfract |= exponent << (mantissa_bits+1); in tic4x_gen_to_words()
536 words[0] = sfract; in tic4x_gen_to_words()
539 words[0] = sfract >> 16; in tic4x_gen_to_words()
540 words[1] = sfract & 0xffff; in tic4x_gen_to_words()