Home
last modified time | relevance | path

Searched refs:Unsigned (Results 1 – 25 of 293) sorted by relevance

12345678910>>...12

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DBitfields.h99 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 DAPSInt.h287 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 Dconstraints.md86 "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 Dconstraints.md86 "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 Dwacc.cgs17 # Test Unsigned Byte Wide Accumulation
37 # Test Unsigned Half Word Wide Accumulation
57 # Test Unsigned Word Wide Accumulation
H A Dtextrm.cgs17 # Test Unsigned Byte Wide Extraction
49 # Test Unsigned Half Word Wide Extraction
81 # Test Unsigned Word Wide Extraction
H A Dwunpckeh.cgs17 # Test Unsigned Byte Unpacking
57 # Test Unsigned Halfword Unpacking
97 # Test Unsigned Word Unpacking
H A Dwunpckel.cgs17 # Test Unsigned Byte Unpacking
57 # Test Unsigned Halfword Unpacking
97 # Test Unsigned Word Unpacking
H A Dwmin.cgs17 # Test Unsigned Byte Minimum
69 # Test Unsigned Halfword Minimum
121 # Test Unsigned Word Minimum
H A Dwmax.cgs17 # Test Unsigned Byte Maximum
69 # Test Unsigned Halfword Maximum
121 # Test Unsigned Word Maximum
H A Dwpack.cgs17 # Test Halfword, Unsigned Saturation, Packing
69 # Test Word, Unsigned Saturation, Packing
121 # Test Double Word, Unsigned Saturation, Packing
H A Dwcmpgt.cgs17 # 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 Dwmul.cgs17 # Test Unsigned, Most Significant Multiply
43 # Test Unsigned, Least Significant Multiply
H A Dwadd.cgs43 # Test Unsigned Saturated Byte Addition
121 # Test Unsigned Saturated Halfword Addition
199 # Test Unsigned Saturated Word Addition
H A Dwsub.cgs43 # Test Unsigned saturated Byte subtraction
121 # Test Unsigned saturated Halfword subtraction
199 # Test Unsigned saturated Word subtraction
H A Dwmac.cgs17 # Test Unsigned, Multiply Accumulate, Non-zeroing
43 # Test Unsigned, Multiply Accumulate, Zeroing
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/vax/
H A Dconstraints.md31 "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 Dconstraints.md31 "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 Dtype_4.rst22 0x01 Unsigned integer 1
28 0x20 Unsigned integer 32
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DScaledNumber.h435 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 DVariantValue.h265 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 DAPSIntType.h24 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 Delfdefinitions.m4231 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 DVariantValue.cpp266 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 DConstantRange.cpp242 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()

12345678910>>...12