/external/clang/test/SemaCXX/ |
D | bitfield.cpp | 6 typedef unsigned Unsigned; typedef 11 typedef __typeof__(t.n) Unsigned; // Bitfield is unsigned typedef 16 typedef __typeof__(t.n = 0) Unsigned; // Assignment produces an lvalue... typedef 17 typedef __typeof__(t.n += 0) Unsigned; typedef 18 typedef __typeof__(t.n *= 0) Unsigned; typedef 23 typedef __typeof__(++t.n) Unsigned; // Increment is equivalent to compound-assignment. typedef 24 typedef __typeof__(--t.n) Unsigned; typedef 28 typedef __typeof__(t.n++) Unsigned; // Post-increment's result has the type typedef 29 typedef __typeof__(t.n--) Unsigned; // of the operand... typedef 30 typedef __typeof__(+(t.n++)) Unsigned; // ... and is not a bit-field (because typedef [all …]
|
/external/google-fruit/include/fruit/impl/data_structures/ |
D | semistatic_map.templates.h | 48 …FixedSizeVector<Unsigned, ArenaAllocator<Unsigned>> count(num_buckets, 0, ArenaAllocator<Unsigned>… in SemistaticMap() 50 hash_function.shift = (sizeof(Unsigned) * CHAR_BIT - num_bits); in SemistaticMap() 56 std::uniform_int_distribution<Unsigned> random_distribution; in SemistaticMap() 62 Unsigned& this_count = count[hash((*itr).first)]; in SemistaticMap() 71 std::memset(count.data(), 0, num_buckets * sizeof(Unsigned)); in SemistaticMap() 78 for (Unsigned n : count) { in SemistaticMap() 107 Unsigned h = hash(itr->first); in SemistaticMap() 125 Unsigned h = hash(itr->first); in SemistaticMap() 162 Unsigned h = hash(key); in at() 173 Unsigned h = hash(key); in find()
|
D | semistatic_map.h | 43 using Unsigned = std::uintptr_t; 50 std::numeric_limits<NumBits>::max() >= sizeof(Unsigned) * CHAR_BIT, 54 Unsigned a; 59 Unsigned hash(Unsigned x) const; 78 Unsigned hash(const Key& key) const;
|
D | semistatic_map.defn.h | 29 inline typename SemistaticMap<Key, Value>::Unsigned SemistaticMap<Key, Value>::HashFunction::hash(U… in hash() 30 return (Unsigned)(a * x) >> shift; in hash() 34 inline typename SemistaticMap<Key, Value>::Unsigned SemistaticMap<Key, Value>::hash(const Key& key)… in hash()
|
/external/clang/test/Index/ |
D | index-templates.cpp | 42 typedef unsigned Unsigned; typedef 44 template<typename T, Unsigned Value> 54 f<Unsigned, OneDimension, array>(array<Unsigned, OneDimension>()); in template_exprs() 55 Z4().getAs<Unsigned>(); in template_exprs()
|
/external/llvm/unittests/ADT/ |
D | StringRefTest.cpp | 425 } Unsigned[] = variable 472 for (size_t i = 0; i < array_lengthof(Unsigned); ++i) { in TEST() 473 bool U8Success = StringRef(Unsigned[i].Str).getAsInteger(0, U8); in TEST() 474 if (static_cast<uint8_t>(Unsigned[i].Expected) == Unsigned[i].Expected) { in TEST() 476 EXPECT_EQ(U8, Unsigned[i].Expected); in TEST() 480 bool U16Success = StringRef(Unsigned[i].Str).getAsInteger(0, U16); in TEST() 481 if (static_cast<uint16_t>(Unsigned[i].Expected) == Unsigned[i].Expected) { in TEST() 483 EXPECT_EQ(U16, Unsigned[i].Expected); in TEST() 487 bool U32Success = StringRef(Unsigned[i].Str).getAsInteger(0, U32); in TEST() 488 if (static_cast<uint32_t>(Unsigned[i].Expected) == Unsigned[i].Expected) { in TEST() [all …]
|
/external/pdfium/third_party/libtiff/ |
D | 0000-build-config.patch | 124 +/* Unsigned 8-bit type */ 130 +/* Unsigned 16-bit type */ 136 +/* Unsigned 32-bit type */ 142 +/* Unsigned 32-bit type formatter */ 150 +/* Unsigned 64-bit type formatter */ 156 +/* Unsigned 64-bit type */ 166 +/* Unsigned 64-bit type formatter */ 177 +/* Unsigned 64-bit type formatter */ 185 +/* Unsigned 64-bit type */ 223 +/* Unsigned 64-bit type */
|
/external/vixl/doc/aarch64/ |
D | supported-instructions-aarch64.md | 1309 Unsigned bitfield insert with zero at right. 1319 Unsigned bitfield move. 1329 Unsigned bitfield extract. 1339 Unsigned integer divide. 1346 Unsigned long multiply and accumulate: 32 x 32 + 64 -> 64-bit. 1356 Unsigned long multiply and subtract: 64 - (32 x 32) -> 64-bit. 1366 Unsigned multiply high: 64 x 64 -> 64-bit <127:64>. 1373 Unsigned long multiply: 32 x 32 -> 64-bit. 1380 Unsigned extend byte. 1387 Unsigned extend halfword. [all …]
|
/external/clang/test/Sema/ |
D | bitfield.c | 62 typedef unsigned Unsigned; typedef 79 typedef __typeof__(+(t5.n++)) Unsigned; // Post-increment is underspecified, but seems to typedef 80 typedef __typeof__(+(t5.n--)) Unsigned; // also act like compound-assignment. typedef
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/ |
D | StringRefTest.cpp | 564 } Unsigned[] = variable 611 for (size_t i = 0; i < array_lengthof(Unsigned); ++i) { in TEST() 612 bool U8Success = StringRef(Unsigned[i].Str).getAsInteger(0, U8); in TEST() 613 if (static_cast<uint8_t>(Unsigned[i].Expected) == Unsigned[i].Expected) { in TEST() 615 EXPECT_EQ(U8, Unsigned[i].Expected); in TEST() 619 bool U16Success = StringRef(Unsigned[i].Str).getAsInteger(0, U16); in TEST() 620 if (static_cast<uint16_t>(Unsigned[i].Expected) == Unsigned[i].Expected) { in TEST() 622 EXPECT_EQ(U16, Unsigned[i].Expected); in TEST() 626 bool U32Success = StringRef(Unsigned[i].Str).getAsInteger(0, U32); in TEST() 627 if (static_cast<uint32_t>(Unsigned[i].Expected) == Unsigned[i].Expected) { in TEST() [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | APSInt.h | 241 static APSInt getMaxValue(uint32_t numBits, bool Unsigned) { in getMaxValue() argument 242 return APSInt(Unsigned ? APInt::getMaxValue(numBits) in getMaxValue() 243 : APInt::getSignedMaxValue(numBits), Unsigned); in getMaxValue() 248 static APSInt getMinValue(uint32_t numBits, bool Unsigned) { in getMinValue() argument 249 return APSInt(Unsigned ? APInt::getMinValue(numBits) in getMinValue() 250 : APInt::getSignedMinValue(numBits), Unsigned); in getMinValue()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AVR/ |
D | div.ll | 3 ; Unsigned 8-bit division 23 ; Unsigned 16-bit division 43 ; Unsigned 32-bit division 65 ; Unsigned 64-bit division 99 ; Unsigned 128-bit division
|
D | rem.ll | 3 ; Unsigned 8-bit remision 23 ; Unsigned 16-bit remision 41 ; Unsigned 32-bit remision
|
/external/llvm/include/llvm/ADT/ |
D | APSInt.h | 276 static APSInt getMaxValue(uint32_t numBits, bool Unsigned) { in getMaxValue() argument 277 return APSInt(Unsigned ? APInt::getMaxValue(numBits) in getMaxValue() 278 : APInt::getSignedMaxValue(numBits), Unsigned); in getMaxValue() 283 static APSInt getMinValue(uint32_t numBits, bool Unsigned) { in getMinValue() argument 284 return APSInt(Unsigned ? APInt::getMinValue(numBits) in getMinValue() 285 : APInt::getSignedMinValue(numBits), Unsigned); in getMinValue()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
D | APSInt.h | 270 static APSInt getMaxValue(uint32_t numBits, bool Unsigned) { in getMaxValue() argument 271 return APSInt(Unsigned ? APInt::getMaxValue(numBits) in getMaxValue() 272 : APInt::getSignedMaxValue(numBits), Unsigned); in getMaxValue() 277 static APSInt getMinValue(uint32_t numBits, bool Unsigned) { in getMinValue() argument 278 return APSInt(Unsigned ? APInt::getMinValue(numBits) in getMinValue() 279 : APInt::getSignedMinValue(numBits), Unsigned); in getMinValue()
|
/external/vixl/src/ |
D | globals-vixl.h | 72 struct Unsigned; 75 struct Unsigned<32> { 80 struct Unsigned<64> {
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Disassembler/AArch64/ |
D | neon-instructions.txt | 142 # Vector Absolute Difference and Accumulate (Signed, Unsigned) 143 # Vector Absolute Difference (Signed, Unsigned) 199 # Vector Compare Mask Higher or Same (Unsigned Integer) 211 # Vector Compare Mask Higher (Unsigned Integer) 308 # Vector Integer Halving Add (Unsigned) 310 # Vector Integer Halving Sub (Unsigned) 327 # Vector Integer Rouding Halving Add (Unsigned) 344 # Vector Integer Saturating Add (Unsigned) 346 # Vector Integer Saturating Sub (Unsigned) 365 # Scalar Integer Saturating Add (Unsigned) [all …]
|
/external/llvm/test/MC/Disassembler/AArch64/ |
D | neon-instructions.txt | 142 # Vector Absolute Difference and Accumulate (Signed, Unsigned) 143 # Vector Absolute Difference (Signed, Unsigned) 199 # Vector Compare Mask Higher or Same (Unsigned Integer) 211 # Vector Compare Mask Higher (Unsigned Integer) 308 # Vector Integer Halving Add (Unsigned) 310 # Vector Integer Halving Sub (Unsigned) 327 # Vector Integer Rouding Halving Add (Unsigned) 344 # Vector Integer Saturating Add (Unsigned) 346 # Vector Integer Saturating Sub (Unsigned) 365 # Scalar Integer Saturating Add (Unsigned) [all …]
|
/external/clang/include/clang/ASTMatchers/Dynamic/ |
D | VariantValue.h | 256 VariantValue(unsigned Unsigned); 267 void setUnsigned(unsigned Unsigned); 313 unsigned Unsigned; member
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | APSIntType.h | 25 APSIntType(uint32_t Width, bool Unsigned) in APSIntType() argument 26 : BitWidth(Width), IsUnsigned(Unsigned) {} in APSIntType()
|
/external/llvm/include/llvm/Support/ |
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()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
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()
|
/external/clang/lib/ASTMatchers/Dynamic/ |
D | VariantValue.cpp | 248 VariantValue::VariantValue(unsigned Unsigned) : Type(VT_Nothing) { in VariantValue() argument 249 setUnsigned(Unsigned); in VariantValue() 304 return Value.Unsigned; in getUnsigned() 310 Value.Unsigned = NewValue; in setUnsigned()
|
/external/llvm/lib/Target/PowerPC/ |
D | p9-instrs.txt | 46 // Decimal Unsigned Shift VX-form p360 57 // Decimal Unsigned Truncate VX-form p363 98 // Multiply-Add High Doubleword Unsigned VA-form p81 107 // Modulo Unsigned Word X-form p76 113 // Modulo Unsigned Doubleword X-form p84 304 // VSX Vector Extract Unsigned Word XX2-form 788 436 // Vector Extract Unsigned 439 // p.364: Vector Extract Unsigned Left/Right-Indexed
|
/external/e2fsprogs/tests/f_h_unsigned/ |
D | name | 1 Unsigned HTREE directory
|