Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/TableGen/
DTGLexer.cpp333 const char *NumStart = CurPtr; in LexNumber() local
338 if (CurPtr == NumStart) in LexNumber()
342 CurIntVal = strtoll(NumStart, 0, 16); in LexNumber()
347 CurIntVal = (int64_t)strtoull(NumStart, 0, 16); in LexNumber()
356 const char *NumStart = CurPtr; in LexNumber() local
361 if (CurPtr == NumStart) in LexNumber()
363 CurIntVal = strtoll(NumStart, 0, 2); in LexNumber()
/external/llvm/lib/TableGen/
DTGLexer.cpp383 const char *NumStart = CurPtr; in LexNumber() local
388 if (CurPtr == NumStart) in LexNumber()
392 CurIntVal = strtoll(NumStart, nullptr, 16); in LexNumber()
397 CurIntVal = (int64_t)strtoull(NumStart, nullptr, 16); in LexNumber()
406 const char *NumStart = CurPtr; in LexNumber() local
411 if (CurPtr == NumStart) in LexNumber()
413 CurIntVal = strtoll(NumStart, nullptr, 2); in LexNumber()
/external/llvm/lib/IR/
DInlineAsm.cpp149 StringRef::iterator NumStart = I; in Parse() local
152 pCodes->push_back(StringRef(NumStart, I - NumStart)); in Parse()
/external/llvm/lib/MC/MCParser/
DAsmLexer.cpp294 const char *NumStart = CurPtr; in LexDigit() local
299 if (CurPtr == NumStart) in LexDigit()
317 const char *NumStart = CurPtr; in LexDigit() local
324 return LexHexFloatLiteral(NumStart == CurPtr); in LexDigit()
327 if (CurPtr == NumStart) in LexDigit()
/external/swiftshader/third_party/LLVM/lib/MC/MCParser/
DAsmLexer.cpp211 const char *NumStart = CurPtr; in LexDigit() local
216 if (CurPtr == NumStart) in LexDigit()
234 const char *NumStart = CurPtr; in LexDigit() local
239 if (CurPtr == NumStart) in LexDigit()
/external/swiftshader/third_party/LLVM/lib/VMCore/
DInlineAsm.cpp155 StringRef::iterator NumStart = I; in Parse() local
158 pCodes->push_back(std::string(NumStart, I)); in Parse()