Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/AsmParser/
H A DLLLexer.cpp120 for (char *BIn = Buffer; BIn != EndBuffer; ) { in UnEscapeLexed() local
121 if (BIn[0] == '\\') { in UnEscapeLexed()
122 if (BIn < EndBuffer-1 && BIn[1] == '\\') { in UnEscapeLexed()
124 BIn += 2; in UnEscapeLexed()
125 } else if (BIn < EndBuffer-2 && in UnEscapeLexed()
126 isxdigit(static_cast<unsigned char>(BIn[1])) && in UnEscapeLexed()
127 isxdigit(static_cast<unsigned char>(BIn[2]))) { in UnEscapeLexed()
128 *BOut = hexDigitValue(BIn[1]) * 16 + hexDigitValue(BIn[2]); in UnEscapeLexed()
129 BIn += 3; // Skip over handled chars in UnEscapeLexed()
132 *BOut++ = *BIn++; in UnEscapeLexed()
[all …]