Home
last modified time | relevance | path

Searched refs:exp_bits (Results 1 – 3 of 3) sorted by relevance

/third_party/ltp/tools/sparse/sparse-src/
Dcgcc191 my ($mant_bits,$exp_bits) = @{ shift @bitsizes };
198 my $max_exp = 1 << ($exp_bits - 1);
/third_party/mesa3d/src/amd/llvm/
Dac_llvm_build.c1392 unsigned exp_bits, unsigned mant_bits) in ac_ufN_to_float() argument
1403 unsigned bias_shift = 127 - ((1 << (exp_bits - 1)) - 1); in ac_ufN_to_float()
1437 LLVMConstInt(ctx->i32, ((1ULL << exp_bits) - 1) << mant_bits, false), ""); in ac_ufN_to_float()
/third_party/quickjs/
Dquickjs.c50026 int exp_bits, flags, saved_flags; in js_float_env_setPrec() local
50036 exp_bits = BF_EXP_BITS_MAX; in js_float_env_setPrec()
50039 if (JS_ToInt32Sat(ctx, &exp_bits, argv[2])) in js_float_env_setPrec()
50041 if (exp_bits < BF_EXP_BITS_MIN || exp_bits > BF_EXP_BITS_MAX) in js_float_env_setPrec()
50045 flags = BF_RNDN | BF_FLAG_SUBNORMAL | bf_set_exp_bits(exp_bits); in js_float_env_setPrec()