Home
last modified time | relevance | path

Searched refs:isfinite (Results 1 – 25 of 185) sorted by relevance

12345678

/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/
Dcompatibility.inl8 // isfinite
10 GLM_FUNC_QUALIFIER bool isfinite( function
14 return std::isfinite(x) != 0;
28 GLM_FUNC_QUALIFIER tvec1<bool, P> isfinite( function
32 isfinite(x.x));
36 GLM_FUNC_QUALIFIER tvec2<bool, P> isfinite( function
40 isfinite(x.x),
41 isfinite(x.y));
45 GLM_FUNC_QUALIFIER tvec3<bool, P> isfinite( function
49 isfinite(x.x),
[all …]
Dcompatibility.hpp29 # undef isfinite
57 …template <typename genType> GLM_FUNC_DECL bool isfinite(genType const & x); //!< \brief …
58 …template <typename T, precision P> GLM_FUNC_DECL tvec1<bool, P> isfinite(const tvec1<T, P>& x); …
59 …template <typename T, precision P> GLM_FUNC_DECL tvec2<bool, P> isfinite(const tvec2<T, P>& x); …
60 …template <typename T, precision P> GLM_FUNC_DECL tvec3<bool, P> isfinite(const tvec3<T, P>& x); …
61 …template <typename T, precision P> GLM_FUNC_DECL tvec4<bool, P> isfinite(const tvec4<T, P>& x); …
/third_party/python/Lib/test/decimaltestdata/
Dextra.decTest459 bool0210 isfinite 0E-2000 -> 1
460 bool0211 isfinite -0E-2000 -> 1
461 bool0212 isfinite 0E-1008 -> 1
462 bool0213 isfinite -0E-1008 -> 1
463 bool0214 isfinite 0E-1007 -> 1
464 bool0215 isfinite -0E-1007 -> 1
465 bool0216 isfinite 0E-1006 -> 1
466 bool0217 isfinite -0E-1006 -> 1
467 bool0218 isfinite 0E-1000 -> 1
468 bool0219 isfinite -0E-1000 -> 1
[all …]
/third_party/skia/third_party/externals/tint/test/intrinsics/gen/isFinite/
D426f9f.wgsl.expected.glsl7 bool res = isfinite(1.0f);
34 ERROR: 0:5: 'isfinite' : no matching overloaded function found
45 bool res = isfinite(1.0f);
62 ERROR: 0:5: 'isfinite' : no matching overloaded function found
73 bool res = isfinite(1.0f);
91 ERROR: 0:5: 'isfinite' : no matching overloaded function found
D8a23ad.wgsl.expected.glsl7 bvec3 res = isfinite(vec3(0.0f, 0.0f, 0.0f));
34 ERROR: 0:5: 'isfinite' : no matching overloaded function found
45 bvec3 res = isfinite(vec3(0.0f, 0.0f, 0.0f));
62 ERROR: 0:5: 'isfinite' : no matching overloaded function found
73 bvec3 res = isfinite(vec3(0.0f, 0.0f, 0.0f));
91 ERROR: 0:5: 'isfinite' : no matching overloaded function found
Df31987.wgsl.expected.glsl7 bvec4 res = isfinite(vec4(0.0f, 0.0f, 0.0f, 0.0f));
34 ERROR: 0:5: 'isfinite' : no matching overloaded function found
45 bvec4 res = isfinite(vec4(0.0f, 0.0f, 0.0f, 0.0f));
62 ERROR: 0:5: 'isfinite' : no matching overloaded function found
73 bvec4 res = isfinite(vec4(0.0f, 0.0f, 0.0f, 0.0f));
91 ERROR: 0:5: 'isfinite' : no matching overloaded function found
D34d32b.wgsl.expected.glsl7 bvec2 res = isfinite(vec2(0.0f, 0.0f));
34 ERROR: 0:5: 'isfinite' : no matching overloaded function found
45 bvec2 res = isfinite(vec2(0.0f, 0.0f));
62 ERROR: 0:5: 'isfinite' : no matching overloaded function found
73 bvec2 res = isfinite(vec2(0.0f, 0.0f));
91 ERROR: 0:5: 'isfinite' : no matching overloaded function found
/third_party/glslang/Test/
Dhlsl.isfinite.frag8 return !isnan(v) && isfinite(v);
13 isfinite(f);
14 isfinite(f2);
15 isfinite(f3);
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/
DSampler.cpp30 if (!std::isfinite(descriptor->lodMinClamp) || !std::isfinite(descriptor->lodMaxClamp)) { in ValidateSamplerDescriptor()
108 ASSERT(std::isfinite(a->mLodMinClamp)); in operator ()()
109 ASSERT(std::isfinite(b->mLodMinClamp)); in operator ()()
110 ASSERT(std::isfinite(a->mLodMaxClamp)); in operator ()()
111 ASSERT(std::isfinite(b->mLodMaxClamp)); in operator ()()
/third_party/musl/libc-test/src/math/
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/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
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(offset)) in ClipDstRect()
942 if (!std::isfinite(offset)) in ClipDstRect()
959 if (!std::isfinite(offset)) in ClipDstRect()
982 if (!FloatFitsInInt(offsetf) || !std::isfinite(ratio)) in ClipSrcRect()
[all …]
/third_party/skia/modules/audioplayer/
DSkAudioPlayer.cpp16 if (!std::isfinite(t)) { in setTime()
39 if (!std::isfinite(r)) { in setRate()
50 if (!std::isfinite(v)) { in setVolume()
/third_party/unity/test/tests/
Dtest_unity_floats.c828 if(isfinite(lower)) sprintf(expected_lower, "%.7g", lower); in printFloatValue()
829 if(isfinite(higher)) sprintf(expected_higher, "%.7g", higher); in printFloatValue()
839 if (isfinite(lower2)) sprintf(expected_lower2, "%.7g", lower2); in printFloatValue()
840 if (isfinite(lower3)) sprintf(expected_lower3, "%.7g", lower3); in printFloatValue()
841 if (isfinite(higher2)) sprintf(expected_higher2, "%.7g", higher2); in printFloatValue()
842 if (isfinite(higher3)) sprintf(expected_higher3, "%.7g", higher3); in printFloatValue()
/third_party/jsoncpp/src/lib_json/
Djson_writer.cpp28 #if !defined(isfinite)
29 #define isfinite std::isfinite macro
42 #if !defined(isfinite)
44 #define isfinite _finite macro
54 #if !defined(isfinite)
56 #define isfinite finite macro
61 #if !defined(isfinite)
63 #define isfinite(x) \ macro
75 #if !defined(isfinite)
76 #define isfinite finite macro
[all …]
/third_party/musl/src/math/
Dfmal.c179 if (!isfinite(x) || !isfinite(y)) in fmal()
181 if (!isfinite(z)) in fmal()
Dfinitef.c6 return isfinite(x); in finitef()
Dfinite.c6 return isfinite(x); in finite()
/third_party/musl/porting/liteos_a/kernel/src/math/
Dfmal.c179 if (!isfinite(x) || !isfinite(y)) in fmal()
181 if (!isfinite(z)) in fmal()
Dfinite.c6 return isfinite(x); in finite()
Dfinitef.c6 return isfinite(x); in finitef()
/third_party/protobuf/src/google/protobuf/util/internal/
Djson_objectwriter.cc118 if (std::isfinite(value)) { in RenderDouble()
128 if (std::isfinite(value)) { in RenderFloat()
/third_party/protobuf/src/google/protobuf/stubs/
Dmathutil.h151 if (!std::isfinite(x) || !std::isfinite(y)) { in WithinFractionOrMargin()
/third_party/pulseaudio/src/tests/
Dvolume-test.c118 if (isfinite(db) && isfinite(db2)) in START_TEST()
/third_party/flutter/skia/tests/
DRectTest.cpp131 bool isfinite = r.setBoundsCheck(pts, n); in DEF_TEST() local
132 REPORTER_ASSERT(reporter, !isfinite); in DEF_TEST()
/third_party/skia/third_party/externals/abseil-cpp/absl/random/
Duniform_real_distribution.h81 assert(std::isfinite(range_)); in lo_()
167 if (res < p.b() || p.range_ <= 0 || !std::isfinite(p.range_)) { in operator()

12345678