Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Lex/
H A DLiteralSupport.cpp1720 SmallVector<uint32_t, 4> codepoint_buffer; in CharLiteralParser() local
1721 codepoint_buffer.resize(end - begin); in CharLiteralParser()
1722 uint32_t *buffer_begin = &codepoint_buffer.front(); in CharLiteralParser()
1723 uint32_t *buffer_end = buffer_begin + codepoint_buffer.size(); in CharLiteralParser()
1808 unsigned NumCharsSoFar = buffer_begin - &codepoint_buffer.front(); in CharLiteralParser()
1835 LitVal = LitVal + (codepoint_buffer[i] & 0xFF); in CharLiteralParser()