Home
last modified time | relevance | path

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

/external/llvm/lib/AsmParser/
DLLLexer.cpp123 for (char *BIn = Buffer; BIn != EndBuffer; ) { in UnEscapeLexed() local
124 if (BIn[0] == '\\') { in UnEscapeLexed()
125 if (BIn < EndBuffer-1 && BIn[1] == '\\') { in UnEscapeLexed()
127 BIn += 2; in UnEscapeLexed()
128 } else if (BIn < EndBuffer-2 && in UnEscapeLexed()
129 isxdigit(static_cast<unsigned char>(BIn[1])) && in UnEscapeLexed()
130 isxdigit(static_cast<unsigned char>(BIn[2]))) { in UnEscapeLexed()
131 *BOut = hexDigitValue(BIn[1]) * 16 + hexDigitValue(BIn[2]); in UnEscapeLexed()
132 BIn += 3; // Skip over handled chars in UnEscapeLexed()
135 *BOut++ = *BIn++; in UnEscapeLexed()
[all …]