Searched refs:chars_p (Results 1 - 4 of 4) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/base/ |
H A D | ecma-literal-storage.c | 146 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 149 ecma_string_t *string_desc_p = ecma_find_special_string (chars_p,size); in ecma_find_or_create_literal_string() 155 ecma_string_t *nonref_string_p = ecma_new_nonref_ecma_string_from_utf8(chars_p, size); in ecma_find_or_create_literal_string() 158 if (ecma_compare_ecma_strings_with_literal (nonref_string_p, cached_literal,chars_p)) { in ecma_find_or_create_literal_string() 163 ecma_string_t *string_p = ecma_new_ecma_string_from_utf8 (chars_p, size); in ecma_find_or_create_literal_string()
|
H A D | ecma-helpers-string.c | 931 const lit_utf8_byte_t *chars_p = ecma_string_get_chars_fast (string_p, &size); in ecma_string_to_number() local 933 JERRY_ASSERT (chars_p != NULL); in ecma_string_to_number() 940 return ecma_utf8_string_to_number (chars_p, size); in ecma_string_to_number() 1015 const lit_utf8_byte_t *chars_p = ecma_string_get_chars_fast (string_p, &size); in ecma_string_copy_to_cesu8_buffer() local 1017 JERRY_ASSERT (chars_p != NULL); in ecma_string_copy_to_cesu8_buffer() 1020 memcpy (buffer_p, chars_p, size); in ecma_string_copy_to_cesu8_buffer() 1066 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 1068 JERRY_ASSERT (chars_p != NULL); in ecma_string_copy_to_utf8_buffer() 1073 memcpy (buffer_p, chars_p, size); in ecma_string_copy_to_utf8_buffer() 1077 size = lit_convert_cesu8_string_to_utf8_string (chars_p, in ecma_string_copy_to_utf8_buffer() 1790 ecma_compare_ecma_strings_longpath_with_literal(const ecma_string_t *string1_p, const ecma_string_t *string2_p, const lit_utf8_byte_t *chars_p) ecma_compare_ecma_strings_longpath_with_literal() argument 1830 ecma_compare_ecma_strings_with_literal(const ecma_string_t *string1_p, const ecma_string_t *string2_p, const lit_utf8_byte_t *chars_p) ecma_compare_ecma_strings_with_literal() argument [all...] |
H A D | ecma-literal-storage.h | 43 ecma_value_t ecma_find_or_create_literal_string (const lit_utf8_byte_t *chars_p, lit_utf8_size_t size);
|
H A D | ecma-helpers.h | 297 bool ecma_compare_ecma_strings_with_literal (const ecma_string_t *string1_p, const ecma_string_t *string2_p, const lit_utf8_byte_t *chars_p);
|
Completed in 5 milliseconds