Searched refs:File2End (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | FileUtilities.cpp | 204 const char *File2End = F2.getBufferEnd(); in DiffFilesWithTolerance() local 225 while (F1P < File1End && F2P < File2End && *F1P == *F2P) { in DiffFilesWithTolerance() 230 if (F1P >= File1End || F2P >= File2End) break; in DiffFilesWithTolerance() 240 if (CompareNumbers(F1P, F2P, File1End, File2End, AbsTol, RelTol, Error)) { in DiffFilesWithTolerance() 249 bool F2AtEnd = F2P >= File2End; in DiffFilesWithTolerance() 259 if (CompareNumbers(F1P, F2P, File1End, File2End, AbsTol, RelTol, Error)) in DiffFilesWithTolerance() 263 if (F1P < File1End || F2P < File2End) in DiffFilesWithTolerance()
|