Searched refs:dest_p (Results 1 – 4 of 4) sorted by relevance
/third_party/jerryscript/jerry-core/parser/regexp/ |
D | re-bytecode.c | 72 uint8_t *dest_p = re_ctx_p->bytecode_start_p + offset; in re_bytecode_insert() local 73 memmove (dest_p + size, dest_p, tail_size); in re_bytecode_insert() 75 return dest_p; in re_bytecode_insert() 85 uint8_t *dest_p = re_bytecode_reserve (re_ctx_p, sizeof (uint8_t)); in re_append_byte() local 86 *dest_p = byte; in re_append_byte() 97 uint8_t *dest_p = re_bytecode_insert (re_ctx_p, offset, sizeof (uint8_t)); in re_insert_byte() local 98 *dest_p = byte; in re_insert_byte() 146 re_encode_u16 (uint8_t *dest_p, /**< destination */ in re_encode_u16() argument 149 *dest_p++ = (uint8_t) ((value >> 8) & 0xFF); in re_encode_u16() 150 *dest_p = (uint8_t) (value & 0xFF); in re_encode_u16() [all …]
|
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
D | ecma-builtin-helpers-date.c | 599 lit_utf8_byte_t *dest_p = date_buffer; in ecma_date_to_string_format() local 605 *dest_p++ = (lit_utf8_byte_t) *format_p++; in ecma_date_to_string_format() 711 *dest_p++ = LIT_CHAR_PLUS; in ecma_date_to_string_format() 715 *dest_p++ = LIT_CHAR_MINUS; in ecma_date_to_string_format() 745 memcpy (dest_p, str_p, 3); in ecma_date_to_string_format() 746 dest_p += 3; in ecma_date_to_string_format() 756 *dest_p++ = '-'; in ecma_date_to_string_format() 761 *dest_p++ = '+'; in ecma_date_to_string_format() 764 dest_p += number_length; in ecma_date_to_string_format() 765 lit_utf8_byte_t *buffer_p = dest_p; in ecma_date_to_string_format() [all …]
|
D | ecma-builtin-global.c | 396 ecma_builtin_global_object_byte_to_hex (lit_utf8_byte_t *dest_p, /**< destination pointer */ in ecma_builtin_global_object_byte_to_hex() argument 401 dest_p[0] = LIT_CHAR_PERCENT; in ecma_builtin_global_object_byte_to_hex() 403 dest_p[1] = (lit_utf8_byte_t) ((hex_digit > 9) ? (hex_digit + ('A' - 10)) : (hex_digit + '0')); in ecma_builtin_global_object_byte_to_hex() 405 dest_p[2] = (lit_utf8_byte_t) ((hex_digit > 9) ? (hex_digit + ('A' - 10)) : (hex_digit + '0')); in ecma_builtin_global_object_byte_to_hex()
|
/third_party/jerryscript/jerry-core/ecma/base/ |
D | ecma-helpers-string.c | 2701 lit_utf8_byte_t *dest_p = ecma_stringbuilder_grow (builder_p, string_size); in ecma_stringbuilder_append() local 2704 dest_p, in ecma_stringbuilder_append() 2717 lit_utf8_byte_t *dest_p = ecma_stringbuilder_grow (builder_p, string_size); in ecma_stringbuilder_append_magic() local 2720 memcpy (dest_p, string_data_p, string_size); in ecma_stringbuilder_append_magic() 2731 lit_utf8_byte_t *dest_p = ecma_stringbuilder_grow (builder_p, data_size); in ecma_stringbuilder_append_raw() local 2732 memcpy (dest_p, data_p, data_size); in ecma_stringbuilder_append_raw() 2743 lit_utf8_byte_t *dest_p = ecma_stringbuilder_grow (builder_p, size); in ecma_stringbuilder_append_char() local 2745 lit_code_point_to_cesu8_bytes (dest_p, c); in ecma_stringbuilder_append_char() 2755 lit_utf8_byte_t *dest_p = ecma_stringbuilder_grow (builder_p, 1); in ecma_stringbuilder_append_byte() local 2756 *dest_p = byte; in ecma_stringbuilder_append_byte()
|