Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DLiteralSupport.cpp422 unsigned NumHexDigits; in expandUCNs() local
424 NumHexDigits = 4; in expandUCNs()
426 NumHexDigits = 8; in expandUCNs()
428 assert(I + NumHexDigits <= E); in expandUCNs()
430 for (; NumHexDigits != 0; ++I, --NumHexDigits) { in expandUCNs()
H A DLexer.cpp3420 unsigned NumHexDigits; in tryReadNumericUCN() local
3422 NumHexDigits = 4; in tryReadNumericUCN()
3424 NumHexDigits = 8; in tryReadNumericUCN()
3441 while (Count != NumHexDigits || Delimited) { in tryReadNumericUCN()
3491 if (!Delimited && Count != NumHexDigits) { in tryReadNumericUCN()
3495 if (Count == 4 && NumHexDigits == 8) { in tryReadNumericUCN()