Home
last modified time | relevance | path

Searched refs:isfinite (Results 1 - 25 of 149) sorted by relevance

123456

/third_party/musl/libc-test/src/math/
H A Dfpclassify.c101 if (!!isfinite(tf[i].f) != (tf[i].class > FP_INFINITE)) in main()
102 error(tf[i], isfinite); in main()
114 if (!!isfinite(td[i].f) != (td[i].class > FP_INFINITE)) in main()
115 error(td[i], isfinite); in main()
127 if (!!isfinite(tl[i].f) != (tl[i].class > FP_INFINITE)) in main()
128 error(tl[i], isfinite); in main()
/third_party/skia/modules/audioplayer/
H A DSkAudioPlayer.cpp16 if (!std::isfinite(t)) { in setTime()
39 if (!std::isfinite(r)) { in setRate()
50 if (!std::isfinite(v)) { in setVolume()
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/
H A Dcompatibility.hpp29 # undef isfinite macro
57 template <typename genType> GLM_FUNC_DECL bool isfinite(genType const & x); //!< \brief Test whether or not a scalar or each vector component is a finite value. (From GLM_GTX_compatibility)
58 template <typename T, precision P> GLM_FUNC_DECL tvec1<bool, P> isfinite(const tvec1<T, P>& x); //!< \brief Test whether or not a scalar or each vector component is a finite value. (From GLM_GTX_compatibility)
59 template <typename T, precision P> GLM_FUNC_DECL tvec2<bool, P> isfinite(const tvec2<T, P>& x); //!< \brief Test whether or not a scalar or each vector component is a finite value. (From GLM_GTX_compatibility)
60 template <typename T, precision P> GLM_FUNC_DECL tvec3<bool, P> isfinite(const tvec3<T, P>& x); //!< \brief Test whether or not a scalar or each vector component is a finite value. (From GLM_GTX_compatibility)
61 template <typename T, precision P> GLM_FUNC_DECL tvec4<bool, P> isfinite(const tvec4<T, P>& x); //!< \brief Test whether or not a scalar or each vector component is a finite value. (From GLM_GTX_compatibility)
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
H A DDevice.cpp456 (sourceRect->width() == 0.0f || !std::isfinite(sourceRect->width()) || in stretchRect()
457 sourceRect->height() == 0.0f || !std::isfinite(sourceRect->height()) || in stretchRect()
546 !std::isfinite(sRect.width()) || !std::isfinite(sRect.height())) in stretchRect()
894 if (!std::isfinite(rect->x0) || !std::isfinite(rect->x1) || in validRectangle()
895 !std::isfinite(rect->y0) || !std::isfinite(rect->y1)) in validRectangle()
908 if (!std::isfinite(offset)) in ClipDstRect()
925 if (!std::isfinite(offse in ClipDstRect()
[all...]
/third_party/node/deps/v8/src/date/
H A Ddate.cc476 if (std::isfinite(day) && std::isfinite(time)) { in MakeDate()
484 (kMinMonth <= month && month <= kMaxMonth) && std::isfinite(date)) { in MakeDay()
526 if (std::isfinite(hour) && std::isfinite(min) && std::isfinite(sec) && in MakeTime()
527 std::isfinite(ms)) { in MakeTime()
/third_party/node/deps/v8/src/numbers/
H A Dconversions-inl.h85 if (!std::isfinite(x)) return x;
93 if ((std::isfinite(x)) && (x <= INT_MAX) && (x >= INT_MIN)) {
117 if ((std::isfinite(x)) && (x <= kMaxSafeInteger) && (x >= kMinSafeInteger)) { in DoubleToWebIDLInt64()
/third_party/musl/src/math/
H A Dfmal.c179 if (!isfinite(x) || !isfinite(y)) in fmal()
181 if (!isfinite(z)) in fmal()
H A Dfinitef.c6 return isfinite(x); in finitef()
H A Dfinite.c6 return isfinite(x); in finite()
H A Dlogb.c12 if (!isfinite(x)) in logb()
H A Dlogbf.c5 if (!isfinite(x)) in logbf()
H A Dlogbl.c10 if (!isfinite(x)) in logbl()
H A Dscalb.c25 if (!isfinite(fn)) { in scalb()
/third_party/musl/porting/liteos_a/kernel/src/math/
H A Dfmal.c179 if (!isfinite(x) || !isfinite(y)) in fmal()
181 if (!isfinite(z)) in fmal()
H A Dfinitef.c6 return isfinite(x); in finitef()
H A Dfinite.c6 return isfinite(x); in finite()
H A Dlogb.c12 if (!isfinite(x)) in logb()
H A Dlogbf.c5 if (!isfinite(x)) in logbf()
H A Dlogbl.c10 if (!isfinite(x)) in logbl()
/third_party/protobuf/src/google/protobuf/stubs/
H A Dmathutil.h151 if (!std::isfinite(x) || !std::isfinite(y)) { in WithinFractionOrMargin()
/third_party/pulseaudio/src/tests/
H A Dvolume-test.c118 if (isfinite(db) && isfinite(db2)) in START_TEST()
/third_party/protobuf/src/google/protobuf/util/internal/
H A Djson_objectwriter.cc118 if (std::isfinite(value)) { in RenderDouble()
128 if (std::isfinite(value)) { in RenderFloat()
/third_party/skia/third_party/externals/abseil-cpp/absl/random/
H A Duniform_real_distribution.h81 assert(std::isfinite(range_)); in param_type()
167 if (res < p.b() || p.range_ <= 0 || !std::isfinite(p.range_)) { in operator ()()
/third_party/node/deps/v8/src/base/
H A Dqnx-math.h11 #undef isfinite macro
/third_party/node/deps/v8/third_party/inspector_protocol/crdtp/
H A Djson_platform_v8.cc21 return std::isfinite(*result); in StrToD()

Completed in 11 milliseconds

123456