Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DLiteralSupport.cpp1798 SmallVector<uint32_t, 4> codepoint_buffer; in CharLiteralParser() local
1799 codepoint_buffer.resize(end - begin); in CharLiteralParser()
1800 uint32_t *buffer_begin = &codepoint_buffer.front(); in CharLiteralParser()
1801 uint32_t *buffer_end = buffer_begin + codepoint_buffer.size(); in CharLiteralParser()
1886 unsigned NumCharsSoFar = buffer_begin - &codepoint_buffer.front(); in CharLiteralParser()
1913 LitVal = LitVal + (codepoint_buffer[i] & 0xFF); in CharLiteralParser()