Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-core/ecma/base/
Decma-helpers-number.c914 const lit_utf8_byte_t *str_end_p = str_curr_p + string_buff_size; in ecma_number_parse_float() local
916 const lit_utf8_byte_t *end_p = str_end_p; in ecma_number_parse_float()
921 if (str_curr_p < str_end_p) in ecma_number_parse_float()
944 if ((str_end_p - str_curr_p) >= (int) infinity_length in ecma_number_parse_float()
955 if (str_curr_p >= str_end_p) in ecma_number_parse_float()
974 while (str_curr_p < str_end_p) in ecma_number_parse_float()
987 if (str_curr_p < str_end_p) in ecma_number_parse_float()
996 if (str_curr_p < str_end_p) in ecma_number_parse_float()
1005 while (str_curr_p < str_end_p) in ecma_number_parse_float()
1022 if (str_curr_p < str_end_p) in ecma_number_parse_float()
[all …]
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-date.c56 … const lit_utf8_byte_t *str_end_p, /**< pointer to the end of the string */ in ecma_date_parse_date_chars() argument
66 if (*str_p >= str_end_p || !lit_char_is_decimal_digit (lit_cesu8_read_next (str_p))) in ecma_date_parse_date_chars()
89 … const lit_utf8_byte_t *str_end_p, /**< pointer to the end of the string */ in ecma_date_parse_special_char() argument
92 if ((*str_p < str_end_p) && (**str_p == expected_char)) in ecma_date_parse_special_char()
111 const lit_utf8_byte_t *str_end_p) /**< pointer to the end of the string */ in ecma_date_parse_year() argument
113 bool is_year_sign_negative = ecma_date_parse_special_char (str_p, str_end_p, '-'); in ecma_date_parse_year()
117 …while ((str_start_p - *str_p < 6) && (str_start_p < str_end_p) && lit_char_is_decimal_digit (*str_… in ecma_date_parse_year()
146 const lit_utf8_byte_t *str_end_p) /**< pointer to the end of the string */ in ecma_date_parse_day_name() argument
148 if (*str_p + 3 < str_end_p) in ecma_date_parse_day_name()
172 … const lit_utf8_byte_t *str_end_p) /**< pointer to the end of the string */ in ecma_date_parse_month_name() argument
[all …]
Decma-builtin-json.c779 const lit_utf8_byte_t *str_end_p = str_p + string_buff_size; in ecma_builtin_json_quote() local
783 while (str_p < str_end_p) in ecma_builtin_json_quote()
852 (lit_utf8_size_t) (str_end_p - regular_str_start_p)); in ecma_builtin_json_quote()