Home
last modified time | relevance | path

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

/toolchain/binutils/binutils-2.25/gas/config/
Dtc-tic4x.c242 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()
[all …]