Lines Matching defs:sign
84 unsigned int sign,
93 snprintf(buf, LIB_BUFLENGTH, "%c %s %s %s", sign ? '-' : '+',
168 unsigned int sign;
206 val = get_byte(bufp, offsets, &fieldindex); /* fetch sign byte & first part of characteristic */
208 sign = (val & 0x80) != 0;
270 fmt_flt(sign, mantissa_high, mantissa_low, characteristic),
297 return sign ? IEEE_NEGINFINITY : IEEE_POSINFINITY;
318 return sign ? IEEE_NEGOVERFLOW : IEEE_POSOVERFLOW;
385 * adjust for sign
387 if (sign)
423 unsigned int sign;
465 * find sign
471 sign = 1;
477 sign = 0;
547 printf("FP: %s\n", fmt_flt(sign, mantissa_high, mantissa_low, characteristic));