Home
last modified time | relevance | path

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

/third_party/glib/glib/gnulib/
Dfloat+.h26 #if FLT_RADIX == 2
30 #elif FLT_RADIX == 4
34 #elif FLT_RADIX == 16
Disnan.c90 #define IEEE_FLOATING_POINT (FLT_RADIX == 2 && FLT_MANT_DIG == 24 \
/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/boost/boost/atomic/detail/
Dfloat_sizes.hpp29 #if (FLT_RADIX+0) == 2
79 #elif (FLT_RADIX+0) == 10
/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/musl/include/
Dfloat.h11 #define FLT_RADIX 2 macro
/third_party/musl/porting/uniproton/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/porting/liteos_a/kernel/include/
Dfloat.h11 #define FLT_RADIX 2 macro
/third_party/musl/ndk_musl_include/
Dfloat.h11 #define FLT_RADIX 2 macro
/third_party/boost/boost/container_hash/detail/
Dlimits.hpp55 BOOST_STATIC_CONSTANT(int, radix = FLT_RADIX);
/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/boost/boost/math/cstdfloat/
Dcstdfloat_types.hpp46 #if (!defined(FLT_RADIX) || ((defined(FLT_RADIX) && (FLT_RADIX != 2))))
/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/boost/libs/config/test/
Dmath_info.cpp319 PRINT_EXPRESSION(FLT_RADIX); in main()
/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.rst548 | :const:`radix` | FLT_RADIX | radix of exponent representation |