Searched refs:lit_utf8_bytes (Results 1 – 1 of 1) sorted by relevance
494 lit_utf8_byte_t lit_utf8_bytes[LIT_UTF8_MAX_BYTES_IN_CODE_UNIT]; in ecma_new_ecma_string_from_code_unit() local495 lit_utf8_size_t bytes_size = lit_code_unit_to_utf8 (code_unit, lit_utf8_bytes); in ecma_new_ecma_string_from_code_unit()497 return ecma_new_ecma_string_from_utf8 (lit_utf8_bytes, bytes_size); in ecma_new_ecma_string_from_code_unit()511 lit_utf8_byte_t lit_utf8_bytes[2 * LIT_UTF8_MAX_BYTES_IN_CODE_UNIT]; in ecma_new_ecma_string_from_code_units() local512 lit_utf8_size_t bytes_size = lit_code_unit_to_utf8 (first_code_unit, lit_utf8_bytes); in ecma_new_ecma_string_from_code_units()513 bytes_size += lit_code_unit_to_utf8 (second_code_unit, lit_utf8_bytes + bytes_size); in ecma_new_ecma_string_from_code_units()515 return ecma_new_ecma_string_from_utf8 (lit_utf8_bytes, bytes_size); in ecma_new_ecma_string_from_code_units()