Home
last modified time | relevance | path

Searched refs:start_p (Results 1 – 8 of 8) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-exceptions.c262 const char *start_p = format; in ecma_raise_standard_error_with_format() local
274 if (end_p > start_p) in ecma_raise_standard_error_with_format()
276 …tringbuilder_append_raw (&builder, (lit_utf8_byte_t *) start_p, (lit_utf8_size_t) (end_p - start_p in ecma_raise_standard_error_with_format()
307 start_p = end_p + 1; in ecma_raise_standard_error_with_format()
316 if (start_p < end_p) in ecma_raise_standard_error_with_format()
318 …tringbuilder_append_raw (&builder, (lit_utf8_byte_t *) start_p, (lit_utf8_size_t) (end_p - start_p in ecma_raise_standard_error_with_format()
Decma-container-object.c135 ecma_value_t *start_p = ECMA_CONTAINER_START (container_p); in ecma_op_internal_buffer_find() local
139 ecma_value_t *entry_p = start_p + i; in ecma_op_internal_buffer_find()
199 ecma_value_t *start_p = ECMA_CONTAINER_START (container_p); in ecma_op_container_free_weakset_entries() local
203 ecma_value_t *entry_p = start_p + i; in ecma_op_container_free_weakset_entries()
230 ecma_value_t *start_p = ECMA_CONTAINER_START (container_p); in ecma_op_container_free_weakmap_entries() local
234 ecma_container_pair_t *entry_p = (ecma_container_pair_t *) (start_p + i); in ecma_op_container_free_weakmap_entries()
262 ecma_value_t *start_p = ECMA_CONTAINER_START (container_p); in ecma_op_container_free_set_entries() local
266 ecma_value_t *entry_p = start_p + i; in ecma_op_container_free_set_entries()
289 ecma_value_t *start_p = ECMA_CONTAINER_START (container_p); in ecma_op_container_free_map_entries() local
293 ecma_container_pair_t *entry_p = (ecma_container_pair_t *) (start_p + i); in ecma_op_container_free_map_entries()
[all …]
/third_party/jerryscript/jerry-core/ecma/base/
Decma-helpers-number.c738 const lit_utf8_byte_t *start_p = string_curr_p; in ecma_number_parse_int() local
759 start_p = string_curr_p; in ecma_number_parse_int()
802 && ((end_p - start_p) >= 2) in ecma_number_parse_int()
809 start_p = ++string_curr_p; in ecma_number_parse_int()
815 string_curr_p = start_p; in ecma_number_parse_int()
847 if (end_p == start_p) in ecma_number_parse_int()
858 while (string_curr_p > start_p) in ecma_number_parse_int()
915 const lit_utf8_byte_t *start_p = str_curr_p; in ecma_number_parse_float() local
933 start_p = ++str_curr_p; in ecma_number_parse_float()
952 str_curr_p = start_p; in ecma_number_parse_float()
[all …]
Decma-helpers-string.c1124 const lit_utf8_byte_t *start_p = utf8_str_p; in ecma_substring_copy_to_cesu8_buffer() local
1128 start_p += start_pos; in ecma_substring_copy_to_cesu8_buffer()
1136 memcpy (buffer_p, start_p, size); in ecma_substring_copy_to_cesu8_buffer()
1143 start_p += lit_get_unicode_char_size_by_utf8_first_byte (*start_p); in ecma_substring_copy_to_cesu8_buffer()
1146 const lit_utf8_byte_t *end_p = start_p; in ecma_substring_copy_to_cesu8_buffer()
1161 memcpy (buffer_p, start_p, size); in ecma_substring_copy_to_cesu8_buffer()
2442 ECMA_STRING_TO_UTF8_STRING (string_p, start_p, buffer_size); in ecma_string_substr()
2446 ecma_string_p = ecma_new_ecma_string_from_utf8 (start_p + start_pos, in ecma_string_substr()
2453 start_p += lit_get_unicode_char_size_by_utf8_first_byte (*start_p); in ecma_string_substr()
2456 const lit_utf8_byte_t *end_p = start_p; in ecma_string_substr()
[all …]
Decma-gc.c339 ecma_value_t *start_p = ECMA_CONTAINER_START (container_p); in ecma_gc_mark_map_object() local
344 ecma_container_pair_t *entry_p = (ecma_container_pair_t *) (start_p + i); in ecma_gc_mark_map_object()
376 ecma_value_t *start_p = ECMA_CONTAINER_START (container_p); in ecma_gc_mark_weakmap_object() local
381 ecma_container_pair_t *entry_p = (ecma_container_pair_t *) (start_p + i); in ecma_gc_mark_weakmap_object()
408 ecma_value_t *start_p = ECMA_CONTAINER_START (container_p); in ecma_gc_mark_set_object() local
413 ecma_value_t *entry_p = start_p + i; in ecma_gc_mark_set_object()
/third_party/jerryscript/jerry-core/parser/regexp/
Dre-bytecode.c359 re_get_bytecode_offset (const uint8_t *start_p, /**< bytecode start pointer */ in re_get_bytecode_offset() argument
362 return (uint32_t) ((uintptr_t) current_p - (uintptr_t) start_p); in re_get_bytecode_offset()
/third_party/python/Modules/
Dmmapmodule.c314 const char *p, *start_p, *end_p; in mmap_gfind() local
333 start_p = self->data + start; in mmap_gfind()
336 for (p = (reverse ? end_p - len : start_p); in mmap_gfind()
337 (p >= start_p) && (p + len <= end_p); p += sign) { in mmap_gfind()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-json.c220 const lit_utf8_byte_t *start_p = current_p; in ecma_builtin_json_parse_number() local
290 token_p->u.number = ecma_utf8_string_to_number (start_p, (lit_utf8_size_t) (current_p - start_p)); in ecma_builtin_json_parse_number()