Home
last modified time | relevance | path

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

/dports/www/firefox-esr/firefox-91.8.0/gfx/skia/skia/src/core/
H A DSkHalf.cpp32 static const uint32_t f16infty = { 31 << 23 }; in SkFloatToHalf() local
59 if (floatUnion.fUInt > f16infty) { in SkFloatToHalf()
60 floatUnion.fUInt = f16infty; in SkFloatToHalf()
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/skia/skia/src/core/
H A DSkHalf.cpp32 static const uint32_t f16infty = { 31 << 23 }; in SkFloatToHalf() local
59 if (floatUnion.fUInt > f16infty) { in SkFloatToHalf()
60 floatUnion.fUInt = f16infty; in SkFloatToHalf()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/src/core/
H A DSkHalf.cpp32 static const uint32_t f16infty = { 31 << 23 }; in SkFloatToHalf() local
59 if (floatUnion.fUInt > f16infty) { in SkFloatToHalf()
60 floatUnion.fUInt = f16infty; in SkFloatToHalf()
/dports/www/firefox/firefox-99.0/gfx/skia/skia/src/core/
H A DSkHalf.cpp32 static const uint32_t f16infty = { 31 << 23 }; in SkFloatToHalf() local
59 if (floatUnion.fUInt > f16infty) { in SkFloatToHalf()
60 floatUnion.fUInt = f16infty; in SkFloatToHalf()
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/skia/skia/src/core/
H A DSkHalf.cpp32 static const uint32_t f16infty = { 31 << 23 }; in SkFloatToHalf() local
59 if (floatUnion.fUInt > f16infty) { in SkFloatToHalf()
60 floatUnion.fUInt = f16infty; in SkFloatToHalf()
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/skia/skia/src/core/
H A DSkHalf.cpp32 static const uint32_t f16infty = { 31 << 23 }; in SkFloatToHalf() local
59 if (floatUnion.fUInt > f16infty) { in SkFloatToHalf()
60 floatUnion.fUInt = f16infty; in SkFloatToHalf()
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/skia/skia/src/core/
H A DSkHalf.cpp32 static const uint32_t f16infty = { 31 << 23 }; in SkFloatToHalf() local
59 if (floatUnion.fUInt > f16infty) { in SkFloatToHalf()
60 floatUnion.fUInt = f16infty; in SkFloatToHalf()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/src/core/
H A DSkHalf.cpp32 static const uint32_t f16infty = { 31 << 23 }; in SkFloatToHalf() local
59 if (floatUnion.fUInt > f16infty) { in SkFloatToHalf()
60 floatUnion.fUInt = f16infty; in SkFloatToHalf()
/dports/emulators/ppsspp-qt5/ppsspp-1.12.3/Common/Math/
H A Dmath_util.h160 static const FP32 f16infty = { 31 << 23 }; in float_to_half_fast3() local
176 if (f.u > f16infty.u) f.u = f16infty.u; // Clamp to signed infinity if overflowed in float_to_half_fast3()
/dports/emulators/ppsspp/ppsspp-1.12.3/Common/Math/
H A Dmath_util.h160 static const FP32 f16infty = { 31 << 23 }; in float_to_half_fast3() local
176 if (f.u > f16infty.u) f.u = f16infty.u; // Clamp to signed infinity if overflowed in float_to_half_fast3()
/dports/emulators/libretro-ppsspp/ppsspp-1.12.3/Common/Math/
H A Dmath_util.h160 static const FP32 f16infty = { 31 << 23 }; in float_to_half_fast3() local
176 if (f.u > f16infty.u) f.u = f16infty.u; // Clamp to signed infinity if overflowed in float_to_half_fast3()
/dports/graphics/appleseed/appleseed-2.1.0-beta/src/appleseed/foundation/math/
H A Dhalf.h261 static const FP32 f16infty = { 31 << 23 }; in float_to_half_alt() local
286 if (f.u > f16infty.u) // clamp to signed infinity if overflowed in float_to_half_alt()
287 f.u = f16infty.u; in float_to_half_alt()
/dports/devel/ispc/ispc-1.16.1/
H A Dstdlib.ispc4700 const uniform int32 f16infty = 31ul << 23;
4703 fint2 = (fint2 > f16infty) ? f16infty : fint2; // Clamp to signed infinity if overflowed
4746 const int32 f16infty = 31ul << 23;