Searched refs:File2End (Results 1 – 1 of 1) sorted by relevance
/external/llvm/lib/Support/ |
D | FileUtilities.cpp | 199 const char *File2End = F2.getBufferEnd(); in DiffFilesWithTolerance() local 220 while (F1P < File1End && F2P < File2End && *F1P == *F2P) in DiffFilesWithTolerance() 223 if (F1P >= File1End || F2P >= File2End) break; in DiffFilesWithTolerance() 233 if (CompareNumbers(F1P, F2P, File1End, File2End, AbsTol, RelTol, Error)) { in DiffFilesWithTolerance() 242 bool F2AtEnd = F2P >= File2End; in DiffFilesWithTolerance() 252 if (CompareNumbers(F1P, F2P, File1End, File2End, AbsTol, RelTol, Error)) in DiffFilesWithTolerance() 256 if (F1P < File1End || F2P < File2End) in DiffFilesWithTolerance()
|