Home
last modified time | relevance | path

Searched refs:high_bound (Results 1 – 5 of 5) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/base/
Decma-helpers-errol.c164 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/
Dreadable_font_data.cc364 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()
Dreadable_font_data.h304 int64_t ComputeCheckSum(int32_t low_bound, int32_t high_bound);
/third_party/flutter/skia/third_party/externals/sfntly/cpp/src/sfntly/data/
Dreadable_font_data.cc364 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()
Dreadable_font_data.h304 int64_t ComputeCheckSum(int32_t low_bound, int32_t high_bound);