Home
last modified time | relevance | path

Searched refs:denorm (Results 1 – 24 of 24) sorted by relevance

/external/adhd/cras/src/dsp/tests/
Ddsp_util_test.c241 union ieee754_float denorm; in main() local
242 denorm.ieee.negative = 0; in main()
243 denorm.ieee.exponent = 0; in main()
244 denorm.ieee.mantissa = 1; in main()
245 TestRounding(denorm.f, 0, samples); in main()
246 denorm.ieee.negative = 1; in main()
247 denorm.ieee.exponent = 0; in main()
248 denorm.ieee.mantissa = 1; in main()
249 TestRounding(denorm.f, 0, samples); in main()
/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_format_float.c354 LLVMValueRef exp_one, isdenorm, denorm, normal, exp_adj; in lp_build_smallfloat_to_float() local
369 denorm = lp_build_or(&i32_bld, srcabs, magic); in lp_build_smallfloat_to_float()
370 denorm = LLVMBuildBitCast(builder, denorm, f32_bld.vec_type, ""); in lp_build_smallfloat_to_float()
371 denorm = lp_build_sub(&f32_bld, denorm, in lp_build_smallfloat_to_float()
373 denorm = LLVMBuildBitCast(builder, denorm, i32_bld.vec_type, ""); in lp_build_smallfloat_to_float()
382 res = lp_build_select(&i32_bld, isdenorm, denorm, normal); in lp_build_smallfloat_to_float()
/external/skqp/tests/
DSkRasterPipelineTest.cpp90 auto denorm = (int32_t)em < 0x38800000; // I32 comparison is often quicker, and always safe in h() local
92 return denorm ? SkTo<uint16_t>(0) in h()
/external/libgav1/libgav1/src/dsp/x86/
Dmotion_field_projection_sse4.cc93 const __m128i denorm = LoadDivision(division_table, source_reference_type8); in GetPosition() local
105 projection_mv[0] = MvProjectionClip(mv_y, denorm, numerator); in GetPosition()
106 projection_mv[1] = MvProjectionClip(mv_x, denorm, numerator); in GetPosition()
/external/libgav1/libgav1/src/dsp/arm/
Dmotion_field_projection_neon.cc97 const int16x8_t denorm = LoadDivision(division_table, source_reference_type8); in GetPosition() local
106 projection_mv[0] = MvProjectionClip(mv_yx.val[0], denorm, numerator); in GetPosition()
107 projection_mv[1] = MvProjectionClip(mv_yx.val[1], denorm, numerator); in GetPosition()
/external/skia/tests/
DSkRasterPipelineTest.cpp91 auto denorm = (int32_t)em < 0x38800000; // I32 comparison is often quicker, and always safe in h() local
93 return denorm ? SkTo<uint16_t>(0) in h()
/external/mesa3d/docs/relnotes/
D17.1.7.rst74 - radv: fix f16->f32 denorm handling for SI/CIK. (v2)
D19.3.0.rst2998 - nir: add support for flushing to zero denorm constants
3012 - nir: fix denorm flush-to-zero in sqrt's lowering at
D20.1.0.rst3054 - ac: unify denorm setting enforcement
/external/python/cpython3/Python/
Ddtoa.c2284 int denorm; in _Py_dg_dtoa() local
2352 denorm = 0; in _Py_dg_dtoa()
2363 denorm = 1; in _Py_dg_dtoa()
2575 denorm ? be + (Bias + (P-1) - 1 + 1) : in _Py_dg_dtoa()
/external/python/cpython2/Python/
Ddtoa.c2386 int denorm; in _Py_dg_dtoa() local
2454 denorm = 0; in _Py_dg_dtoa()
2465 denorm = 1; in _Py_dg_dtoa()
2677 denorm ? be + (Bias + (P-1) - 1 + 1) : in _Py_dg_dtoa()
/external/llvm/include/llvm/Support/
DMachO.h1498 denorm :1, member
1513 denorm :1, member
/external/mesa3d/src/amd/compiler/
Daco_lower_to_hw_instr.cpp1724 bld.sopp(aco_opcode::s_denorm_mode, -1, new_mode.denorm); in emit_set_mode()
1749 bool set_denorm = i == 0 && block->fp_mode.denorm != config_mode.denorm; in lower_to_hw_instr()
1754 if (program->blocks[pred].fp_mode.denorm != block->fp_mode.denorm) in lower_to_hw_instr()
Daco_ir.h211 uint8_t denorm:4; member
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DMachO.h1513 denorm :1, member
1528 denorm :1, member
/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DAMDGPUUsage.rst1789 denorm mode for half/double (16
1801 with specified denorm mode
1807 Floating point denorm mode
1809 … :ref:`amdgpu-amdhsa-floating-point-denorm-mode-enumeration-values-table`.
1814 with specified denorm mode
1820 Floating point denorm mode
1822 … :ref:`amdgpu-amdhsa-floating-point-denorm-mode-enumeration-values-table`.
2078 :name: amdgpu-amdhsa-floating-point-denorm-mode-enumeration-values-table
4544 … :ref:`amdgpu-amdhsa-floating-point-denorm-mode-enumeration-values-table`.
4548 … :ref:`amdgpu-amdhsa-floating-point-denorm-mode-enumeration-values-table`.
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
DvktShaderPackingFunctionTests.cpp820 const deBool denorm = temp.isDenorm(); in checkValue() local
822 if (conversion != CONVERTED && denorm) in checkValue()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/BinaryFormat/
DMachO.h1557 unsigned short invalid : 1, denorm : 1, zdiv : 1, ovrfl : 1, undfl : 1, member
1562 unsigned short invalid : 1, denorm : 1, zdiv : 1, ovrfl : 1, undfl : 1, member
/external/skqp/src/opts/
DSkRasterPipeline_opts.h745 auto denorm = (I32)em < 0x0400; // I32 comparison is often quicker, and always safe here. in from_half()
746 return if_then_else(denorm, F(0) in from_half()
765 auto denorm = (I32)em < 0x38800000; // I32 comparison is often quicker, and always safe here. in to_half()
766 return pack(if_then_else(denorm, U32(0) in to_half()
/external/skia/src/opts/
DSkRasterPipeline_opts.h1003 auto denorm = (I32)em < 0x0400; // I32 comparison is often quicker, and always safe here. in from_half()
1004 return if_then_else(denorm, F(0) in from_half()
1024 auto denorm = (I32)em < 0x38800000; // I32 comparison is often quicker, and always safe here. in to_half()
1025 return pack(if_then_else(denorm, U32(0) in to_half()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DIntrinsicsAMDGPU.td363 // v_mad_f32|f16/v_mac_f32|f16, selected regardless of denorm support.
/external/clang/test/
Dcxx-sections.data483 18.3.1.4 [denorm.style]
/external/llvm/tools/llvm-objdump/
DMachODump.cpp8506 outs() << " denorm " << fpu.fpu_fcw.denorm; in Print_x86_float_state_t()
8531 outs() << " denorm " << fpu.fpu_fsw.denorm; in Print_x86_float_state_t()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objdump/
DMachODump.cpp8969 outs() << " denorm " << fpu.fpu_fcw.denorm; in Print_x86_float_state_t()
8994 outs() << " denorm " << fpu.fpu_fsw.denorm; in Print_x86_float_state_t()