Searched refs:BOut (Results 1 – 3 of 3) sorted by relevance
145 char *BOut = Buffer; in UnEscapeLexed() local149 *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()
122 char *BOut = Buffer; in UnEscapeLexed() local126 *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()
119 char *BOut = Buffer; in UnEscapeLexed() local123 *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()