Home
last modified time | relevance | path

Searched refs:digit_count (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Python/
Dpystrtod.c603 int digit_count, insert_count = 0, convert_to_exp = 0; in ensure_decimal_point() local
616 digit_count = Py_SAFE_DOWNCAST(p - digits_start, Py_ssize_t, int); in ensure_decimal_point()
635 if (digit_count == precision) { in ensure_decimal_point()
647 assert(precision == -1 || digit_count < precision); in ensure_decimal_point()
670 assert(digit_count >= 1); in ensure_decimal_point()
671 memmove(p+2, p+1, digit_count); /* safe, but overwrites nul */ in ensure_decimal_point()
673 p += digit_count+1; in ensure_decimal_point()
681 written = PyOS_snprintf(p, buf_avail, "e%+.02d", digit_count-1); in ensure_decimal_point()
/third_party/flatbuffers/include/flatbuffers/
Dutil.h91 size_t digit_count = 0; in IntToDigitCount() local
93 if (t < 0) digit_count++; in IntToDigitCount()
95 if (-1 < t && t < 1) digit_count++; in IntToDigitCount()
100 digit_count++; in IntToDigitCount()
102 return digit_count; in IntToDigitCount()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-number-prototype.c303 lit_utf8_size_t digit_count = ecma_number_to_decimal (this_arg_number, digits, &exponent); in ecma_builtin_number_prototype_object_to_string() local
312 exponent = exponent - (int32_t) digit_count; in ecma_builtin_number_prototype_object_to_string()
/third_party/quickjs/
Dlibbf.c2885 slimb_t pos, expn, int_len, digit_count; in bf_atof_internal() local
2972 int_len = digit_count = 0; in bf_atof_internal()
2979 int_len = digit_count; in bf_atof_internal()
2985 digit_count++; in bf_atof_internal()
3013 int_len = digit_count; in bf_atof_internal()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
DDwarf.def293 HANDLE_DW_AT(0x5f, digit_count, 3, DWARF)
/third_party/skia/third_party/externals/wuffs/release/c/
Dwuffs-v0.3.c13716 uint32_t digit_count = (uint32_t)(p - start_of_digits_ptr); in wuffs_base__parse_number_f64() local
13770 if (digit_count > 19) { in wuffs_base__parse_number_f64()
13782 digit_count -= (uint32_t)(q - start_of_digits_ptr); in wuffs_base__parse_number_f64()
13783 if (digit_count > 19) { in wuffs_base__parse_number_f64()