Home
last modified time | relevance | path

Searched refs:LIT_UTF8_2_BYTE_MARKER (Results 1 – 6 of 6) sorted by relevance

/third_party/jerryscript/jerry-core/lit/
Dlit-strings.c49 if ((c & LIT_UTF8_2_BYTE_MASK) == LIT_UTF8_2_BYTE_MARKER) in lit_is_valid_utf8_string()
144 if ((c & LIT_UTF8_2_BYTE_MASK) == LIT_UTF8_2_BYTE_MARKER) in lit_is_valid_cesu8_string()
391 if ((c & LIT_UTF8_2_BYTE_MASK) == LIT_UTF8_2_BYTE_MARKER) in lit_read_code_point_from_utf8()
440 if ((c & LIT_UTF8_2_BYTE_MASK) == LIT_UTF8_2_BYTE_MARKER) in lit_read_code_unit_from_utf8()
653 else if ((first_byte & LIT_UTF8_2_BYTE_MASK) == LIT_UTF8_2_BYTE_MARKER) in lit_get_unicode_char_size_by_utf8_first_byte()
688 buf_p[0] = LIT_UTF8_2_BYTE_MARKER | first_byte_bits; in lit_code_unit_to_utf8()
757 buf[0] = LIT_UTF8_2_BYTE_MARKER | first_byte_bits; in lit_code_point_to_utf8()
Dlit-strings.h46 #define LIT_UTF8_2_BYTE_MARKER (0xC0) macro
Dlit-char-helpers.c358 dst_p[0] = (uint8_t) (LIT_UTF8_2_BYTE_MARKER | ((code_point >> 6) & LIT_UTF8_LAST_5_BITS_MASK)); in lit_code_point_to_cesu8_bytes()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-global.c307 if ((decoded_byte & LIT_UTF8_2_BYTE_MASK) == LIT_UTF8_2_BYTE_MARKER) in ecma_builtin_global_object_decode_uri_helper()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-helpers-string.c386 else if ((string_p[pos] & LIT_UTF8_2_BYTE_MASK) == LIT_UTF8_2_BYTE_MARKER) in ecma_new_ecma_string_from_utf8_converted_to_cesu8()
/third_party/jerryscript/jerry-core/parser/js/
Djs-lexer.c694 if (JERRY_UNLIKELY (code_point >= LIT_UTF8_2_BYTE_MARKER)) in lexer_parse_identifier()