Home
last modified time | relevance | path

Searched defs:Two (Results 1 – 25 of 192) sorted by relevance

12345678

/aosp_15_r20/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
H A Dallocate_shared_cxx03.pass.cpp47 struct Two struct
51 Two(int v, int) : value(v) {++count;} in Two() argument
52 Two(Two const & o) : value(o.value) {++count;} in Two() argument
53 ~Two() {--count;} in ~Two() argument
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
H A Dallocate_shared.pass.cpp71 struct Two struct
75 Two(int v, int) : value(v) {++count;} in Two() argument
76 Two(Two const & o) : value(o.value) {++count;} in Two() argument
77 ~Two() {--count;} in ~Two() argument
/aosp_15_r20/external/rust/android-crates-io/crates/num_enum/tests/try_build/compile_fail/
Dcustom_error_type_parsing.rs7 Two, enumerator
16 Two, enumerator
25 Two, enumerator
34 Two, enumerator
44 Two, enumerator
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/memchr-2.7.2/src/arch/all/
H A Dmemchr.rs352 pub struct Two { struct
359 impl Two { argument
363 pub fn new(needle1: u8, needle2: u8) -> Two { in new()
377 pub(crate) fn try_new(needle1: u8, needle2: u8) -> Option<Two> { in try_new()
/aosp_15_r20/external/rust/android-crates-io/crates/memchr/src/arch/all/
Dmemchr.rs352 pub struct Two { struct
359 impl Two { argument
363 pub fn new(needle1: u8, needle2: u8) -> Two { in new()
377 pub(crate) fn try_new(needle1: u8, needle2: u8) -> Option<Two> { in try_new()
/aosp_15_r20/external/rust/android-crates-io/crates/num_enum/tests/
Dtry_from_primitive.rs18 Two, in simple() enumerator
37 Two = 2, in even() enumerator
132 Two = 2, in negative_values() enumerator
160 Two, in discriminant_expressions() enumerator
203 Two, enumerator
513 Two, in custom_error() enumerator
522 Two, in custom_error() enumerator
/aosp_15_r20/external/clang/test/Sema/
H A Dmissing-field-initializers.c26 struct Two { float c; float d; float e; }; struct
/aosp_15_r20/external/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/
H A DSymmetry.h42 constexpr static int Two = Two_; member
51 constexpr static int Two = Two_; member
60 constexpr static int Two = Two_; member
69 constexpr static int Two = Two_; member
/aosp_15_r20/external/rust/android-crates-io/crates/memchr/src/arch/x86_64/avx2/
Dmemchr.rs516 pub struct Two { struct
518 sse2: generic::Two<__m128i>, argument
520 avx2: generic::Two<__m256i>, argument
523 impl Two { implementation
533 pub fn new(needle1: u8, needle2: u8) -> Option<Two> { in new()
556 pub unsafe fn new_unchecked(needle1: u8, needle2: u8) -> Two { in new_unchecked()
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/memchr-2.7.2/src/arch/x86_64/avx2/
H A Dmemchr.rs516 pub struct Two { struct
518 sse2: generic::Two<__m128i>, argument
520 avx2: generic::Two<__m256i>, argument
523 impl Two { impl
533 pub fn new(needle1: u8, needle2: u8) -> Option<Two> { in new()
556 pub unsafe fn new_unchecked(needle1: u8, needle2: u8) -> Two { in new_unchecked()
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/memchr-2.7.2/src/arch/generic/
H A Dmemchr.rs437 pub(crate) struct Two<V> { struct
444 impl<V: Vector> Two<V> { argument
/aosp_15_r20/external/rust/android-crates-io/crates/memchr/src/arch/generic/
Dmemchr.rs437 pub(crate) struct Two<V> { struct
444 impl<V: Vector> Two<V> { implementation
/aosp_15_r20/external/clang/test/SemaCXX/
H A Dinit-priority-attr.cpp3 class Two { class
8 Two( int ii, int jj ) { i = ii; j = jj; k = count++; }; in Two() function in Two
9 Two( void ) { i = 0; j = 0; k = count++; }; in Two() function in Two
/aosp_15_r20/external/rust/android-crates-io/extra_versions/crates/zerocopy-derive/tests/
Dstruct_known_layout.rs32 struct Two { struct
37 assert_impl_all!(Two: KnownLayout); argument
Dstruct_from_bytes.rs38 struct Two { struct
43 assert_impl_all!(Two: FromBytes); argument
Dstruct_from_zeroes.rs36 struct Two { struct
41 assert_impl_all!(Two: FromZeroes); argument
/aosp_15_r20/external/rust/android-crates-io/crates/zerocopy-derive/tests/
Dstruct_known_layout.rs32 struct Two { struct
37 assert_impl_all!(Two: KnownLayout); argument
Dstruct_from_zeroes.rs36 struct Two { struct
41 assert_impl_all!(Two: FromZeroes); argument
Dstruct_from_bytes.rs38 struct Two { struct
43 assert_impl_all!(Two: FromBytes); argument
/aosp_15_r20/external/pigweed/pw_unit_test/
H A Dtest_rpc_server.cc30 TEST(Passing, Two) { in TEST() argument
44 TEST(Failing, Two) { in TEST() argument
58 TEST(DISABLED_Disabled, Two) { in TEST() argument
/aosp_15_r20/external/rust/android-crates-io/crates/memchr/src/arch/wasm32/simd128/
Dmemchr.rs388 pub struct Two(generic::Two<v128>); struct
390 impl Two { impl
399 pub fn new(needle1: u8, needle2: u8) -> Option<Two> { in new()
417 pub unsafe fn new_unchecked(needle1: u8, needle2: u8) -> Two { in new_unchecked()
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/memchr-2.7.2/src/arch/wasm32/simd128/
H A Dmemchr.rs388 pub struct Two(generic::Two<v128>); struct
390 impl Two { implementation
399 pub fn new(needle1: u8, needle2: u8) -> Option<Two> { in new()
417 pub unsafe fn new_unchecked(needle1: u8, needle2: u8) -> Two { in new_unchecked()
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/memchr-2.7.2/src/arch/x86_64/sse2/
H A Dmemchr.rs405 pub struct Two(generic::Two<__m128i>); struct
407 impl Two { impl
416 pub fn new(needle1: u8, needle2: u8) -> Option<Two> { in new()
439 pub unsafe fn new_unchecked(needle1: u8, needle2: u8) -> Two { in new_unchecked()
/aosp_15_r20/external/rust/android-crates-io/crates/memchr/src/arch/x86_64/sse2/
Dmemchr.rs405 pub struct Two(generic::Two<__m128i>); struct
407 impl Two { impl
416 pub fn new(needle1: u8, needle2: u8) -> Option<Two> { in new()
439 pub unsafe fn new_unchecked(needle1: u8, needle2: u8) -> Two { in new_unchecked()
/aosp_15_r20/external/rust/android-crates-io/crates/memchr/src/arch/aarch64/neon/
Dmemchr.rs389 pub struct Two(generic::Two<uint8x16_t>); struct
391 impl Two { implementation
400 pub fn new(needle1: u8, needle2: u8) -> Option<Two> { in new()
423 pub unsafe fn new_unchecked(needle1: u8, needle2: u8) -> Two { in new_unchecked()

12345678