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

/external/llvm/lib/Support/
H A DFileUtilities.cpp81 static bool CompareNumbers(const char *&F1P, const char *&F2P, argument
92 while (isspace(*F2P) && F2P != F2End)
93 ++F2P;
96 if (!isNumberChar(*F1P) || !isNumberChar(*F2P)) {
99 F2NumEnd = F2P;
105 V2 = strtod(F2P, const_cast<char**>(&F2NumEnd));
119 SmallString<200> StrTmp(F2P, EndOfNumber(F2NumEnd)+1);
121 StrTmp[static_cast<unsigned>(F2NumEnd-F2P)] = 'e';
124 F2NumEnd = F2P
222 const char *F2P = File2Start; local
[all...]

Completed in 163 milliseconds