Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-core/ecma/base/
Decma-helpers-string.c605 … lit_utf8_size_t cesu8_string2_size, /**< byte size of cesu8_string2_p */ in ecma_append_chars_to_string() argument
608 JERRY_ASSERT (string1_p != NULL && cesu8_string2_size > 0 && cesu8_string2_length > 0); in ecma_append_chars_to_string()
612 return ecma_new_ecma_string_from_utf8 (cesu8_string2_p, cesu8_string2_size); in ecma_append_chars_to_string()
630 lit_utf8_size_t new_size = cesu8_string1_size + cesu8_string2_size; in ecma_append_chars_to_string()
633 if (new_size < (cesu8_string1_size | cesu8_string2_size)) in ecma_append_chars_to_string()
642 cesu8_string2_size); in ecma_append_chars_to_string()
652 memcpy (uint32_to_string_buffer + cesu8_string1_size, cesu8_string2_p, cesu8_string2_size); in ecma_append_chars_to_string()
669 cesu8_string2_size); in ecma_append_chars_to_string()
695 …ng_desc_p->u.hash = lit_utf8_string_hash_combine (hash_start, cesu8_string2_p, cesu8_string2_size); in ecma_append_chars_to_string()
698 memcpy (data_p + cesu8_string1_size, cesu8_string2_p, cesu8_string2_size); in ecma_append_chars_to_string()
[all …]
Decma-helpers.h308 lit_utf8_size_t cesu8_string2_size,