Home
last modified time | relevance | path

Searched refs:NumStart (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
H A DAsmLexer.cpp434 const char *NumStart = CurPtr; in LexDigit() local
439 if (StringRef(NumStart, CurPtr - NumStart).getAsInteger(16, Result)) in LexDigit()
447 const char *NumStart = CurPtr; in LexDigit() local
452 if (StringRef(NumStart, CurPtr - NumStart).getAsInteger(2, Result)) in LexDigit()
497 const char *NumStart = CurPtr; in LexDigit() local
502 if (CurPtr == NumStart) in LexDigit()
520 const char *NumStart = CurPtr; in LexDigit() local
527 return LexHexFloatLiteral(NumStart == CurPtr); in LexDigit()
530 if (CurPtr == NumStart) in LexDigit()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/TableGen/
H A DTGLexer.cpp466 const char *NumStart = CurPtr; in LexNumber() local
471 if (CurPtr == NumStart) in LexNumber()
475 CurIntVal = strtoll(NumStart, nullptr, 16); in LexNumber()
480 CurIntVal = (int64_t)strtoull(NumStart, nullptr, 16); in LexNumber()
489 const char *NumStart = CurPtr; in LexNumber() local
494 if (CurPtr == NumStart) in LexNumber()
496 CurIntVal = strtoll(NumStart, nullptr, 2); in LexNumber()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DInlineAsm.cpp144 StringRef::iterator NumStart = I; in Parse() local
147 pCodes->push_back(std::string(StringRef(NumStart, I - NumStart))); in Parse()