Searched refs:start_p (Results 1 – 9 of 9) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/operations/ |
D | ecma-exceptions.c | 262 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()
|
D | ecma-container-object.c | 135 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/ |
D | ecma-helpers-number.c | 738 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 …]
|
D | ecma-helpers-string.c | 1084 const lit_utf8_byte_t *start_p = utf8_str_p; in ecma_substring_copy_to_cesu8_buffer() local 1088 start_p += start_pos; in ecma_substring_copy_to_cesu8_buffer() 1096 memcpy (buffer_p, start_p, size); in ecma_substring_copy_to_cesu8_buffer() 1103 start_p += lit_get_unicode_char_size_by_utf8_first_byte (*start_p); in ecma_substring_copy_to_cesu8_buffer() 1106 const lit_utf8_byte_t *end_p = start_p; in ecma_substring_copy_to_cesu8_buffer() 1121 memcpy (buffer_p, start_p, size); in ecma_substring_copy_to_cesu8_buffer() 2315 ECMA_STRING_TO_UTF8_STRING (string_p, start_p, buffer_size); in ecma_string_substr() 2319 ecma_string_p = ecma_new_ecma_string_from_utf8 (start_p + start_pos, in ecma_string_substr() 2326 start_p += lit_get_unicode_char_size_by_utf8_first_byte (*start_p); in ecma_string_substr() 2329 const lit_utf8_byte_t *end_p = start_p; in ecma_string_substr() [all …]
|
D | ecma-gc.c | 339 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/boost/boost/geometry/algorithms/ |
D | line_interpolate.hpp | 105 point_t start_p = *prev; in apply() local 117 strategy.apply(start_p, *it, in apply() 126 start_p = p; in apply() 132 start_p = *prev; in apply()
|
/third_party/jerryscript/jerry-core/parser/regexp/ |
D | re-bytecode.c | 359 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/ |
D | mmapmodule.c | 314 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/ |
D | ecma-builtin-json.c | 220 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()
|