Home
last modified time | relevance | path

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

/arkcompiler/ets_frontend/ets2panda/util/
H A Dustring.h228 static constexpr uint16_t UTF8_3BYTE_SHIFT = 12U; member in ark::es2panda::util::StringView::Constants
354 res = ((cu0 & Constants::UTF8_3BYTE_MASK) << Constants::UTF8_3BYTE_SHIFT) | in DecodeCP()
362 ((cu1 & Constants::UTF8_CONT_MASK) << Constants::UTF8_3BYTE_SHIFT) | in DecodeCP()
450 str->push_back(static_cast<char>(((cu >> Constants::UTF8_3BYTE_SHIFT) & Constants::UTF8_3BYTE_MASK) | in Utf8Encode()
458 str->push_back(static_cast<char>(((cu >> Constants::UTF8_3BYTE_SHIFT) & Constants::UTF8_CONT_MASK) | in Utf8Encode()
478 str->push_back(static_cast<char>((cu >> Constants::UTF8_3BYTE_SHIFT) | Constants::UTF8_3BYTE_HEADER)); in Mutf8Encode()
/arkcompiler/ets_frontend/es2panda/util/
H A Dustring.h244 static constexpr uint16_t UTF8_3BYTE_SHIFT = 12U; member in panda::es2panda::util::StringView::Constants
356 res = ((cu0 & Constants::UTF8_3BYTE_MASK) << Constants::UTF8_3BYTE_SHIFT) | in DecodeCP()
368 ((cu1 & Constants::UTF8_CONT_MASK) << Constants::UTF8_3BYTE_SHIFT) | in DecodeCP()
454 str->push_back(static_cast<char>(((cu >> Constants::UTF8_3BYTE_SHIFT) & Constants::UTF8_3BYTE_MASK) | in Utf8Encode()
462 str->push_back(static_cast<char>(((cu >> Constants::UTF8_3BYTE_SHIFT) & Constants::UTF8_CONT_MASK) | in Utf8Encode()
482 str->push_back(static_cast<char>((cu >> Constants::UTF8_3BYTE_SHIFT) | Constants::UTF8_3BYTE_HEADER)); in Mutf8Encode()

Completed in 2 milliseconds