Home
last modified time | relevance | path

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

/external/llvm/lib/AsmParser/
DLLLexer.cpp122 char *BOut = Buffer; in UnEscapeLexed() local
126 *BOut++ = '\\'; // Two \ becomes one in UnEscapeLexed()
131 *BOut = hexDigitValue(BIn[1]) * 16 + hexDigitValue(BIn[2]); in UnEscapeLexed()
133 ++BOut; in UnEscapeLexed()
135 *BOut++ = *BIn++; in UnEscapeLexed()
138 *BOut++ = *BIn++; in UnEscapeLexed()
141 Str.resize(BOut-Buffer); in UnEscapeLexed()