Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-core/ecma/base/
Decma-helpers-number.c909 const lit_utf8_byte_t *str_curr_p = string_buff; in ecma_number_parse_float() local
912 ecma_string_trim_helper (&str_curr_p, &string_buff_size); in ecma_number_parse_float()
914 const lit_utf8_byte_t *str_end_p = str_curr_p + string_buff_size; in ecma_number_parse_float()
915 const lit_utf8_byte_t *start_p = str_curr_p; in ecma_number_parse_float()
921 if (str_curr_p < str_end_p) in ecma_number_parse_float()
924 current = *str_curr_p; in ecma_number_parse_float()
933 start_p = ++str_curr_p; in ecma_number_parse_float()
944 if ((str_end_p - str_curr_p) >= (int) infinity_length in ecma_number_parse_float()
945 && memcmp (infinity_str_p, str_curr_p, infinity_length) == 0) in ecma_number_parse_float()
952 str_curr_p = start_p; in ecma_number_parse_float()
[all …]
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-regexp-object.c601 const lit_utf8_byte_t *str_curr_p) /**< input string pointer */ in ecma_regexp_run() argument
610 const lit_utf8_byte_t *str_start_p = str_curr_p; in ecma_regexp_run()
621 re_ctx_p->captures_p[RE_GLOBAL_CAPTURE].end_p = str_curr_p; in ecma_regexp_run()
627 return str_curr_p; in ecma_regexp_run()
683 group_p->begin_p = str_curr_p; in ecma_regexp_run()
687 const lit_utf8_byte_t *matched_p = ecma_regexp_run (re_ctx_p, bc_p, str_curr_p); in ecma_regexp_run()
724 group_p->begin_p = str_curr_p; in ecma_regexp_run()
728 const lit_utf8_byte_t *matched_p = ecma_regexp_run (re_ctx_p, bc_p, str_curr_p); in ecma_regexp_run()
748 group_p->begin_p = str_curr_p; in ecma_regexp_run()
755 … const lit_utf8_byte_t *const matched_p = ecma_regexp_run (re_ctx_p, group_p->bc_p, str_curr_p); in ecma_regexp_run()
[all …]