Searched refs:File1End (Results 1 – 2 of 2) sorted by relevance
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | FileUtilities.cpp | 220 const char *File1End = F1->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() 261 bool F1AtEnd = F1P >= File1End; 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 | 198 const char *File1End = F1.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() 243 bool F1AtEnd = F1P >= File1End; in DiffFilesWithTolerance() 254 if (CompareNumbers(F1P, F2P, File1End, File2End, AbsTol, RelTol, Error)) in DiffFilesWithTolerance() 258 if (F1P < File1End || F2P < File2End) in DiffFilesWithTolerance()
|