Home
last modified time | relevance | path

Searched refs:first_byte_bits (Results 1 - 1 of 1) sorted by relevance

/third_party/jerryscript/jerry-core/lit/
H A Dlit-strings.c685 lit_utf8_byte_t first_byte_bits = (lit_utf8_byte_t) (code_unit_bits & LIT_UTF8_LAST_5_BITS_MASK); in lit_code_unit_to_utf8() local
686 JERRY_ASSERT (first_byte_bits == code_unit_bits); in lit_code_unit_to_utf8()
688 buf_p[0] = LIT_UTF8_2_BYTE_MARKER | first_byte_bits; in lit_code_unit_to_utf8()
701 lit_utf8_byte_t first_byte_bits = (lit_utf8_byte_t) (code_unit_bits & LIT_UTF8_LAST_4_BITS_MASK); in lit_code_unit_to_utf8() local
702 JERRY_ASSERT (first_byte_bits == code_unit_bits); in lit_code_unit_to_utf8()
704 buf_p[0] = LIT_UTF8_3_BYTE_MARKER | first_byte_bits; in lit_code_unit_to_utf8()
754 lit_utf8_byte_t first_byte_bits = (lit_utf8_byte_t) (code_point_bits & LIT_UTF8_LAST_5_BITS_MASK); in lit_code_point_to_utf8() local
755 JERRY_ASSERT (first_byte_bits == code_point_bits); in lit_code_point_to_utf8()
757 buf[0] = LIT_UTF8_2_BYTE_MARKER | first_byte_bits; in lit_code_point_to_utf8()
770 lit_utf8_byte_t first_byte_bits in lit_code_point_to_utf8() local
792 lit_utf8_byte_t first_byte_bits = (lit_utf8_byte_t) (code_point_bits & LIT_UTF8_LAST_3_BITS_MASK); lit_code_point_to_utf8() local
[all...]

Completed in 2 milliseconds