Home
last modified time | relevance | path

Searched refs:floating_point (Results 1 – 13 of 13) sorted by relevance

/external/cronet/buildtools/third_party/libc++/trunk/test/std/concepts/concepts.lang/concepts.arithmetic/
Dfloating_point.pass.cpp21 constexpr bool result = std::floating_point<T>; in CheckFloatingPointQualifiers()
22 static_assert(std::floating_point<const T> == result); in CheckFloatingPointQualifiers()
23 static_assert(std::floating_point<volatile T> == result); in CheckFloatingPointQualifiers()
24 static_assert(std::floating_point<const volatile T> == result); in CheckFloatingPointQualifiers()
26 static_assert(!std::floating_point<T&>); in CheckFloatingPointQualifiers()
27 static_assert(!std::floating_point<const T&>); in CheckFloatingPointQualifiers()
28 static_assert(!std::floating_point<volatile T&>); in CheckFloatingPointQualifiers()
29 static_assert(!std::floating_point<const volatile T&>); in CheckFloatingPointQualifiers()
31 static_assert(!std::floating_point<T&&>); in CheckFloatingPointQualifiers()
32 static_assert(!std::floating_point<const T&&>); in CheckFloatingPointQualifiers()
[all …]
/external/ComputeLibrary/tests/framework/instruments/
DMeasurement.h61 os << arithmetic_to_string(value.v.floating_point, 4);
87 b.v.floating_point += v.floating_point;
106 b.v.floating_point -= v.floating_point;
125 b.v.floating_point *= v.floating_point;
145 res.v.floating_point = v.floating_point / b;
164 v.floating_point -= b.v.floating_point;
183 return v.floating_point < b.v.floating_point;
202 return 100.0 * sqrt(variance.v.floating_point) / mean.v.floating_point; in relative_standard_deviation()
213 double floating_point; member
255 _value.v.floating_point = static_cast<double>(v); in _unit()
DMaliCounter.cpp425 …Measurement counters((_counters.at("GPU_ACTIVE").value() / _scale_factor).v.floating_point, _unit … in measurements()
/external/libcxx/include/
Dcmath48 floating_point abs(floating_point x);
50 floating_point acos (arithmetic x);
54 floating_point asin (arithmetic x);
58 floating_point atan (arithmetic x);
62 floating_point atan2 (arithmetic y, arithmetic x);
66 floating_point ceil (arithmetic x);
70 floating_point cos (arithmetic x);
74 floating_point cosh (arithmetic x);
78 floating_point exp (arithmetic x);
82 floating_point fabs (arithmetic x);
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/include/
Dnumbers31 template<floating_point T> inline constexpr T e_v<T> = see below;
32 template<floating_point T> inline constexpr T log2e_v<T> = see below;
33 template<floating_point T> inline constexpr T log10e_v<T> = see below;
34 template<floating_point T> inline constexpr T pi_v<T> = see below;
35 template<floating_point T> inline constexpr T inv_pi_v<T> = see below;
36 template<floating_point T> inline constexpr T inv_sqrtpi_v<T> = see below;
37 template<floating_point T> inline constexpr T ln2_v<T> = see below;
38 template<floating_point T> inline constexpr T ln10_v<T> = see below;
39 template<floating_point T> inline constexpr T sqrt2_v<T> = see below;
40 template<floating_point T> inline constexpr T sqrt3_v<T> = see below;
[all …]
Dcmath47 floating_point abs(floating_point x);
49 floating_point acos (arithmetic x);
53 floating_point asin (arithmetic x);
57 floating_point atan (arithmetic x);
61 floating_point atan2 (arithmetic y, arithmetic x);
65 floating_point ceil (arithmetic x);
69 floating_point cos (arithmetic x);
73 floating_point cosh (arithmetic x);
77 floating_point exp (arithmetic x);
81 floating_point fabs (arithmetic x);
[all …]
Dconcepts45 concept floating_point = see below;
/external/cronet/buildtools/third_party/libc++/trunk/include/__format/
Dformatter_floating_point.h56 template <floating_point _Tp>
63 template <floating_point _Tp>
70 template <floating_point _Tp>
110 template <floating_point _Fp>
140 template <floating_point _Fp>
611 template <floating_point _Tp, class _CharT>
738 template <floating_point _Tp>
/external/cronet/buildtools/third_party/libc++/trunk/include/__concepts/
Darithmetic.h39 concept floating_point = is_floating_point_v<_Tp>; variable
/external/pdfium/third_party/lcms/src/
Dcmsplugin.c173 cmsFloat32Number floating_point; in _cmsReadFloat32Number() member
184 *n = tmp.floating_point; in _cmsReadFloat32Number()
313 cmsFloat32Number floating_point; in _cmsWriteFloat32Number() member
316 tmp.floating_point = n; in _cmsWriteFloat32Number()
/external/cronet/third_party/icu/source/test/depstest/
Ddependencies.txt21 int_functions floating_point trigonometry
77 group: floating_point
868 floating_point system_locale
1100 floating_point # sqrt() for astro.o
/external/icu/icu4c/source/test/depstest/
Ddependencies.txt21 int_functions floating_point trigonometry
77 group: floating_point
868 floating_point system_locale
1100 floating_point # sqrt() for astro.o
/external/cronet/buildtools/third_party/libc++/trunk/include/__chrono/
Dformatter.h609 if constexpr (std::floating_point<_Rep>)