Searched refs:FLT_RADIX (Results 1 - 2 of 2) sorted by relevance

/haiku/headers/build/gcc-2.95.3/
H A Dfloat.h8 #undef FLT_RADIX macro
9 #define FLT_RADIX 2 macro
10 /* Number of base-FLT_RADIX digits in the significand of a float */
22 /* Minimum int x such that FLT_RADIX**(x-1) is a normalised float */
31 /* Maximum int x such that FLT_RADIX**(x-1) is a representable float */
41 /* Number of base-FLT_RADIX digits in the significand of a double */
50 /* Minimum int x such that FLT_RADIX**(x-1) is a normalised double */
59 /* Maximum int x such that FLT_RADIX**(x-1) is a representable double */
69 /* Number of base-FLT_RADIX digits in the significand of a long double */
78 /* Minimum int x such that FLT_RADIX**(
[all...]
/haiku/src/system/libroot/posix/stdlib/
H A Dstrtod.c123 * FLT_RADIX, FLT_ROUNDS, and DBL_MAX.
175 # define FLT_RADIX 2 macro
184 # define FLT_RADIX 16 macro
193 # define FLT_RADIX 2 macro
251 /* Quick_max = floor((P-1)*log(FLT_RADIX)/log(10) - 1) */
252 /* Int_max = floor(P*log(FLT_RADIX)/log(10) - 1) */
1508 /* special case -- power of FLT_RADIX to be */
1511 if (aadj < 2./FLT_RADIX)
1512 aadj = 1./FLT_RADIX;
1603 } else if (aadj < .4999999/FLT_RADIX)
[all...]

Completed in 96 milliseconds