/dports/graphics/appleseed/appleseed-2.1.0-beta/src/appleseed/foundation/math/ |
H A D | half.h | 260 static const FP32 f32infty = { 255 << 23 }; in float_to_half_alt() local 279 if (f.u >= f32infty.u) // Inf or NaN (all exponent bits set) in float_to_half_alt() 280 o = (f.u > f32infty.u) ? 0x7e00 : 0x7c00; // NaN->qNaN and Inf->Inf in float_to_half_alt() 301 static const FP32 f32infty = { 255 << 23 }; in fast_float_to_half() local 315 if (!(f.f < f32infty.u)) // Inf or NaN in fast_float_to_half() 385 const __m128i f32infty = c_f32infty; in float_to_half() 389 const __m128i b_isnan = _mm_cmpgt_epi32(absf_int, f32infty); in float_to_half() 390 const __m128i b_isnormal = _mm_cmpgt_epi32(f32infty, _mm_castps_si128(absf)); in float_to_half()
|
/dports/www/firefox-esr/firefox-91.8.0/gfx/skia/skia/src/core/ |
H A D | SkHalf.cpp | 31 static const uint32_t f32infty = { 255 << 23 }; in SkFloatToHalf() local 50 if (floatUnion.fUInt >= f32infty) in SkFloatToHalf() 52 o = (floatUnion.fUInt > f32infty) ? 0x7e00 : 0x7c00; in SkFloatToHalf()
|
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/skia/skia/src/core/ |
H A D | SkHalf.cpp | 31 static const uint32_t f32infty = { 255 << 23 }; in SkFloatToHalf() local 50 if (floatUnion.fUInt >= f32infty) in SkFloatToHalf() 52 o = (floatUnion.fUInt > f32infty) ? 0x7e00 : 0x7c00; in SkFloatToHalf()
|
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/src/core/ |
H A D | SkHalf.cpp | 31 static const uint32_t f32infty = { 255 << 23 }; in SkFloatToHalf() local 50 if (floatUnion.fUInt >= f32infty) in SkFloatToHalf() 52 o = (floatUnion.fUInt > f32infty) ? 0x7e00 : 0x7c00; in SkFloatToHalf()
|
/dports/www/firefox/firefox-99.0/gfx/skia/skia/src/core/ |
H A D | SkHalf.cpp | 31 static const uint32_t f32infty = { 255 << 23 }; in SkFloatToHalf() local 50 if (floatUnion.fUInt >= f32infty) in SkFloatToHalf() 52 o = (floatUnion.fUInt > f32infty) ? 0x7e00 : 0x7c00; in SkFloatToHalf()
|
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/skia/skia/src/core/ |
H A D | SkHalf.cpp | 31 static const uint32_t f32infty = { 255 << 23 }; in SkFloatToHalf() local 50 if (floatUnion.fUInt >= f32infty) in SkFloatToHalf() 52 o = (floatUnion.fUInt > f32infty) ? 0x7e00 : 0x7c00; in SkFloatToHalf()
|
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/skia/skia/src/core/ |
H A D | SkHalf.cpp | 31 static const uint32_t f32infty = { 255 << 23 }; in SkFloatToHalf() local 50 if (floatUnion.fUInt >= f32infty) in SkFloatToHalf() 52 o = (floatUnion.fUInt > f32infty) ? 0x7e00 : 0x7c00; in SkFloatToHalf()
|
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/skia/skia/src/core/ |
H A D | SkHalf.cpp | 31 static const uint32_t f32infty = { 255 << 23 }; in SkFloatToHalf() local 50 if (floatUnion.fUInt >= f32infty) in SkFloatToHalf() 52 o = (floatUnion.fUInt > f32infty) ? 0x7e00 : 0x7c00; in SkFloatToHalf()
|
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/src/core/ |
H A D | SkHalf.cpp | 31 static const uint32_t f32infty = { 255 << 23 }; in SkFloatToHalf() local 50 if (floatUnion.fUInt >= f32infty) in SkFloatToHalf() 52 o = (floatUnion.fUInt > f32infty) ? 0x7e00 : 0x7c00; in SkFloatToHalf()
|
/dports/emulators/ppsspp-qt5/ppsspp-1.12.3/Common/Math/ |
H A D | math_util.h | 159 static const FP32 f32infty = { 255 << 23 }; in float_to_half_fast3() local 169 if (f.u >= f32infty.u) // Inf or NaN (all exponent bits set) in float_to_half_fast3() 170 o.u = (f.u > f32infty.u) ? (0x7e00 | (f.u & 0x3ff)) : 0x7c00; // NaN->qNaN and Inf->Inf in float_to_half_fast3()
|
/dports/emulators/ppsspp/ppsspp-1.12.3/Common/Math/ |
H A D | math_util.h | 159 static const FP32 f32infty = { 255 << 23 }; in float_to_half_fast3() local 169 if (f.u >= f32infty.u) // Inf or NaN (all exponent bits set) in float_to_half_fast3() 170 o.u = (f.u > f32infty.u) ? (0x7e00 | (f.u & 0x3ff)) : 0x7c00; // NaN->qNaN and Inf->Inf in float_to_half_fast3()
|
/dports/emulators/libretro-ppsspp/ppsspp-1.12.3/Common/Math/ |
H A D | math_util.h | 159 static const FP32 f32infty = { 255 << 23 }; in float_to_half_fast3() local 169 if (f.u >= f32infty.u) // Inf or NaN (all exponent bits set) in float_to_half_fast3() 170 o.u = (f.u > f32infty.u) ? (0x7e00 | (f.u & 0x3ff)) : 0x7c00; // NaN->qNaN and Inf->Inf in float_to_half_fast3()
|
/dports/devel/fp16/FP16-4dfe081cf6bcd15db339cf2680b9281b8451eeb3/third-party/ |
H A D | eigen-half.h | 94 const FP32 f32infty = { 255 << 23 }; in float_to_half_rtne() 110 o.x = (f.u > f32infty.u) ? 0x7e00 : 0x7c00; // NaN->qNaN and Inf->Inf in float_to_half_rtne()
|
/dports/misc/glow/glow-f24d960e3cc80db95ac0bc17b1900dbf60ca044a/thirdparty/fp16/third-party/ |
H A D | eigen-half.h | 94 const FP32 f32infty = { 255 << 23 }; in float_to_half_rtne() 110 o.x = (f.u > f32infty.u) ? 0x7e00 : 0x7c00; // NaN->qNaN and Inf->Inf in float_to_half_rtne()
|
/dports/graphics/movit/movit-1.6.3/ |
H A D | fp16.h | 80 unsigned int f32infty = 255 << 23; in fp32_to_fp16() local 95 o.val = (f.u > f32infty) ? 0x7e00 : 0x7c00; // NaN->qNaN and Inf->Inf in fp32_to_fp16()
|
/dports/devel/vcglib/vcglib-2020.09/eigenlib/Eigen/src/Core/arch/CUDA/ |
H A D | Half.h | 295 const FP32 f32infty = { 255 << 23 }; in float_to_half_rtne() 311 o.x = (f.u > f32infty.u) ? 0x7e00 : 0x7c00; // NaN->qNaN and Inf->Inf in float_to_half_rtne()
|
/dports/science/pcmsolver/pcmsolver-1.3.0/external/eigen3/include/eigen3/Eigen/src/Core/arch/CUDA/ |
H A D | Half.h | 295 const FP32 f32infty = { 255 << 23 }; in float_to_half_rtne() 311 o.x = (f.u > f32infty.u) ? 0x7e00 : 0x7c00; // NaN->qNaN and Inf->Inf in float_to_half_rtne()
|
/dports/math/py-pystan/pystan-2.19.0.0/pystan/stan/lib/stan_math/lib/eigen_3.3.3/Eigen/src/Core/arch/CUDA/ |
H A D | Half.h | 295 const FP32 f32infty = { 255 << 23 }; in float_to_half_rtne() 311 o.x = (f.u > f32infty.u) ? 0x7e00 : 0x7c00; // NaN->qNaN and Inf->Inf in float_to_half_rtne()
|
/dports/graphics/open3d/Open3D-0.2/src/External/Eigen/Eigen/src/Core/arch/CUDA/ |
H A D | Half.h | 295 const FP32 f32infty = { 255 << 23 }; in float_to_half_rtne() 311 o.x = (f.u > f32infty.u) ? 0x7e00 : 0x7c00; // NaN->qNaN and Inf->Inf in float_to_half_rtne()
|
/dports/graphics/py-open3d-python/Open3D-0.2/src/External/Eigen/Eigen/src/Core/arch/CUDA/ |
H A D | Half.h | 295 const FP32 f32infty = { 255 << 23 }; in float_to_half_rtne() 311 o.x = (f.u > f32infty.u) ? 0x7e00 : 0x7c00; // NaN->qNaN and Inf->Inf in float_to_half_rtne()
|
/dports/math/gismo/gismo-21.12.0/external/Eigen/src/Core/arch/CUDA/ |
H A D | Half.h | 295 const FP32 f32infty = { 255 << 23 }; in float_to_half_rtne() 311 o.x = (f.u > f32infty.u) ? 0x7e00 : 0x7c00; // NaN->qNaN and Inf->Inf in float_to_half_rtne()
|
/dports/graphics/appleseed/appleseed-2.1.0-beta/src/thirdparty/bcd/ext/eigen/Eigen/src/Core/arch/CUDA/ |
H A D | Half.h | 295 const FP32 f32infty = { 255 << 23 }; in float_to_half_rtne() 311 o.x = (f.u > f32infty.u) ? 0x7e00 : 0x7c00; // NaN->qNaN and Inf->Inf in float_to_half_rtne()
|
/dports/misc/openmvg/openMVG-2.0/src/third_party/eigen/Eigen/src/Core/arch/CUDA/ |
H A D | Half.h | 295 const FP32 f32infty = { 255 << 23 }; in float_to_half_rtne() 311 o.x = (f.u > f32infty.u) ? 0x7e00 : 0x7c00; // NaN->qNaN and Inf->Inf in float_to_half_rtne()
|
/dports/math/vtk8/VTK-8.2.0/ThirdParty/eigen/vtkeigen/eigen/src/Core/arch/CUDA/ |
H A D | Half.h | 295 const FP32 f32infty = { 255 << 23 }; in float_to_half_rtne() 311 o.x = (f.u > f32infty.u) ? 0x7e00 : 0x7c00; // NaN->qNaN and Inf->Inf in float_to_half_rtne()
|
/dports/science/InsightToolkit/ITK-5.0.1/Modules/ThirdParty/Eigen3/src/itkeigen/Eigen/src/Core/arch/CUDA/ |
H A D | Half.h | 357 const float32_bits f32infty = { 255 << 23 }; 373 o.x = (f.u > f32infty.u) ? 0x7e00 : 0x7c00; // NaN->qNaN and Inf->Inf
|