Home
last modified time | relevance | path

Searched refs:small_threshold (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/libclc/generic/lib/math/
H A Dcosh.cl34 // abs(x) >= small_threshold:
37 // abs(x) < small_threshold:
42 const float small_threshold = 0x1.0a2b24p+3f;
91 z = y >= small_threshold ? zsmall : z;
114 // abs(x) >= small_threshold:
118 // abs(x) < small_threshold:
126 const double small_threshold = 0x1.2b708872320e2p+4;
180 z = y >= small_threshold ? t : z;
H A Dsinh.cl34 // abs(x) >= small_threshold:
36 // abs(x) < small_threshold:
41 const float small_threshold = 0x1.0a2b24p+3f;
92 z = y >= small_threshold ? zsmall : z;
115 // abs(x) >= small_threshold:
119 // abs(x) < small_threshold:
126 const double small_threshold = 0x1.2b708872320e2p+4;
183 z = y >= small_threshold ? t : z;
/llvm-project-15.0.7/third-party/benchmark/src/
H A Dstring_util.cc48 const double small_threshold = adjusted_threshold; in ToExponentAndMantissa() local
66 } else if (val < small_threshold) { in ToExponentAndMantissa()
72 if (scaled >= small_threshold) { in ToExponentAndMantissa()