Home
last modified time | relevance | path

Searched refs:chars_p (Results 1 – 3 of 3) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/base/
Decma-helpers-string.c891 const lit_utf8_byte_t *chars_p = ecma_string_get_chars_fast (string_p, &size); in ecma_string_to_number() local
893 JERRY_ASSERT (chars_p != NULL); in ecma_string_to_number()
900 return ecma_utf8_string_to_number (chars_p, size); in ecma_string_to_number()
975 const lit_utf8_byte_t *chars_p = ecma_string_get_chars_fast (string_p, &size); in ecma_string_copy_to_cesu8_buffer() local
977 JERRY_ASSERT (chars_p != NULL); in ecma_string_copy_to_cesu8_buffer()
980 memcpy (buffer_p, chars_p, size); in ecma_string_copy_to_cesu8_buffer()
1026 const lit_utf8_byte_t *chars_p = ecma_string_get_chars (string_p, &size, NULL, NULL, &flags); in ecma_string_copy_to_utf8_buffer() local
1028 JERRY_ASSERT (chars_p != NULL); in ecma_string_copy_to_utf8_buffer()
1033 memcpy (buffer_p, chars_p, size); in ecma_string_copy_to_utf8_buffer()
1037 size = lit_convert_cesu8_string_to_utf8_string (chars_p, in ecma_string_copy_to_utf8_buffer()
[all …]
Decma-literal-storage.h43 ecma_value_t ecma_find_or_create_literal_string (const lit_utf8_byte_t *chars_p, lit_utf8_size_t si…
Decma-literal-storage.c131 ecma_find_or_create_literal_string (const lit_utf8_byte_t *chars_p, /**< string to be searched */ in ecma_find_or_create_literal_string() argument
134 ecma_string_t *string_p = ecma_new_ecma_string_from_utf8 (chars_p, size); in ecma_find_or_create_literal_string()