Lines Matching refs:sfract
242 unsigned int sfract; /* Scaled fraction. */ in tic4x_gen_to_words() local
496 sfract = smant - sone; /* smant - 1.0. */ in tic4x_gen_to_words()
503 sfract = 0; in tic4x_gen_to_words()
507 sfract = -smant & (sone-1); /* 2.0 - smant. */ in tic4x_gen_to_words()
509 sfract |= sone; /* Insert sign bit. */ in tic4x_gen_to_words()
522 words[0] |= sfract >> 24; in tic4x_gen_to_words()
523 words[1] = sfract >> 8; in tic4x_gen_to_words()
526 words[2] = sfract >> 16; in tic4x_gen_to_words()
527 words[3] = sfract & 0xffff; in tic4x_gen_to_words()
532 sfract |= exponent << (mantissa_bits+1); in tic4x_gen_to_words()
535 words[0] = sfract; in tic4x_gen_to_words()
538 words[0] = sfract >> 16; in tic4x_gen_to_words()
539 words[1] = sfract & 0xffff; in tic4x_gen_to_words()