Home
last modified time | relevance | path

Searched refs:denormal (Results 1 – 18 of 18) sorted by relevance

/third_party/musl/porting/liteos_m/kernel/src/internal/
Dfloatscan.c75 int denormal = 0; in decfloat() local
269 denormal = 1; in decfloat()
302 if (denormal && bits==LDBL_MANT_DIG+e2-emin) in decfloat()
303 denormal = 0; in decfloat()
307 if (e2+LDBL_MANT_DIG>emax || (denormal && frac)) in decfloat()
/third_party/musl/porting/uniproton/kernel/src/internal/
Dfloatscan.c75 int denormal = 0; in decfloat() local
269 denormal = 1; in decfloat()
302 if (denormal && bits==LDBL_MANT_DIG+e2-emin) in decfloat()
303 denormal = 0; in decfloat()
307 if (e2+LDBL_MANT_DIG>emax || (denormal && frac)) in decfloat()
/third_party/musl/src/internal/
Dfloatscan.c75 int denormal = 0; in decfloat() local
269 denormal = 1; in decfloat()
302 if (denormal && bits==LDBL_MANT_DIG+e2-emin) in decfloat()
303 denormal = 0; in decfloat()
307 if (e2+LDBL_MANT_DIG>emax || (denormal && frac)) in decfloat()
/third_party/musl/porting/liteos_a/kernel/src/internal/
Dfloatscan.c75 int denormal = 0; in decfloat() local
269 denormal = 1; in decfloat()
302 if (denormal && bits==LDBL_MANT_DIG+e2-emin) in decfloat()
303 denormal = 0; in decfloat()
307 if (e2+LDBL_MANT_DIG>emax || (denormal && frac)) in decfloat()
/third_party/ffmpeg/libavutil/
Davsscanf.c257 int denormal = 0; in decfloat() local
452 denormal = 1; in decfloat()
485 if (denormal && bits==DBL_MANT_DIG+e2-emin) in decfloat()
486 denormal = 0; in decfloat()
490 if (e2+DBL_MANT_DIG>emax || (denormal && frac)) in decfloat()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUFeatures.td27 "Enable single precision denormal handling"
DAMDGPU.td497 "Enable double and half precision denormal handling",
504 "Enable double and half precision denormal handling",
511 "Enable half precision denormal handling",
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DCommandFlags.inc155 "denormal-fp-math",
156 cl::desc("Select which denormal numbers the code is permitted to require"),
159 "IEEE 754 denormal numbers"),
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/str_format/
Dconvert_test.cc173 const double denormal = std::numeric_limits<double>::denorm_min(); in VerifyNativeImplementationImpl() local
175 StartsWith(StrPrint("%a", denormal), "0x0.0000000000001"); in VerifyNativeImplementationImpl()
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/
DARB_half_float_pixel.txt111 4. Should the special representations NaN, INF, and denormal be
/third_party/openGLES/extensions/ARB/
DARB_half_float_pixel.txt121 4. Should the special representations NaN, INF, and denormal be
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
DShaderCore.cpp591 SIMD::UInt denormal = CmpLT(e, SIMD::UInt(24)) & (mantissa >> e); in floatToHalfBits() local
593 SIMD::UInt base = (normal & abs) | (~normal & denormal); // TODO: IfThenElse() in floatToHalfBits()
/third_party/mesa3d/src/amd/llvm/
Dac_llvm_build.c1473 LLVMValueRef denormal; in ac_ufN_to_float() local
1482 denormal = LLVMBuildShl(ctx->builder, mantissa, tmp, ""); in ac_ufN_to_float()
1487 denormal = LLVMBuildAdd(ctx->builder, denormal, tmp, ""); in ac_ufN_to_float()
1498 result = LLVMBuildSelect(ctx->builder, tmp, result, denormal, ""); in ac_ufN_to_float()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DIntrinsicsAMDGPU.td1853 // Emit 2.5 ulp, no denormal division. Should only be inserted by
/third_party/musl/
DWHATSNEW1167 - buffer overflow in printf when printing smallest denormal exactly
/third_party/mesa3d/docs/relnotes/
D20.1.0.rst3055 - ac: set new LLVM denormal flags
D21.1.0.rst4807 - aco/tests: add tests for denormal-aware propagation
/third_party/gstreamer/gstreamer/
DChangeLog42973 denormal format. This exposes the limit better than the runtime check.