| /netbsd-src/external/bsd/elftosb/dist/common/ |
| H A D | Value.h | 34 class IntegerValue : public Value 37 IntegerValue() : m_value(0) {} in IntegerValue() function 38 IntegerValue(uint32_t value) : m_value(value) {} in IntegerValue() function 39 IntegerValue(const IntegerValue & other) : m_value(other.m_value) {} in IntegerValue() function 48 inline IntegerValue & operator = (uint32_t value) { m_value = value; return *this; } 64 class SizedIntegerValue : public IntegerValue 67 SizedIntegerValue() : IntegerValue(), m_size(kWordSize) {} in SizedIntegerValue() 68 SizedIntegerValue(uint32_t value, int_size_t size=kWordSize) : IntegerValue(value), m_size(size) {} in IntegerValue() function 69 SizedIntegerValue(uint16_t value) : IntegerValue(value), m_size(kHalfWordSize) {} in SizedIntegerValue() 70 SizedIntegerValue(uint8_t value) : IntegerValue(value), m_size(kByteSize) {} in SizedIntegerValue() [all …]
|
| /netbsd-src/external/bsd/elftosb/dist/elftosb2/ |
| H A D | EncoreBootImageGenerator.cpp | 63 …const IntegerValue * intValue = dynamic_cast<const IntegerValue *>(m_options->getOption(kFlagsOpti… in processOptions() 92 const IntegerValue * intValue = dynamic_cast<const IntegerValue *>(value); in processSectionOptions() 108 const IntegerValue * intValue = dynamic_cast<const IntegerValue *>(value); in processSectionOptions() 129 const IntegerValue * intValue = dynamic_cast<const IntegerValue *>(value); in processSectionOptions()
|
| H A D | BootImageGenerator.cpp | 69 …const IntegerValue * intValue = dynamic_cast<const IntegerValue *>(m_options->getOption(kDriveTagO… in processDriveTagOption()
|
| H A D | elftosb.cpp | 515 value = new elftosb::IntegerValue(parseIntValue(valuePtr)); in overrideOption()
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/asn1/ |
| H A D | asn1parse.y | 183 %type <value> IntegerValue 896 | IntegerValue 940 IntegerValue : SignedNumber
|
| /netbsd-src/external/apache2/llvm/dist/clang/utils/TableGen/ |
| H A D | MveEmitter.cpp | 599 uint32_t IntegerValue; member in __anone3a730d20111::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()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/FileCheck/ |
| H A D | FileCheck.cpp | 80 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()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/AsmParser/ |
| H A D | RISCVAsmParser.cpp | 1998 int64_t IntegerValue = 0; in parseDirectiveAttribute() local 2015 IntegerValue = CE->getValue(); in parseDirectiveAttribute() 2140 getTargetStreamer().emitAttribute(Tag, IntegerValue); in parseDirectiveAttribute()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/ |
| H A D | ModuleMap.cpp | 1388 uint64_t IntegerValue; member 1405 return Kind == IntegerLiteral ? IntegerValue : 0; in getInteger() 1626 Tok.IntegerValue = Value; in consumeToken()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaChecking.cpp | 11850 llvm::APSInt IntegerValue(S.Context.getIntWidth(T), in DiagnoseFloatingImpCast() local 11853 IntegerValue, llvm::APFloat::rmTowardZero, &isExact); in DiagnoseFloatingImpCast() 11865 if (isObjCSignedCharBool(S, T) && IntegerValue != 0 && IntegerValue != 1) { in DiagnoseFloatingImpCast() 11891 } else if (IntegerValue == 0) { in DiagnoseFloatingImpCast() 11899 if (IntegerValue.isUnsigned()) { in DiagnoseFloatingImpCast() 11900 if (!IntegerValue.isMaxValue()) { in DiagnoseFloatingImpCast() 11905 if (!IntegerValue.isMaxSignedValue() && in DiagnoseFloatingImpCast() 11906 !IntegerValue.isMinSignedValue()) { in DiagnoseFloatingImpCast() 11919 IntegerValue.toString(PrettyTargetValue); in DiagnoseFloatingImpCast()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/AsmParser/ |
| H A D | ARMAsmParser.cpp | 11356 int64_t IntegerValue = 0; in parseDirectiveEabiAttr() local 11380 IntegerValue = CE->getValue(); in parseDirectiveEabiAttr() 11402 getTargetStreamer().emitIntTextAttribute(Tag, IntegerValue, StringValue); in parseDirectiveEabiAttr() 11404 getTargetStreamer().emitAttribute(Tag, IntegerValue); in parseDirectiveEabiAttr()
|
| /netbsd-src/external/bsd/openldap/dist/doc/rfc/ |
| H A D | rfc3687.txt | 651 always be an <ObjectIdentifierValue> or <IntegerValue> [9].
|