Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLLexer.cpp118 char *BOut = Buffer; in UnEscapeLexed() local
122 *BOut++ = '\\'; // Two \ becomes one in UnEscapeLexed()
127 *BOut = hexDigitValue(BIn[1]) * 16 + hexDigitValue(BIn[2]); in UnEscapeLexed()
129 ++BOut; in UnEscapeLexed()
131 *BOut++ = *BIn++; in UnEscapeLexed()
134 *BOut++ = *BIn++; in UnEscapeLexed()
137 Str.resize(BOut-Buffer); in UnEscapeLexed()