Lines Matching refs:sign
84 unsigned int sign, in fmt_flt() argument
93 snprintf(buf, LIB_BUFLENGTH, "%c %s %s %s", sign ? '-' : '+', in fmt_flt()
168 unsigned int sign; in fetch_ieee754() local
208 sign = (val & 0x80) != 0; in fetch_ieee754()
270 fmt_flt(sign, mantissa_high, mantissa_low, characteristic), in fetch_ieee754()
297 return sign ? IEEE_NEGINFINITY : IEEE_POSINFINITY; in fetch_ieee754()
318 return sign ? IEEE_NEGOVERFLOW : IEEE_POSOVERFLOW; in fetch_ieee754()
387 if (sign) in fetch_ieee754()
423 unsigned int sign; in put_ieee754() local
471 sign = 1; in put_ieee754()
477 sign = 0; in put_ieee754()
547 printf("FP: %s\n", fmt_flt(sign, mantissa_high, mantissa_low, characteristic)); in put_ieee754()