Home
last modified time | relevance | path

Searched refs:getAPSIntVal (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/AsmParser/
H A DLLLexer.h62 const APSInt &getAPSIntVal() const { return APSIntVal; } in getAPSIntVal() function
/netbsd-src/external/apache2/llvm/dist/llvm/lib/AsmParser/
H A DLLParser.cpp1623 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned()) in parseUInt32()
1625 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1); in parseUInt32()
1636 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned()) in parseUInt64()
1638 Val = Lex.getAPSIntVal().getLimitedValue(); in parseUInt64()
3044 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() || in parseArrayVectorType()
3045 Lex.getAPSIntVal().getBitWidth() > 64) in parseArrayVectorType()
3049 uint64_t Size = Lex.getAPSIntVal().getZExtValue(); in parseArrayVectorType()
3348 ID.APSIntVal = Lex.getAPSIntVal(); in parseValID()
4253 Result.assign(Lex.getAPSIntVal()); in parseMDField()
4261 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned()) in parseMDField()
[all …]