Home
last modified time | relevance | path

Searched refs:FLT_RADIX (Results 1 – 17 of 17) sorted by relevance

/third_party/skia/third_party/externals/harfbuzz/util/
Doptions.hh229 #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/flutter/skia/third_party/externals/harfbuzz/util/
Doptions.hh694 #ifndef FLT_RADIX
695 #define FLT_RADIX 2 macro
700 return x * (pow ((long double) FLT_RADIX, exp)); in scalbn()
705 return x * (pow ((float) FLT_RADIX, exp)); in scalbnf()
/third_party/harfbuzz/util/
Doptions.hh698 #ifndef FLT_RADIX
699 #define FLT_RADIX 2 macro
704 return x * (pow ((long double) FLT_RADIX, exp)); in scalbn()
709 return x * (pow ((float) FLT_RADIX, exp)); in scalbnf()
/third_party/FreeBSD/contrib/gdtoa/
Dgdtoaimp.h237 #define FLT_RADIX 2 macro
245 #define FLT_RADIX 16 macro
253 #define FLT_RADIX 2 macro
Dstrtod.c906 if (aadj < 2./FLT_RADIX)
907 aadj = 1./FLT_RADIX;
1022 else if (aadj < .4999999/FLT_RADIX)
/third_party/musl/porting/uniproton/kernel/include/
Dfloat.h11 #define FLT_RADIX 2 macro
/third_party/musl/ndk_musl_include/
Dfloat.h11 #define FLT_RADIX 2 macro
/third_party/musl/porting/liteos_a/kernel/include/
Dfloat.h11 #define FLT_RADIX 2 macro
/third_party/musl/porting/liteos_m/kernel/include/
Dfloat.h11 #define FLT_RADIX 2 macro
/third_party/musl/include/
Dfloat.h11 #define FLT_RADIX 2 macro
/third_party/musl/libc-test/src/api/
Dfloat.c9 C(FLT_RADIX) in f()
/third_party/vk-gl-cts/framework/delibs/debase/
DdeRandom.c90 DE_STATIC_ASSERT(FLT_RADIX == 2); in deRandom_getDouble()
/third_party/python/Modules/
Dcmathmodule.c45 #if (FLT_RADIX != 2 && FLT_RADIX != 16)
77 #if FLT_RADIX==2
79 #elif FLT_RADIX==16
/third_party/libxml2/
Dtrionan.c106 #if (FLT_RADIX == 2) && (DBL_MAX_EXP == 1024) && (DBL_MANT_DIG == 53)
/third_party/python/Python/
Ddtoa.c2044 if (aadj < 2./FLT_RADIX) in _Py_dg_strtod()
2045 aadj = 1./FLT_RADIX; in _Py_dg_strtod()
2105 else if (aadj < .4999999/FLT_RADIX) in _Py_dg_strtod()
/third_party/python/Objects/
Dfloatobject.c111 SetIntFlag(FLT_RADIX); in PyFloat_GetInfo()
/third_party/python/Doc/library/
Dsys.rst552 | :const:`radix` | FLT_RADIX | radix of exponent representation |