Searched refs:exp_bias (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/contrib/gcclibs/include/
H A Dfloatformat.h67 is intentionally signed as, otherwize, -exp_bias can turn into a
68 very large number (e.g., given the exp_bias of 0x3fff and a 64
69 bit long, the equation (long)(1 - exp_bias) evaluates to
71 int exp_bias; member in struct:floatformat
73 the float, not adjusted by the exp_bias. This usually consists of all
/freebsd-11-stable/contrib/gdb/include/
H A Dfloatformat.h65 is intentionally signed as, otherwize, -exp_bias can turn into a
66 very large number (e.g., given the exp_bias of 0x3fff and a 64
67 bit long, the equation (long)(1 - exp_bias) evaluates to
69 int exp_bias; member in struct:floatformat
71 the float, not adjusted by the exp_bias. This usually consists of all
/freebsd-11-stable/contrib/binutils/include/
H A Dfloatformat.h67 is intentionally signed as, otherwize, -exp_bias can turn into a
68 very large number (e.g., given the exp_bias of 0x3fff and a 64
69 bit long, the equation (long)(1 - exp_bias) evaluates to
71 int exp_bias; member in struct:floatformat
73 the float, not adjusted by the exp_bias. This usually consists of all
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dfloatformat.c371 exponent -= fmt->exp_bias;
398 (- fmt->exp_bias
513 if (exponent + fmt->exp_bias - 1 > 0)
515 fmt->exp_len, exponent + fmt->exp_bias - 1);
522 mant = ldexp (mant, exponent + fmt->exp_bias - 1);
540 && exponent + fmt->exp_bias - 1 > 0)
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dfloatformat.c371 exponent -= fmt->exp_bias;
398 (- fmt->exp_bias
513 if (exponent + fmt->exp_bias - 1 > 0)
515 fmt->exp_len, exponent + fmt->exp_bias - 1);
522 mant = ldexp (mant, exponent + fmt->exp_bias - 1);
540 && exponent + fmt->exp_bias - 1 > 0)
/freebsd-11-stable/contrib/gdb/gdb/
H A Ddoublest.c178 to int; exp_bias is unsigned, so it's important to make sure the
181 exponent -= fmt->exp_bias;
183 exponent = 1 - fmt->exp_bias;
386 exponent + fmt->exp_bias - 1);

Completed in 205 milliseconds