Searched defs:File2End (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Support/
H A DFileUtilities.cpp199 const char *File2End = F2.getBufferEnd(); local
220 while (F1P < File1End && F2P < File2End && *F1P == *F2P) {
225 if (F1P >= File1End || F2P >= File2End) break;
235 if (CompareNumbers(F1P, F2P, File1End, File2End, AbsTol, RelTol, Error)) {
244 bool F2AtEnd = F2P >= File2End;
254 if (CompareNumbers(F1P, F2P, File1End, File2End, AbsTol, RelTol, Error))
258 if (F1P < File1End || F2P < File2End)
/external/swiftshader/third_party/LLVM/lib/Support/
H A DFileUtilities.cpp221 const char *File2End = F2->getBufferEnd(); local
240 while (F1P < File1End && F2P < File2End && *F1P == *F2P)
243 if (F1P >= File1End || F2P >= File2End) break;
253 if (CompareNumbers(F1P, F2P, File1End, File2End, AbsTol, RelTol, Error)) {
262 bool F2AtEnd = F2P >= File2End;
272 if (CompareNumbers(F1P, F2P, File1End, File2End, AbsTol, RelTol, Error))
276 if (F1P < File1End || F2P < File2End)

Completed in 159 milliseconds