Searched refs:FLT_RADIX (Results 1 - 12 of 12) sorted by relevance
/third_party/skia/third_party/externals/harfbuzz/util/ |
H A D | options.hh | 229 #ifndef FLT_RADIX 230 #define FLT_RADIX 2 macro 235 return x * (pow ((long double) FLT_RADIX, exp)); in scalbn() 240 return x * (pow ((float) FLT_RADIX, exp)); in scalbnf()
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | float.h | 11 #define FLT_RADIX 2 macro
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | float.h | 11 #define FLT_RADIX 2 macro
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | float.h | 11 #define FLT_RADIX 2 macro
|
/third_party/musl/include/ |
H A D | float.h | 11 #define FLT_RADIX 2 macro
|
/third_party/musl/libc-test/src/api/ |
H A D | float.c | 9 C(FLT_RADIX) in f()
|
/third_party/vk-gl-cts/framework/delibs/debase/ |
H A D | deRandom.c | 90 DE_STATIC_ASSERT(FLT_RADIX == 2); in deRandom_getDouble()
|
/third_party/FreeBSD/contrib/gdtoa/ |
H A D | gdtoaimp.h | 119 * FLT_RADIX, FLT_ROUNDS, and DBL_MAX. 237 #define FLT_RADIX 2 macro 245 #define FLT_RADIX 16 macro 253 #define FLT_RADIX 2 macro 317 /* Quick_max = floor((P-1)*log(FLT_RADIX)/log(10) - 1) */ 318 /* Int_max = floor(P*log(FLT_RADIX)/log(10) - 1) */
|
H A D | strtod.c | 903 /* special case -- power of FLT_RADIX to be */ 906 if (aadj < 2./FLT_RADIX) 907 aadj = 1./FLT_RADIX; 1022 else if (aadj < .4999999/FLT_RADIX)
|
/third_party/python/Modules/ |
H A D | cmathmodule.c | 12 /* we need DBL_MAX, DBL_MIN, DBL_EPSILON, DBL_MANT_DIG and FLT_RADIX from 13 float.h. We assume that FLT_RADIX is either 2 or 16. */ 52 #if (FLT_RADIX != 2 && FLT_RADIX != 16) 53 #error "Modules/cmathmodule.c expects FLT_RADIX to be 2 or 16" 84 #if FLT_RADIX==2 86 #elif FLT_RADIX==16
|
/third_party/python/Python/ |
H A D | dtoa.c | 238 /* Quick_max = floor((P-1)*log(FLT_RADIX)/log(10) - 1) */ 239 /* Int_max = floor(P*log(FLT_RADIX)/log(10) - 1) */ 2042 /* special case -- power of FLT_RADIX to be */ in _Py_dg_strtod() 2045 if (aadj < 2./FLT_RADIX) in _Py_dg_strtod() 2046 aadj = 1./FLT_RADIX; in _Py_dg_strtod() 2106 else if (aadj < .4999999/FLT_RADIX) in _Py_dg_strtod()
|
/third_party/python/Objects/ |
H A D | floatobject.c | 80 {"radix", "FLT_RADIX -- radix of exponent"}, 118 SetIntFlag(FLT_RADIX); in PyFloat_GetInfo() 1603 If FLT_RADIX != 2, the 300 steps may leave a tiny fractional part in float_as_integer_ratio_impl()
|
Completed in 11 milliseconds