Home
last modified time | relevance | path

Searched refs:IntegerValue (Results 1 – 9 of 9) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DMCAsmParser.cpp144 int64_t &IntegerValue) { in parseGNUAttribute() argument
157 IntegerValue = Tok.getIntVal(); in parseGNUAttribute()
/freebsd-13.1/crypto/heimdal/lib/asn1/
H A Dasn1parse.y180 %type <value> IntegerValue
876 | IntegerValue
920 IntegerValue : SignedNumber
/freebsd-13.1/contrib/llvm-project/clang/utils/TableGen/
H A DMveEmitter.cpp599 uint32_t IntegerValue; member in __anonb7c02cfb0111::IntLiteralResult
600 IntLiteralResult(const ScalarType *IntegerType, uint32_t IntegerValue) in IntLiteralResult() argument
601 : IntegerType(IntegerType), IntegerValue(IntegerValue) {} in IntLiteralResult()
607 OS << ParamAlloc.allocParam(IntegerType->cName(), utostr(IntegerValue)) in genCode()
611 uint32_t integerConstantValue() const override { return IntegerValue; } in integerConstantValue()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/MCParser/
H A DMCAsmParser.h343 bool parseGNUAttribute(SMLoc L, int64_t &Tag, int64_t &IntegerValue);
/freebsd-13.1/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheck.cpp80 ExpressionFormat::getMatchingString(ExpressionValue IntegerValue) const { in getMatchingString()
82 StringRef SignPrefix = IntegerValue.isNegative() ? "-" : ""; in getMatchingString()
85 Expected<int64_t> SignedValue = IntegerValue.getSignedValue(); in getMatchingString()
89 AbsoluteValue = cantFail(IntegerValue.getAbsolute().getUnsignedValue()); in getMatchingString()
93 Expected<uint64_t> UnsignedValue = IntegerValue.getUnsignedValue(); in getMatchingString()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/RISCV/AsmParser/
H A DRISCVAsmParser.cpp1998 int64_t IntegerValue = 0; in parseDirectiveAttribute() local
2015 IntegerValue = CE->getValue(); in parseDirectiveAttribute()
2140 getTargetStreamer().emitAttribute(Tag, IntegerValue); in parseDirectiveAttribute()
/freebsd-13.1/contrib/llvm-project/clang/lib/Lex/
H A DModuleMap.cpp1388 uint64_t IntegerValue; member
1405 return Kind == IntegerLiteral ? IntegerValue : 0; in getInteger()
1626 Tok.IntegerValue = Value; in consumeToken()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp12123 llvm::APSInt IntegerValue(S.Context.getIntWidth(T), in DiagnoseFloatingImpCast() local
12126 IntegerValue, llvm::APFloat::rmTowardZero, &isExact); in DiagnoseFloatingImpCast()
12138 if (isObjCSignedCharBool(S, T) && IntegerValue != 0 && IntegerValue != 1) { in DiagnoseFloatingImpCast()
12164 } else if (IntegerValue == 0) { in DiagnoseFloatingImpCast()
12172 if (IntegerValue.isUnsigned()) { in DiagnoseFloatingImpCast()
12173 if (!IntegerValue.isMaxValue()) { in DiagnoseFloatingImpCast()
12178 if (!IntegerValue.isMaxSignedValue() && in DiagnoseFloatingImpCast()
12179 !IntegerValue.isMinSignedValue()) { in DiagnoseFloatingImpCast()
12192 IntegerValue.toString(PrettyTargetValue); in DiagnoseFloatingImpCast()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp11357 int64_t IntegerValue = 0; in parseDirectiveEabiAttr() local
11381 IntegerValue = CE->getValue(); in parseDirectiveEabiAttr()
11403 getTargetStreamer().emitIntTextAttribute(Tag, IntegerValue, StringValue); in parseDirectiveEabiAttr()
11405 getTargetStreamer().emitAttribute(Tag, IntegerValue); in parseDirectiveEabiAttr()