/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/rust/crates/serde_json/src/lexical/ |
D | num.rs | 177 type Unsigned: Integer; typedef 210 const SIGN_MASK: Self::Unsigned; 212 const EXPONENT_MASK: Self::Unsigned; 214 const HIDDEN_BIT_MASK: Self::Unsigned; 216 const MANTISSA_MASK: Self::Unsigned; 221 const INFINITY_BITS: Self::Unsigned; 223 const NEGATIVE_INFINITY_BITS: Self::Unsigned; 248 fn from_bits(u: Self::Unsigned) -> Self; in from_bits() 249 fn to_bits(self) -> Self::Unsigned; in to_bits() argument 256 self.to_bits() & Self::EXPONENT_MASK == Self::Unsigned::ZERO in is_denormal() [all …]
|
/external/tensorflow/tensorflow/lite/delegates/xnnpack/ |
D | unsigned_quantized_sub_test.cc | 48 .Unsigned(true) 76 .Unsigned(true) 85 .Unsigned(true) 113 .Unsigned(true) 122 .Unsigned(true) 150 .Unsigned(true) 159 .Unsigned(true) 187 .Unsigned(true) 196 .Unsigned(true) 224 .Unsigned(true) [all …]
|
D | unsigned_quantized_add_test.cc | 48 .Unsigned(true) 76 .Unsigned(true) 85 .Unsigned(true) 113 .Unsigned(true) 122 .Unsigned(true) 150 .Unsigned(true) 159 .Unsigned(true) 187 .Unsigned(true) 196 .Unsigned(true) 224 .Unsigned(true) [all …]
|
D | unsigned_quantized_mul_test.cc | 48 .Unsigned(true) 76 .Unsigned(true) 85 .Unsigned(true) 113 .Unsigned(true) 122 .Unsigned(true) 150 .Unsigned(true) 159 .Unsigned(true) 187 .Unsigned(true) 196 .Unsigned(true) 224 .Unsigned(true) [all …]
|
D | unsigned_quantized_mean_test.cc | 43 .Unsigned(true) in TEST() 65 .Unsigned(true) in TEST() 87 .Unsigned(true) in TEST() 109 .Unsigned(true) in TEST() 131 .Unsigned(true) 153 .Unsigned(true) 175 .Unsigned(true) 182 .Unsigned(true) 204 .Unsigned(true) 211 .Unsigned(true) [all …]
|
D | unsigned_quantized_pad_test.cc | 41 .Unsigned(true) in TEST() 61 .Unsigned(true) in TEST() 81 .Unsigned(true) in TEST() 101 .Unsigned(true) in TEST() 121 .Unsigned(true) in TEST() 141 .Unsigned(true) in TEST() 161 .Unsigned(true) in TEST() 181 .Unsigned(true) in TEST() 201 .Unsigned(true) in TEST() 221 .Unsigned(true) in TEST() [all …]
|
D | unsigned_quantized_transpose_conv_test.cc | 41 .Unsigned(true) 67 .Unsigned(true) 94 .Unsigned(true) 120 .Unsigned(true) 147 .Unsigned(true) 173 .Unsigned(true) 200 .Unsigned(true) 226 .Unsigned(true) 257 .Unsigned(true) in TEST() 286 .Unsigned(true) in TEST() [all …]
|
D | unsigned_dequantize_test.cc | 43 .Unsigned(true) 64 .Unsigned(true) 84 .Unsigned(true) 103 .Unsigned(true) 128 .Unsigned(true) in TEST()
|
D | quantize_float32_to_uint8_test.cc | 43 .Unsigned(true) 64 .Unsigned(true) 84 .Unsigned(true) 103 .Unsigned(true) 128 .Unsigned(true) in TEST()
|
D | unsigned_quantized_max_pool_2d_test.cc | 43 .Unsigned(true) in TEST() 71 .Unsigned(true) in TEST() 104 .Unsigned(true) in TEST() 137 .Unsigned(true) in TEST() 169 .Unsigned(true) in TEST() 201 .Unsigned(true) in TEST() 231 .Unsigned(true) in TEST() 261 .Unsigned(true) in TEST() 293 .Unsigned(true) in TEST() 325 .Unsigned(true) in TEST() [all …]
|
D | unsigned_quantized_logistic_test.cc | 43 .Unsigned(true) 66 .Unsigned(true) 88 .Unsigned(true) 109 .Unsigned(true) 136 .Unsigned(true) in TEST()
|
D | unsigned_quantized_resize_bilinear_test.cc | 42 .Unsigned(true) in TEST() 65 .Unsigned(true) in TEST() 87 .Unsigned(true) in TEST() 113 .Unsigned(true) in TEST()
|
/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; 52 (std::numeric_limits<NumBits>::max)() >= sizeof(Unsigned) * CHAR_BIT, 56 Unsigned a; 61 Unsigned hash(Unsigned x) const; 80 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/rust/crates/num-traits/src/ |
D | sign.rs | 197 pub trait Unsigned: Num {} trait 205 empty_trait_impl!(Unsigned for usize u8 u16 u32 u64); 207 empty_trait_impl!(Unsigned for u128); 209 impl<T: Unsigned> Unsigned for Wrapping<T> where Wrapping<T>: Num {} 213 fn require_unsigned<T: Unsigned>(_: &T) {} in unsigned_wrapping_is_unsigned()
|
/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 | 103 +/* Unsigned 8-bit type */ 109 +/* Unsigned 16-bit type */ 115 +/* Unsigned 32-bit type */ 121 +/* Unsigned 32-bit type formatter */ 129 +/* Unsigned 64-bit type formatter */ 135 +/* Unsigned 64-bit type */ 145 +/* Unsigned 64-bit type formatter */ 151 +/* Unsigned 64-bit type */ 159 +/* Unsigned 64-bit type formatter */ 165 +/* Unsigned 64-bit type */ [all …]
|
/external/rust/crates/arbitrary/src/ |
D | unstructured.rs | 329 debug_assert_ne!(delta, T::Unsigned::ZERO); in int_in_range_impl() 335 let mut arbitrary_int = T::Unsigned::ZERO; in int_in_range_impl() 339 && (delta >> T::Unsigned::from_usize(bytes_consumed * 8)) > T::Unsigned::ZERO in int_in_range_impl() 350 T::Unsigned::from_u8(byte) in int_in_range_impl() 352 (arbitrary_int << 8) | T::Unsigned::from_u8(byte) in int_in_range_impl() 356 let offset = if delta == T::Unsigned::MAX { in int_in_range_impl() 359 arbitrary_int % (delta.checked_add(T::Unsigned::ONE).unwrap()) in int_in_range_impl() 791 type Unsigned: Int; typedef 818 fn to_unsigned(self) -> Self::Unsigned; in to_unsigned() argument 821 fn from_unsigned(unsigned: Self::Unsigned) -> Self; in from_unsigned() [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/angle/src/common/ |
D | uniform_type_info_autogen.cpp | 169 SamplerFormat::Unsigned, 1, 1, 1, sizeof(GLuint), sizeof(GLuint) * 4, sizeof(GLuint) * 1, 172 SamplerFormat::Unsigned, 1, 1, 1, sizeof(GLuint), sizeof(GLuint) * 4, sizeof(GLuint) * 1, 175 GL_NONE, SamplerFormat::Unsigned, 1, 1, 1, sizeof(GLuint), sizeof(GLuint) * 4, 178 GL_TEXTURE_2D_MULTISAMPLE_ARRAY, GL_NONE, GL_NONE, SamplerFormat::Unsigned, 1, 1, 1, 181 SamplerFormat::Unsigned, 1, 1, 1, sizeof(GLuint), sizeof(GLuint) * 4, sizeof(GLuint) * 1, 184 SamplerFormat::Unsigned, 1, 1, 1, sizeof(GLuint), sizeof(GLuint) * 4, sizeof(GLuint) * 1, 187 GL_NONE, SamplerFormat::Unsigned, 1, 1, 1, sizeof(GLuint), sizeof(GLuint) * 4, 190 SamplerFormat::Unsigned, 1, 1, 1, sizeof(GLuint), sizeof(GLuint) * 4, sizeof(GLuint) * 1,
|
/external/rust/crates/num-bigint/src/ |
D | bigint.rs | 292 type Unsigned; typedef 296 fn uabs(self) -> Self::Unsigned; in uabs() argument 298 fn checked_uabs(self) -> CheckedUnsignedAbs<Self::Unsigned>; in checked_uabs() argument 308 ($Signed:ty, $Unsigned:ty) => { 310 type Unsigned = $Unsigned; 313 fn uabs(self) -> $Unsigned { 314 self.wrapping_abs() as $Unsigned 318 fn checked_uabs(self) -> CheckedUnsignedAbs<Self::Unsigned> { 320 Positive(self as $Unsigned) 322 Negative(self.wrapping_neg() as $Unsigned)
|
/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()
|