/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
H A D | Bitfields.h | 99 using Unsigned = typename std::make_unsigned<T>::type; 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 | 287 static APSInt getMaxValue(uint32_t numBits, bool Unsigned) { in getMaxValue() argument 288 return APSInt(Unsigned ? APInt::getMaxValue(numBits) in getMaxValue() 289 : APInt::getSignedMaxValue(numBits), Unsigned); in getMaxValue() 294 static APSInt getMinValue(uint32_t numBits, bool Unsigned) { in getMinValue() argument 295 return APSInt(Unsigned ? APInt::getMinValue(numBits) in getMinValue() 296 : APInt::getSignedMinValue(numBits), Unsigned); in getMinValue()
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/nds32/ |
H A D | constraints.md | 86 "Unsigned immediate 1-bit value" 91 "Unsigned immediate 2-bit value" 96 "Unsigned immediate 3-bit value" 106 "Unsigned immediate 4-bit value" 121 "Unsigned immediate 5-bit value" 131 "Unsigned immediate 6-bit value" 138 "Unsigned immediate 5-bit value for movpi45 instruction with range 16-47" 145 "Unsigned immediate 6-bit value constraint for addri36.sp instruction" 153 "Unsigned immediate 8-bit value" 158 "Unsigned immediate 9-bit value" [all …]
|
/netbsd-src/external/gpl3/gcc/dist/gcc/config/nds32/ |
H A D | constraints.md | 86 "Unsigned immediate 1-bit value" 91 "Unsigned immediate 2-bit value" 96 "Unsigned immediate 3-bit value" 106 "Unsigned immediate 4-bit value" 121 "Unsigned immediate 5-bit value" 131 "Unsigned immediate 6-bit value" 138 "Unsigned immediate 5-bit value for movpi45 instruction with range 16-47" 145 "Unsigned immediate 6-bit value constraint for addri36.sp instruction" 153 "Unsigned immediate 8-bit value" 158 "Unsigned immediate 9-bit value" [all …]
|
/netbsd-src/external/gpl3/gdb/dist/sim/testsuite/arm/iwmmxt/ |
H A D | wacc.cgs | 17 # Test Unsigned Byte Wide Accumulation 37 # Test Unsigned Half Word Wide Accumulation 57 # Test Unsigned Word Wide Accumulation
|
H A D | textrm.cgs | 17 # Test Unsigned Byte Wide Extraction 49 # Test Unsigned Half Word Wide Extraction 81 # Test Unsigned Word Wide Extraction
|
H A D | wunpckeh.cgs | 17 # Test Unsigned Byte Unpacking 57 # Test Unsigned Halfword Unpacking 97 # Test Unsigned Word Unpacking
|
H A D | wunpckel.cgs | 17 # Test Unsigned Byte Unpacking 57 # Test Unsigned Halfword Unpacking 97 # Test Unsigned Word Unpacking
|
H A D | wmin.cgs | 17 # Test Unsigned Byte Minimum 69 # Test Unsigned Halfword Minimum 121 # Test Unsigned Word Minimum
|
H A D | wmax.cgs | 17 # Test Unsigned Byte Maximum 69 # Test Unsigned Halfword Maximum 121 # Test Unsigned Word Maximum
|
H A D | wpack.cgs | 17 # Test Halfword, Unsigned Saturation, Packing 69 # Test Word, Unsigned Saturation, Packing 121 # Test Double Word, Unsigned Saturation, Packing
|
H A D | wcmpgt.cgs | 17 # Test Unsigned Byte Wide Compare Greater Than 69 # Test Unsigned Half Word Wide Compare Greater Than 121 # Test Unsigned Word Wide Compare Greater Than
|
H A D | wmul.cgs | 17 # Test Unsigned, Most Significant Multiply 43 # Test Unsigned, Least Significant Multiply
|
H A D | wadd.cgs | 43 # Test Unsigned Saturated Byte Addition 121 # Test Unsigned Saturated Halfword Addition 199 # Test Unsigned Saturated Word Addition
|
H A D | wsub.cgs | 43 # Test Unsigned saturated Byte subtraction 121 # Test Unsigned saturated Halfword subtraction 199 # Test Unsigned saturated Word subtraction
|
H A D | wmac.cgs | 17 # Test Unsigned, Multiply Accumulate, Non-zeroing 43 # Test Unsigned, Multiply Accumulate, Zeroing
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/vax/ |
H A D | constraints.md | 31 "Unsigned 8 bit value" 36 "Unsigned 16 bit value" 76 "Unsigned 8 bit value [old]" 81 "Unsigned 16 bit value [old]"
|
/netbsd-src/external/gpl3/gcc/dist/gcc/config/vax/ |
H A D | constraints.md | 31 "Unsigned 8 bit value" 36 "Unsigned 16 bit value" 76 "Unsigned 8 bit value [old]" 81 "Unsigned 16 bit value [old]"
|
/netbsd-src/external/mit/libcbor/dist/doc/source/api/ |
H A D | type_4.rst | 22 0x01 Unsigned integer 1 28 0x20 Unsigned integer 32
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
H A D | ScaledNumber.h | 435 uint64_t Unsigned = N == INT64_MIN ? UINT64_C(1) << 63 : uint64_t(-N); in splitSigned() local 436 return std::make_pair(Unsigned, true); in splitSigned() 660 std::pair<uint64_t, bool> Unsigned = splitSigned(N); in scale() local 661 return joinSigned(scale(Unsigned.first), Unsigned.second); in scale() 664 std::pair<uint64_t, bool> Unsigned = splitSigned(N); in scaleByInverse() local 665 return joinSigned(scaleByInverse(Unsigned.first), Unsigned.second); in scaleByInverse()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/Dynamic/ |
H A D | VariantValue.h | 265 VariantValue(unsigned Unsigned); 290 void setUnsigned(unsigned Unsigned); 343 unsigned Unsigned; member
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | APSIntType.h | 24 APSIntType(uint32_t Width, bool Unsigned) in APSIntType() argument 25 : BitWidth(Width), IsUnsigned(Unsigned) {} in APSIntType()
|
/netbsd-src/external/bsd/elftoolchain/dist/common/sys/ |
H A D | elfdefinitions.m4 | 231 typedef uint8_t Elf32_Byte; /* Unsigned tiny integer. */ 232 typedef uint16_t Elf32_Half; /* Unsigned medium integer. */ 236 typedef uint32_t Elf32_Word; /* Unsigned integer. */ 237 typedef uint64_t Elf32_Lword; /* Unsigned long integer. */ 240 typedef uint8_t Elf64_Byte; /* Unsigned tiny integer. */ 241 typedef uint16_t Elf64_Half; /* Unsigned medium integer. */ 245 typedef uint32_t Elf64_Word; /* Unsigned integer. */ 246 typedef uint64_t Elf64_Lword; /* Unsigned long integer. */ 247 typedef uint64_t Elf64_Xword; /* Unsigned long integer. */
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/ |
H A D | VariantValue.cpp | 266 VariantValue::VariantValue(unsigned Unsigned) : Type(VT_Nothing) { in VariantValue() argument 267 setUnsigned(Unsigned); in VariantValue() 370 return Value.Unsigned; in getUnsigned() 376 Value.Unsigned = NewValue; in setUnsigned()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
H A D | ConstantRange.cpp | 242 bool Unsigned = NoWrapKind == OBO::NoUnsignedWrap; in makeGuaranteedNoWrapRegion() local 250 if (Unsigned) in makeGuaranteedNoWrapRegion() 262 if (Unsigned) in makeGuaranteedNoWrapRegion() 273 if (Unsigned) in makeGuaranteedNoWrapRegion() 293 if (Unsigned) in makeGuaranteedNoWrapRegion() 451 if (Type == ConstantRange::Unsigned) { in getPreferredRange() 1082 return Res.intersectWith(unionWith(Other, Unsigned), Unsigned); in umax() 1110 return Res.intersectWith(unionWith(Other, Unsigned), Unsigned); in umin()
|