Searched refs:File2End (Results 1 – 2 of 2) sorted by relevance
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | FileUtilities.cpp | 221 const char *File2End = F2->getBufferEnd(); in DiffFilesWithTolerance() local 240 while (F1P < File1End && F2P < File2End && *F1P == *F2P) in DiffFilesWithTolerance() 243 if (F1P >= File1End || F2P >= File2End) break; in DiffFilesWithTolerance() 253 if (CompareNumbers(F1P, F2P, File1End, File2End, AbsTol, RelTol, Error)) { in DiffFilesWithTolerance() 262 bool F2AtEnd = F2P >= File2End; in DiffFilesWithTolerance() 272 if (CompareNumbers(F1P, F2P, File1End, File2End, AbsTol, RelTol, Error)) in DiffFilesWithTolerance() 276 if (F1P < File1End || F2P < File2End) in DiffFilesWithTolerance()
|
/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() 225 if (F1P >= File1End || F2P >= File2End) break; in DiffFilesWithTolerance() 235 if (CompareNumbers(F1P, F2P, File1End, File2End, AbsTol, RelTol, Error)) { in DiffFilesWithTolerance() 244 bool F2AtEnd = F2P >= File2End; in DiffFilesWithTolerance() 254 if (CompareNumbers(F1P, F2P, File1End, File2End, AbsTol, RelTol, Error)) in DiffFilesWithTolerance() 258 if (F1P < File1End || F2P < File2End) in DiffFilesWithTolerance()
|