Home
last modified time | relevance | path

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

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