Home
last modified time | relevance | path

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

/third_party/jerryscript/targets/nuttx-stm32f4/
Djerry_main.c183 jerry_char_t *string_end_p = err_str_buf + sz; in print_unhandled_exception() local
190 for (jerry_char_t *current_p = err_str_buf; current_p < string_end_p; current_p++) in print_unhandled_exception()
202 while (current_p < string_end_p && *current_p != ':') in print_unhandled_exception()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-helpers-number.c737 const lit_utf8_byte_t *string_end_p = string_curr_p + string_buff_size; in ecma_number_parse_int() local
739 const lit_utf8_byte_t *end_p = string_end_p; in ecma_number_parse_int()
741 if (string_curr_p >= string_end_p) in ecma_number_parse_int()
760 if (string_curr_p < string_end_p) in ecma_number_parse_int()
816 while (string_curr_p < string_end_p) in ecma_number_parse_int()
Decma-helpers-string.c82 const lit_utf8_byte_t *string_end_p = string_p + string_size; in ecma_string_to_array_index() local
86 string_end_p--; in ecma_string_to_array_index()
98 while (string_p < string_end_p); in ecma_string_to_array_index()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-regexp-object.c2363 const lit_utf8_byte_t *const string_end_p = string_buffer_p + string_size; in ecma_regexp_split_helper()
2397 while (current_str_p < string_end_p) in ecma_regexp_split_helper()
2459 … (lit_utf8_size_t) (string_end_p - previous_str_p)); in ecma_regexp_split_helper()
2519 const lit_utf8_byte_t *const string_end_p = ctx_p->string_p + ctx_p->string_size; in ecma_regexp_replace_helper_fast() local
2549 string_end_p); in ecma_regexp_replace_helper_fast()
2637 if (current_p >= string_end_p) in ecma_regexp_replace_helper_fast()
2647 string_end_p); in ecma_regexp_replace_helper_fast()
2662 const lit_utf8_size_t trailing_size = (lit_utf8_size_t) (string_end_p - last_append_p); in ecma_regexp_replace_helper_fast()
2977 const lit_utf8_byte_t *const string_end_p = replace_ctx.string_p + replace_ctx.string_size; in ecma_regexp_replace_helper() local
3102 source_position_p = JERRY_MIN (match_position_p + matched_str_size, string_end_p); in ecma_regexp_replace_helper()
[all …]
/third_party/jerryscript/jerry-main/
Dmain-unix.c167 jerry_char_t *string_end_p = err_str_buf + string_end; in print_unhandled_exception() local
174 for (jerry_char_t *current_p = err_str_buf; current_p < string_end_p; current_p++) in print_unhandled_exception()
186 while (current_p < string_end_p && *current_p != ':') in print_unhandled_exception()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-string-prototype.c866 const lit_utf8_byte_t *const string_end_p = string_buffer_p + string_size; in ecma_builtin_string_prototype_object_split() local
867 const lit_utf8_byte_t *const compare_end_p = JERRY_MIN (string_end_p - separator_size + 1, in ecma_builtin_string_prototype_object_split()
868 string_end_p); in ecma_builtin_string_prototype_object_split()
900 … (lit_utf8_size_t) (string_end_p - last_str_begin_p)); in ecma_builtin_string_prototype_object_split()