Lines Matching refs:BufChar
180 UINT8 BufChar; in LsDumpAscii() local
187 BufChar = Buffer[i]; in LsDumpAscii()
188 if (isprint (BufChar)) in LsDumpAscii()
190 FlPrintFile (FileId, "%c", BufChar); in LsDumpAscii()
224 UINT8 BufChar = 0; in LsDumpAsciiInComment() local
232 LastChar = BufChar; in LsDumpAsciiInComment()
233 BufChar = Buffer[i]; in LsDumpAsciiInComment()
235 if (isprint (BufChar)) in LsDumpAsciiInComment()
239 if (((LastChar == '*') && (BufChar == '/')) || in LsDumpAsciiInComment()
240 ((LastChar == '/') && (BufChar == '*'))) in LsDumpAsciiInComment()
247 FlPrintFile (FileId, "%c", BufChar); in LsDumpAsciiInComment()