Home
last modified time | relevance | path

Searched refs:digits_p (Results 1 – 2 of 2) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-number-prototype.c75 ecma_builtin_number_prototype_helper_to_string (lit_utf8_byte_t *digits_p, /**< number as string in… in ecma_builtin_number_prototype_helper_to_string() argument
106 memmove (p, digits_p, (size_t) to_copy); in ecma_builtin_number_prototype_helper_to_string()
109 digits_p += to_copy; in ecma_builtin_number_prototype_helper_to_string()
132 memmove (p, digits_p, (size_t) to_copy); in ecma_builtin_number_prototype_helper_to_string()
153 ecma_builtin_binary_floating_number_to_string (lit_utf8_byte_t *digits_p, /**< number as string in ecma_builtin_binary_floating_number_to_string() argument
163 *p++ = *digits_p++; in ecma_builtin_binary_floating_number_to_string()
178 *p++ = (*digits_p == 0 ? '0' : *digits_p++); in ecma_builtin_binary_floating_number_to_string()
192 ecma_builtin_number_prototype_helper_round (lit_utf8_byte_t *digits_p, /**< [in,out] number as a st… in ecma_builtin_number_prototype_helper_round() argument
209 if (digits_p[round_num] >= '5') in ecma_builtin_number_prototype_helper_round()
211 digits_p[round_num] = '0'; in ecma_builtin_number_prototype_helper_round()
[all …]
/third_party/jerryscript/jerry-core/parser/regexp/
Dre-parser.c718 const lit_utf8_byte_t *digits_p = re_ctx_p->input_curr_p; in re_parse_next_token() local
719 const uint32_t value = lit_parse_decimal (&digits_p, re_ctx_p->input_end_p); in re_parse_next_token()
729 re_ctx_p->input_curr_p = digits_p; in re_parse_next_token()