Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Lex/
H A DLiteralSupport.cpp1646 SmallVector<uint32_t, 4> codepoint_buffer; in CharLiteralParser() local
1647 codepoint_buffer.resize(end - begin); in CharLiteralParser()
1648 uint32_t *buffer_begin = &codepoint_buffer.front(); in CharLiteralParser()
1649 uint32_t *buffer_end = buffer_begin + codepoint_buffer.size(); in CharLiteralParser()
1733 unsigned NumCharsSoFar = buffer_begin - &codepoint_buffer.front(); in CharLiteralParser()
1760 LitVal = LitVal + (codepoint_buffer[i] & 0xFF); in CharLiteralParser()