HomeSort by relevance Sort by last modified time
    Searched refs:Unsigned (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/clang/test/SemaCXX/
bitfield.cpp 6 typedef unsigned Unsigned;
9 struct T { unsigned n : 2; } t;
11 typedef __typeof__(t.n) Unsigned; // Bitfield is unsigned
16 typedef __typeof__(t.n = 0) Unsigned; // Assignment produces an lvalue...
17 typedef __typeof__(t.n += 0) Unsigned;
18 typedef __typeof__(t.n *= 0) Unsigned;
23 typedef __typeof__(++t.n) Unsigned; // Increment is equivalent to compound-assignment.
24 typedef __typeof__(--t.n) Unsigned;
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
Unsigned.java 20 * Unsigned arithmetic over Java's signed types.
22 public final class Unsigned {
23 private Unsigned() {}
Uint.java 20 * An unsigned integer.
30 return Unsigned.compare(intValue, uint.intValue);
  /libcore/dex/src/main/java/com/android/dex/util/
Unsigned.java 20 * Unsigned arithmetic over Java's signed types.
22 public final class Unsigned {
23 private Unsigned() {}
  /libcore/dex/src/main/java/com/android/dex/
FieldId.java 19 import com.android.dex.util.Unsigned;
48 return Unsigned.compare(declaringClassIndex, other.declaringClassIndex);
51 return Unsigned.compare(nameIndex, other.nameIndex);
53 return Unsigned.compare(typeIndex, other.typeIndex); // should always be 0
MethodId.java 19 import com.android.dex.util.Unsigned;
48 return Unsigned.compare(declaringClassIndex, other.declaringClassIndex);
51 return Unsigned.compare(nameIndex, other.nameIndex);
53 return Unsigned.compare(protoIndex, other.protoIndex);
ProtoId.java 19 import com.android.dex.util.Unsigned;
36 return Unsigned.compare(returnTypeIndex, other.returnTypeIndex);
38 return Unsigned.compare(parametersOffset, other.parametersOffset);
TypeList.java 19 import com.android.dex.util.Unsigned;
40 return Unsigned.compare(types[i], other.types[i]);
43 return Unsigned.compare(types.length, other.types.length);
  /external/clang/test/Sema/
bitfield.c 26 unsigned : -2; // expected-error {{anonymous bit-field has negative width (-2)}}
33 struct b {unsigned x : 2;} x;
37 struct {unsigned x : 2;} x2;
48 unsigned bitX : 4;
49 unsigned bitY : 4;
50 unsigned var;
62 typedef unsigned Unsigned;
65 struct Test5 { unsigned n : 2; } t5;
66 // Bitfield is unsigned
    [all...]
  /external/clang/test/Index/
index-templates.cpp 35 const unsigned OneDimension = 1;
36 template<typename T, unsigned Dimensions = OneDimension>
39 template<template<typename, unsigned> class DataStructure = array>
42 typedef unsigned Unsigned;
44 template<typename T, Unsigned Value>
54 f<Unsigned, OneDimension, array>(array<Unsigned, OneDimension>());
55 Z4().getAs<Unsigned>();
161 // CHECK-LOAD: index-templates.cpp:42:18: TypedefDecl=Unsigned:42:18 (Definition) Extent=[42:1 - 42:26
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
APSIntType.h 25 APSIntType(uint32_t Width, bool Unsigned)
26 : BitWidth(Width), IsUnsigned(Unsigned) {}
88 /// for 'unsigned char' (u8).
98 /// Unsigned integers are considered to be better conversion types than
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/
quick.s 14 ; Unsigned 5 bits.
28 ; Unsigned 6 bits
43 ; Only need to check negative operands here; the unsigned 5
  /external/clang/include/clang/ASTMatchers/Dynamic/
VariantValue.h 61 bool isConvertibleTo(ArgKind To, unsigned *Specificity) const;
131 unsigned *Specificity) const = 0;
188 unsigned *Specificity) const {
244 /// - \c unsigned
256 VariantValue(unsigned Unsigned);
264 /// \brief Unsigned value functions.
266 unsigned getUnsigned() const;
267 void setUnsigned(unsigned Unsigned);
    [all...]
  /external/llvm/include/llvm/ADT/
APSInt.h 30 /// unsigned.
65 void toString(SmallVectorImpl<char> &Str, unsigned Radix = 10) const {
70 std::string toString(unsigned Radix) const {
124 APSInt operator>>(unsigned Amt) const {
127 APSInt& operator>>=(unsigned Amt) {
178 APSInt operator<<(unsigned Bits) const {
181 APSInt& operator<<=(unsigned Amt) {
276 static APSInt getMaxValue(uint32_t numBits, bool Unsigned) {
277 return APSInt(Unsigned ? APInt::getMaxValue(numBits)
278 : APInt::getSignedMaxValue(numBits), Unsigned);
    [all...]
  /external/llvm/unittests/ADT/
StringRefTest.cpp 425 } Unsigned[] =
472 for (size_t i = 0; i < array_lengthof(Unsigned); ++i) {
473 bool U8Success = StringRef(Unsigned[i].Str).getAsInteger(0, U8);
474 if (static_cast<uint8_t>(Unsigned[i].Expected) == Unsigned[i].Expected) {
476 EXPECT_EQ(U8, Unsigned[i].Expected);
480 bool U16Success = StringRef(Unsigned[i].Str).getAsInteger(0, U16);
481 if (static_cast<uint16_t>(Unsigned[i].Expected) == Unsigned[i].Expected) {
483 EXPECT_EQ(U16, Unsigned[i].Expected)
    [all...]
  /external/clang/lib/ASTMatchers/Dynamic/
VariantValue.cpp 28 return "unsigned";
35 bool ArgKind::isConvertibleTo(ArgKind To, unsigned *Specificity) const {
43 unsigned Distance;
102 unsigned *Specificity) const override {
160 unsigned *Specificity) const override {
161 unsigned MaxSpecificity = 0;
163 unsigned ThisSpecificity;
203 unsigned *Specificity) const override {
248 VariantValue::VariantValue(unsigned Unsigned) : Type(VT_Nothing)
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTX.h 110 Unsigned = 0,
  /external/llvm/include/llvm/Support/
ScaledNumber.h 55 static_assert(!std::numeric_limits<DigitsT>::is_signed, "expected unsigned");
82 static_assert(!std::numeric_limits<DigitsT>::is_signed, "expected unsigned");
116 static_assert(!std::numeric_limits<DigitsT>::is_signed, "expected unsigned");
155 static_assert(!std::numeric_limits<DigitsT>::is_signed, "expected unsigned");
190 static_assert(!std::numeric_limits<DigitsT>::is_signed, "expected unsigned");
253 static_assert(!std::numeric_limits<DigitsT>::is_signed, "expected unsigned");
289 static_assert(!std::numeric_limits<DigitsT>::is_signed, "expected unsigned");
335 static_assert(!std::numeric_limits<DigitsT>::is_signed, "expected unsigned");
375 static_assert(!std::numeric_limits<DigitsT>::is_signed, "expected unsigned");
426 unsigned Precision)
    [all...]
  /external/v8/src/wasm/
asm-types.h 37 V(Unsigned, "unsigned", 9, kAsmInt) \
322 this == AsmType::Unsigned() || this == AsmType::Float();
  /external/clang/unittests/ASTMatchers/Dynamic/
VariantValueTest.cpp 22 TEST(VariantValueTest, Unsigned) {
23 const unsigned kUnsigned = 17;
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.h 71 unsigned UniqueID;
83 unsigned DebugInfoOffset;
113 DwarfUnit(unsigned UID, dwarf::Tag, const DICompileUnit *CU, AsmPrinter *A,
130 unsigned getUniqueID() const { return UniqueID; }
135 unsigned getDebugInfoOffset() const { return DebugInfoOffset; }
136 void setDebugInfoOffset(unsigned DbgInfoOff) { DebugInfoOffset = DbgInfoOff; }
178 /// Add an unsigned integer attribute data and value.
236 void addSourceLine(DIE &Die, unsigned Line, StringRef File,
249 void addConstantValue(DIE &Die, const APInt &Val, bool Unsigned);
250 void addConstantValue(DIE &Die, bool Unsigned, uint64_t Val)
    [all...]
  /external/llvm/test/MC/PowerPC/
ppc64-errors.s 37 # Unsigned 16-bit immediate operands
  /external/v8/src/interpreter/
bytecode-traits.h 21 #define DECLARE_OPERAND_TYPE_INFO(Name, Scalable, Unsigned, BaseSize) \
25 static const bool kIsUnsigned = Unsigned; \
  /frameworks/rs/api/
rs_value_types.spec 26 <tr><td>Unsigned integer:</td> <td>uchar, @uint8_t</td> <td>ushort, @uint16_t</td> <td>uint, @uint32_t</td> <td>ulong, @uint64_t</td></tr>
163 simple: unsigned char
164 summary: 8 bit unsigned integer
166 8 bit unsigned integer type.
170 simple: unsigned short
171 summary: 16 bit unsigned integer
173 A 16 bit unsigned integer type.
177 simple: unsigned int
178 summary: 32 bit unsigned integer
180 A 32 bit unsigned integer type
    [all...]
  /external/llvm/lib/Target/NVPTX/InstPrinter/
NVPTXInstPrinter.cpp 35 void NVPTXInstPrinter::printRegName(raw_ostream &OS, unsigned RegNo) const {
38 unsigned RCId = (RegNo >> 28);
66 unsigned VReg = RegNo & 0x0FFFFFFF;
78 void NVPTXInstPrinter::printOperand(const MCInst *MI, unsigned OpNo,
82 unsigned Reg = Op.getReg();
248 else if (Imm == NVPTX::PTXLdStInstCode::Unsigned)

Completed in 631 milliseconds

1 2 3