Searched refs:high_bound (Results 1 – 6 of 6) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/base/ |
D | ecma-helpers-errol.c | 164 ecma_high_prec_t high_bound, low_bound; in ecma_errol0_dtoa() local 166 high_bound.value = mid.value; in ecma_errol0_dtoa() 167 high_bound.offset = mid.offset; in ecma_errol0_dtoa() 171 high_bound.offset += (ECMA_NEXT_FLOAT (val) - val) * power_of_10 / (2.0 + ERROL0_EPSILON); in ecma_errol0_dtoa() 177 ecma_normalize_high_prec_data (&high_bound); in ecma_errol0_dtoa() 182 while (high_bound.value > 10.0 || (high_bound.value == 10.0 && (high_bound.offset >= 0.0))) in ecma_errol0_dtoa() 185 ecma_divide_high_prec_by_10 (&high_bound); in ecma_errol0_dtoa() 189 while (high_bound.value < 1.0 || (high_bound.value == 1.0 && (high_bound.offset < 0.0))) in ecma_errol0_dtoa() 192 ecma_multiply_high_prec_by_10 (&high_bound); in ecma_errol0_dtoa() 200 while (high_bound.value != 0.0 || high_bound.offset != 0.0) in ecma_errol0_dtoa() [all …]
|
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/data/ |
D | readable_font_data.cc | 364 int32_t high_bound = (low_bound_index == checksum_range_.size() - 1) ? in ComputeChecksum() local 367 sum += ComputeCheckSum(low_bound, high_bound); in ComputeChecksum() 376 int32_t high_bound) { in ComputeCheckSum() argument 379 for (int32_t i = low_bound; i <= high_bound - 4; i += 4) { in ComputeCheckSum() 384 int32_t off = high_bound & -4; in ComputeCheckSum() 385 if (off < high_bound) { in ComputeCheckSum() 387 int32_t b2 = (off + 1 < high_bound) ? ReadUByte(off + 1) : 0; in ComputeCheckSum() 388 int32_t b1 = (off + 2 < high_bound) ? ReadUByte(off + 2) : 0; in ComputeCheckSum()
|
D | readable_font_data.h | 304 int64_t ComputeCheckSum(int32_t low_bound, int32_t high_bound);
|
/third_party/mesa3d/src/amd/vulkan/ |
D | radv_meta_etc_decode.c | 148 nir_ssa_def *high_bound = nir_imm_int(b, 255); in decode_etc2_alpha() local 152 high_bound = nir_bcsel(b, is_signed, nir_imm_int(b, 1023), nir_imm_int(b, 2047)); in decode_etc2_alpha() 157 return nir_fmul(b, nir_i2f32(b, nir_iclamp(b, a, low_bound, high_bound)), final_mult); in decode_etc2_alpha()
|
/third_party/astc-encoder/Source/ |
D | astcenc_ideal_endpoints_and_weights.cpp | 931 float high_bound, in compute_quantized_weights_for_decimation() argument 951 if (high_bound < low_bound) in compute_quantized_weights_for_decimation() 954 high_bound = 1.0f; in compute_quantized_weights_for_decimation() 957 float rscale = high_bound - low_bound; in compute_quantized_weights_for_decimation()
|
D | astcenc_internal.h | 1923 float high_bound,
|