Home
last modified time | relevance | path

Searched defs:Unsigned (Results 1 – 25 of 601) sorted by relevance

12345678910>>...25

/aosp_15_r20/external/clang/test/SemaCXX/
H A Dbitfield.cpp6 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 …]
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/simd/num/
H A Dint.rs16 type Unsigned; typedef
207 fn leading_zeros(self) -> Self::Unsigned; in leading_zeros()
210 fn trailing_zeros(self) -> Self::Unsigned; in trailing_zeros()
213 fn leading_ones(self) -> Self::Unsigned; in leading_ones()
216 fn trailing_ones(self) -> Self::Unsigned; in trailing_ones()
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/simd/num/
H A Dint.rs16 type Unsigned; typedef
207 fn leading_zeros(self) -> Self::Unsigned; in leading_zeros()
210 fn trailing_zeros(self) -> Self::Unsigned; in trailing_zeros()
213 fn leading_ones(self) -> Self::Unsigned; in leading_ones()
216 fn trailing_ones(self) -> Self::Unsigned; in trailing_ones()
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/simd/num/
H A Dint.rs16 type Unsigned; typedef
207 fn leading_zeros(self) -> Self::Unsigned; in leading_zeros()
210 fn trailing_zeros(self) -> Self::Unsigned; in trailing_zeros()
213 fn leading_ones(self) -> Self::Unsigned; in leading_ones()
216 fn trailing_ones(self) -> Self::Unsigned; in trailing_ones()
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/simd/num/
H A Dint.rs16 type Unsigned; typedef
207 fn leading_zeros(self) -> Self::Unsigned; in leading_zeros()
210 fn trailing_zeros(self) -> Self::Unsigned; in trailing_zeros()
213 fn leading_ones(self) -> Self::Unsigned; in leading_ones()
216 fn trailing_ones(self) -> Self::Unsigned; in trailing_ones()
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/portable-simd/crates/core_simd/src/simd/num/
H A Dint.rs16 type Unsigned; typedef
207 fn leading_zeros(self) -> Self::Unsigned; in leading_zeros()
210 fn trailing_zeros(self) -> Self::Unsigned; in trailing_zeros()
213 fn leading_ones(self) -> Self::Unsigned; in leading_ones()
216 fn trailing_ones(self) -> Self::Unsigned; in trailing_ones()
/aosp_15_r20/prebuilts/go/linux-x86/src/internal/types/testdata/spec/
Dconversions.go99 func _[X Unsigned, T Integer](x X) T { return T(x) }
102 func _[X Integer, T Unsigned](x X) T { return T(x) }
103 func _[X Unsigned, T Unsigned](x X) T { return T(x) }
104 func _[X Float, T Unsigned](x X) T { return T(x) }
107 func _[X Unsigned, T Float](x X) T { return T(x) }
194 type Unsigned interface { interface
/aosp_15_r20/external/rust/beto-rust/common/pourover/src/
Dconversions.rs41 type Unsigned; typedef
44 fn to_unsigned(self) -> Self::Unsigned; in to_unsigned()
48 type Unsigned = &'a [u8]; typedef
51 fn to_unsigned(self) -> Self::Unsigned { in to_unsigned()
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/serde_json-1.0.115/src/lexical/
H A Dnum.rs177 type Unsigned: Integer; typedef
249 fn to_bits(self) -> Self::Unsigned; in to_bits()
284 fn mantissa(self) -> Self::Unsigned { in mantissa()
314 type Unsigned = u32; typedef
373 type Unsigned = u64; typedef
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/serde_json_lenient-0.2.1/src/lexical/
H A Dnum.rs177 type Unsigned: Integer; typedef
249 fn to_bits(self) -> Self::Unsigned; in to_bits()
284 fn mantissa(self) -> Self::Unsigned { in mantissa()
314 type Unsigned = u32; typedef
373 type Unsigned = u64; typedef
/aosp_15_r20/external/rust/android-crates-io/crates/serde_json/src/lexical/
Dnum.rs177 type Unsigned: Integer; typedef
249 fn to_bits(self) -> Self::Unsigned; in to_bits()
285 fn mantissa(self) -> Self::Unsigned { in mantissa()
315 type Unsigned = u32; typedef
379 type Unsigned = u64; typedef
/aosp_15_r20/external/clang/test/Sema/
H A Dbitfield.c62 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
/aosp_15_r20/external/cronet/base/numerics/
H A Dwrapping_math.h22 using Unsigned = std::make_unsigned_t<T>; in WrappingAdd() local
36 using Unsigned = std::make_unsigned_t<T>; in WrappingSub() local
/aosp_15_r20/dalvik/dx/src/com/android/dex/util/
H A DUnsigned.java22 public final class Unsigned { class
23 private Unsigned() {} in Unsigned() method in Unsigned
/aosp_15_r20/external/tensorflow/tensorflow/lite/delegates/xnnpack/
H A Ddequantize_tester.h63 inline DequantizeTester& Unsigned(bool is_unsigned) { in Unsigned() function
68 inline bool Unsigned() const { return unsigned_; } in Unsigned() function
H A Dquantize_tester.h77 inline QuantizeTester& Unsigned(bool is_unsigned) { in Unsigned() function
82 inline bool Unsigned() const { return unsigned_; } in Unsigned() function
H A Dquantized_unary_elementwise_tester.h82 inline QuantizedUnaryElementwiseTester& Unsigned(bool is_unsigned) { in Unsigned() function
87 inline bool Unsigned() const { return unsigned_; } in Unsigned() function
H A Dquantized_pad_tester.h90 inline QuantizedPadTester& Unsigned(bool is_unsigned) { in Unsigned() function
95 inline bool Unsigned() const { return unsigned_; } in Unsigned() function
H A Dquantized_leaky_relu_tester.h84 inline QuantizedLeakyReluTester& Unsigned(bool is_unsigned) { in Unsigned() function
89 inline bool Unsigned() const { return unsigned_; } in Unsigned() function
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DAPSInt.h287 static APSInt getMaxValue(uint32_t numBits, bool Unsigned) { in getMaxValue()
294 static APSInt getMinValue(uint32_t numBits, bool Unsigned) { in getMinValue()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/ADT/
DAPSInt.h303 static APSInt getMaxValue(uint32_t numBits, bool Unsigned) { in getMaxValue()
311 static APSInt getMinValue(uint32_t numBits, bool Unsigned) { in getMinValue()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/ADT/
DAPSInt.h303 static APSInt getMaxValue(uint32_t numBits, bool Unsigned) { in getMaxValue()
311 static APSInt getMinValue(uint32_t numBits, bool Unsigned) { in getMinValue()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/ADT/
DAPSInt.h303 static APSInt getMaxValue(uint32_t numBits, bool Unsigned) { in getMaxValue()
311 static APSInt getMinValue(uint32_t numBits, bool Unsigned) { in getMinValue()
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/ADT/
H A DAPSInt.h303 static APSInt getMaxValue(uint32_t numBits, bool Unsigned) { in getMaxValue()
311 static APSInt getMinValue(uint32_t numBits, bool Unsigned) { in getMinValue()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/ADT/
DAPSInt.h303 static APSInt getMaxValue(uint32_t numBits, bool Unsigned) { in getMaxValue()
311 static APSInt getMinValue(uint32_t numBits, bool Unsigned) { in getMinValue()

12345678910>>...25