| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | Bitfields.h | 99 using Unsigned = std::make_unsigned_t<T>; member 100 static_assert(sizeof(Unsigned) == sizeof(T), "Types must have same size"); 102 static constexpr unsigned TypeBits = sizeof(Unsigned) * CHAR_BIT; 106 static constexpr Unsigned AllZeros = Unsigned(0); // 00000000 107 static constexpr Unsigned AllOnes = ~Unsigned(0); // 11111111 108 static constexpr Unsigned Umin = AllZeros; // 00000000 109 static constexpr Unsigned Umax = AllOnes >> (TypeBits - Bits); // 00111111 110 static constexpr Unsigned SignBitMask = Unsigned(1) << (Bits - 1); // 00100000 111 static constexpr Unsigned Smax = Umax >> 1U; // 00011111 112 static constexpr Unsigned Smin = ~Smax; // 11100000 [all …]
|
| H A D | APSInt.h | 303 static APSInt getMaxValue(uint32_t numBits, bool Unsigned) { in getMaxValue() argument 304 return APSInt(Unsigned ? APInt::getMaxValue(numBits) in getMaxValue() 306 Unsigned); in getMaxValue() 311 static APSInt getMinValue(uint32_t numBits, bool Unsigned) { in getMinValue() argument 312 return APSInt(Unsigned ? APInt::getMinValue(numBits) in getMinValue() 314 Unsigned); in getMinValue()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFASTParser.cpp | 68 num_elements = form_value.Unsigned(); in ParseChildArrayInfo() 72 array_info.bit_stride = form_value.Unsigned(); in ParseChildArrayInfo() 76 array_info.byte_stride = form_value.Unsigned(); in ParseChildArrayInfo() 80 lower_bound = form_value.Unsigned(); in ParseChildArrayInfo() 85 upper_bound = form_value.Unsigned(); in ParseChildArrayInfo()
|
| H A D | DWARFDebugInfoEntry.cpp | 93 ? unit.FindRnglistFromIndex(value.Unsigned()) in GetRangesOrReportError() 169 hi_pc = form_value.Unsigned(); in GetDIENamesAndRanges() 203 decl_file = form_value.Unsigned(); in GetDIENamesAndRanges() 208 decl_line = form_value.Unsigned(); in GetDIENamesAndRanges() 213 decl_column = form_value.Unsigned(); in GetDIENamesAndRanges() 218 call_file = form_value.Unsigned(); in GetDIENamesAndRanges() 223 call_line = form_value.Unsigned(); in GetDIENamesAndRanges() 228 call_column = form_value.Unsigned(); in GetDIENamesAndRanges() 434 return form_value.Unsigned(); in GetAttributeValueAsUnsigned() 445 return form_value.Unsigned(); in GetAttributeValueAsOptionalUnsigned() [all …]
|
| H A D | DWARFASTParserClang.cpp | 311 bit_stride = form_value.Unsigned(); in ParsedDWARFTypeAttributes() 315 byte_size = form_value.Unsigned(); in ParsedDWARFTypeAttributes() 319 alignment = form_value.Unsigned(); in ParsedDWARFTypeAttributes() 323 byte_stride = form_value.Unsigned(); in ParsedDWARFTypeAttributes() 340 decl.SetLine(form_value.Unsigned()); in ParsedDWARFTypeAttributes() 343 decl.SetColumn(form_value.Unsigned()); in ParsedDWARFTypeAttributes() 351 encoding = form_value.Unsigned(); in ParsedDWARFTypeAttributes() 363 if (form_value.Unsigned()) in ParsedDWARFTypeAttributes() 552 return form_value.Unsigned(); in ExtractDataMemberLocation() 2077 uval64 = form_value.Unsigned(); in ParseTemplateDIE() [all …]
|
| H A D | DWARFUnit.cpp | 384 SetAddrBase(form_value.Unsigned()); in AddUnitDIE() 398 SetLoclistsBase(form_value.Unsigned()); in AddUnitDIE() 401 SetRangesBase(form_value.Unsigned()); in AddUnitDIE() 404 SetStrOffsetsBase(form_value.Unsigned()); in AddUnitDIE() 415 m_line_table_offset = form_value.Unsigned(); in AddUnitDIE() 418 m_gnu_addr_base = form_value.Unsigned(); in AddUnitDIE() 421 m_gnu_ranges_base = form_value.Unsigned(); in AddUnitDIE() 424 m_dwo_id = form_value.Unsigned(); in AddUnitDIE()
|
| H A D | DWARFFormValue.h | 71 uint64_t Unsigned() const { return m_value.value.uval; } in Unsigned() function
|
| H A D | DWARFFormValue.cpp | 336 uint64_t uvalue = Unsigned(); in Dump() 489 return Unsigned(); in Address()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | APSIntType.h | 24 constexpr APSIntType(uint32_t Width, bool Unsigned) in APSIntType() argument 25 : BitWidth(Width), IsUnsigned(Unsigned) {} in APSIntType()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/ASTMatchers/Dynamic/ |
| H A D | VariantValue.h | 265 VariantValue(unsigned Unsigned); 290 void setUnsigned(unsigned Unsigned); 343 unsigned Unsigned; member
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | ScaledNumber.h | 436 uint64_t Unsigned = N == INT64_MIN ? UINT64_C(1) << 63 : uint64_t(-N); in splitSigned() local 437 return std::make_pair(Unsigned, true); in splitSigned() 661 std::pair<uint64_t, bool> Unsigned = splitSigned(N); in scale() local 662 return joinSigned(scale(Unsigned.first), Unsigned.second); in scale() 665 std::pair<uint64_t, bool> Unsigned = splitSigned(N); in scaleByInverse() local 666 return joinSigned(scaleByInverse(Unsigned.first), Unsigned.second); in scaleByInverse()
|
| /freebsd-14.2/contrib/libcbor/doc/source/api/ |
| H A D | type_4.rst | 27 0x01 Unsigned integer 1 33 0x20 Unsigned integer 32
|
| H A D | type_5.rst | 32 0x01 Unsigned integer 1 (key) 33 0x02 Unsigned integer 2 (value)
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/ |
| H A D | VariantValue.cpp | 267 VariantValue::VariantValue(unsigned Unsigned) : Type(VT_Nothing) { in VariantValue() argument 268 setUnsigned(Unsigned); in VariantValue() 371 return Value.Unsigned; in getUnsigned() 377 Value.Unsigned = NewValue; in setUnsigned()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/ |
| H A D | RISCVMatInt.cpp | 109 bool Unsigned = false; in generateInstSeqImpl() local 129 Unsigned = true; in generateInstSeqImpl() 139 Unsigned = true; in generateInstSeqImpl() 147 unsigned Opc = Unsigned ? RISCV::SLLI_UW : RISCV::SLLI; in generateInstSeqImpl()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | README_P9.txt | 11 - Vector Extract Unsigned: vextractub vextractuh vextractuw vextractd 19 - Vector Extract Unsigned Byte Left/Right-Indexed: 131 - Vector Multiply-by-10 (& Write Carry) Unsigned Quadword: 137 - Vector Multiply-by-10 Extended (& Write Carry) Unsigned Quadword: 158 - Decimal Shift/Unsigned-Shift/Shift-and-Round: bcds. bcdus. bcdsr. 166 - Decimal (Unsigned) Truncate: bcdtrunc. bcdutrunc. 413 - Vector Extract Unsigned Word: xxextractuw
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | ConstantRange.cpp | 296 bool Unsigned = NoWrapKind == OBO::NoUnsignedWrap; in makeGuaranteedNoWrapRegion() local 304 if (Unsigned) in makeGuaranteedNoWrapRegion() 315 if (Unsigned) in makeGuaranteedNoWrapRegion() 326 if (Unsigned) in makeGuaranteedNoWrapRegion() 350 if (Unsigned) in makeGuaranteedNoWrapRegion() 507 if (Type == ConstantRange::Unsigned) { in getPreferredRange() 1213 return Res.intersectWith(unionWith(Other, Unsigned), Unsigned); in umax() 1241 return Res.intersectWith(unionWith(Other, Unsigned), Unsigned); in umin()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMInstrMVE.td | 269 bit Unsigned = unsigned; 636 (i32 VTI.Unsigned), 643 (i32 VTI.Unsigned), 701 if VTI.Unsigned then { 798 0b1, VTI.Unsigned>; 801 0b0, VTI.Unsigned>; 2772 InVTI.Unsigned, top>; 3078 (i32 OutVTI.Unsigned), (i32 InVTI.Unsigned), (i32 top)); 3302 let Inst{28} = VTI_.Unsigned; 3309 let unsignedFlag = (? (i32 VTI.Unsigned)); [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
| H A D | NVPTX.h | 124 Unsigned = 0, enumerator
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | arm_neon.td | 808 // Signed Saturating Accumulated of Unsigned Value 812 // Unsigned Saturating Accumulated of Signed Value 1329 // Signed/Unsigned Shift Right (Immediate) 1331 // Signed/Unsigned Rounding Shift Right (Immediate) 1334 // Signed/Unsigned Shift Right and Accumulate (Immediate) 1341 // Signed/Unsigned Saturating Shift Left (Immediate) 1343 // Signed Saturating Shift Left Unsigned (Immediate) 1432 // Scalar Unsigned Integer Convert To Floating-point 1532 // Scalar Signed Saturating Accumulated of Unsigned Value 1552 // Scalar Signed Saturating Extract Unsigned Narrow [all …]
|
| H A D | Specifiers.h | 50 enum class TypeSpecifierSign { Unspecified, Signed, Unsigned }; enumerator
|
| H A D | arm_mve_defs.td | 319 // Unsigned<t> expects t to be a scalar type, and expands to the unsigned 322 class Unsigned<Type t>: ComplexType<(CTO_CopyKind t, u32)>; 327 def UScalar: Unsigned<Scalar>; 340 def UHalfScalar: Unsigned<HalfSize<Scalar>>; 577 list<Type> Unsigned = [u8, u16, u32]; 578 list<Type> Int = Signed # Unsigned;
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DwarfUnit.h | 223 void addConstantValue(DIE &Die, const APInt &Val, bool Unsigned); 225 void addConstantValue(DIE &Die, bool Unsigned, uint64_t Val);
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | Mips16InstrInfo.td | 526 // Purpose: Add Immediate Unsigned Word (2-Operand, Extended) 547 // Purpose: Add Immediate Unsigned Word (3-Operand, PC-Relative, Extended) 572 // Purpose: Add Unsigned Word (3-Operand) 729 // Purpose: Divide Unsigned Word 796 // Purpose: Load Byte Unsigned (Extended) 928 // Purpose: Multiply Unsigned Word 1190 // Purpose: Set on Less Than Immediate Unsigned 1200 // Purpose: Set on Less Than Immediate Unsigned (Extended) 1209 // Purpose: Set on Less Than Immediate Unsigned (Extended) 1226 // Purpose: Set on Less Than Unsigned [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86InstrOperands.td | 388 // Unsigned immediate used by SSE/AVX instructions 420 // Unsigned 4-bit immediate used by some XOP instructions. 427 // Unsigned 8-bit immediate used by SSE/AVX instructions.
|