Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/AsmParser/
DLLLexer.cpp145 char *BOut = Buffer; in UnEscapeLexed() local
149 *BOut++ = '\\'; // Two \ becomes one in UnEscapeLexed()
153 *BOut = (char)strtol(BIn+1, 0, 16); // Convert to number in UnEscapeLexed()
156 ++BOut; in UnEscapeLexed()
158 *BOut++ = *BIn++; in UnEscapeLexed()
161 *BOut++ = *BIn++; in UnEscapeLexed()
164 Str.resize(BOut-Buffer); in UnEscapeLexed()
/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()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/AsmParser/
DLLLexer.cpp119 char *BOut = Buffer; in UnEscapeLexed() local
123 *BOut++ = '\\'; // Two \ becomes one in UnEscapeLexed()
128 *BOut = hexDigitValue(BIn[1]) * 16 + hexDigitValue(BIn[2]); in UnEscapeLexed()
130 ++BOut; in UnEscapeLexed()
132 *BOut++ = *BIn++; in UnEscapeLexed()
135 *BOut++ = *BIn++; in UnEscapeLexed()
138 Str.resize(BOut-Buffer); in UnEscapeLexed()