Home
last modified time | relevance | path

Searched refs:E2 (Results 1 – 25 of 543) sorted by relevance

12345678910>>...22

/external/oboe/samples/RhythmGame/third_party/glm/detail/
D_swizzle.hpp23 …ision P, template <typename, precision> class vecType, int E0, int E1, int E2, int E3, bool Aligne…
34 …T, precision P, template <typename, precision> class vecType, int E0, int E1, int E2, bool Aligned>
35 struct _swizzle_base1<3, T, P, vecType, E0,E1,E2,-1, Aligned> : public _swizzle_base0<T, 3>
37 …, P> operator ()() const { return vecType<T, P>(this->elem(E0), this->elem(E1), this->elem(E2)); } in operator ()()
40 …ision P, template <typename, precision> class vecType, int E0, int E1, int E2, int E3, bool Aligne…
41 struct _swizzle_base1<4, T, P, vecType, E0,E1,E2,E3, Aligned> : public _swizzle_base0<T, 4>
43 …() const { return vecType<T, P>(this->elem(E0), this->elem(E1), this->elem(E2), this->elem(E3)); } in operator ()()
58 …ision P, template <typename, precision> class vecType, int E0, int E1, int E2, int E3, int DUPLICA…
59 …struct _swizzle_base2 : public _swizzle_base1<N, T, P, vecType, E0,E1,E2,E3, detail::is_aligned<P>…
111 const int offset_dst[4] = { E0, E1, E2, E3 }; in operator []()
[all …]
/external/llvm-project/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
Dp2.cpp69 struct E2 { struct
70 E2() noexcept(false) = default;
71 E2(const E2&) noexcept(false) = default;
72 E2(E2&&) noexcept(false) = default;
73 E2 &operator=(const E2&) noexcept(false) = default;
74 E2 &operator=(E2&&) noexcept(false) = default;
75 ~E2() noexcept(false) = default;
77 E2 e2;
78 E2 make_e2() noexcept;
79 void take_e2(E2&&) noexcept;
[all …]
/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
Dp2.cpp69 struct E2 { struct
70E2() noexcept(false) = default; // expected-error {{exception specification of explicitly defaulte…
71E2(const E2&) noexcept(false) = default; // expected-error {{exception specification of explicitly…
72E2(E2&&) noexcept(false) = default; // expected-error {{exception specification of explicitly defa…
73E2 &operator=(const E2&) noexcept(false) = default; // expected-error {{exception specification of…
74E2 &operator=(E2&&) noexcept(false) = default; // expected-error {{exception specification of expl…
75 …~E2() noexcept(false) = default; // expected-error {{exception specification of explicitly default…
/external/rust/crates/nom/src/bits/
Dmod.rs37 … E1: ParseError<(I, usize)>+ErrorConvert<E2>, E2: ParseError<I>, P>(parser: P) -> impl Fn(I) -> IR… in bits() argument
54 …O, E1: ParseError<(I, usize)>+ErrorConvert<E2>, E2: ParseError<I>, P>(input: I, parser: P) -> IRes… in bitsc() argument
87 …ParseError<I>+ErrorConvert<E2>, E2: ParseError<(I, usize)>, P>(parser: P) -> impl Fn((I, usize)) -… in bytes() argument
104 None => Err::Failure(E2::from_error_kind(i, ErrorKind::TooLarge)), in bytes()
113 …: ParseError<I>+ErrorConvert<E2>, E2: ParseError<(I, usize)>, P>(input: (I, usize), parser: P) -> … in bytesc() argument
/external/unicode/
Demoji-sequences.txt491 … ; left speech bubble # E2.0 [1] (��️)
516 …Sequence ; keycap: * # E2.0 [1] (*️⃣)
535 …_Sequence ; flag: Ascension Island # E2.0 [1] (����)
536 …_Sequence ; flag: Andorra # E2.0 [1] (����)
537 …_Sequence ; flag: United Arab Emirates # E2.0 [1] (����)
538 …_Sequence ; flag: Afghanistan # E2.0 [1] (����)
539 …_Sequence ; flag: Antigua & Barbuda # E2.0 [1] (����)
540 …_Sequence ; flag: Anguilla # E2.0 [1] (����)
541 …_Sequence ; flag: Albania # E2.0 [1] (����)
542 …_Sequence ; flag: Armenia # E2.0 [1] (����)
[all …]
/external/llvm-project/clang/test/CXX/class/class.compare/class.compare.default/
Dp3.cpp142 struct E2 : A, C { // expected-note 2{{non-constexpr comparison function would be used to compare b… struct
143 …friend constexpr bool operator==(const E2&, const E2&) = default; // expected-error {{cannot be de…
144 friend constexpr bool operator!=(const E2&, const E2&) = default;
146 …friend constexpr std::strong_ordering operator<=>(const E2&, const E2&) = default; // expected-err…
147 friend constexpr bool operator<(const E2&, const E2&) = default;
148 friend constexpr bool operator<=(const E2&, const E2&) = default;
149 friend constexpr bool operator>(const E2&, const E2&) = default;
150 friend constexpr bool operator>=(const E2&, const E2&) = default;
Dp2.cpp121 union E2 { union
122 bool operator==(const E2&) const = default;
123 bool operator!=(const E2&) const = default;
125 bool operator<=>(const E2&) const = default;
126 bool operator<(const E2&) const = default;
127 bool operator<=(const E2&) const = default;
128 bool operator>(const E2&) const = default;
129 bool operator>=(const E2&) const = default;
/external/clang/test/SemaCXX/
Dref-init-ambiguous.cpp3 enum E2 { }; enum
6 operator E2&(); // expected-note 3 {{candidate function}}
10 operator E2&(); // expected-note 3 {{candidate function}}
17 …const E2 &e2 = c; // expected-error {{reference initialization of type 'const E2 &' with initializ… in test()
20 void foo(const E2 &);// expected-note{{passing argument to parameter here}}
22 const E2 & re(C c) { in re()
Dmember-name-lookup.cpp21 enum E2 { enumerator2 }; enum
48 D::E2 e2 = D::enumerator2; // okay in test_lookup()
64 E2 e2 = enumerator2; // okay in test_lookup()
72 enum E2 { enumerator2 }; enum
104 D2::E2 e2 = D2::enumerator2; // okay in test_virtual_lookup()
123 E2 e2 = enumerator2; // okay in test_virtual_lookup()
Dderived-to-base-ambig.cpp17 class E2 : public D2, public C2, public virtual A2 { }; // expected-warning{{direct base 'C2' is in… class
18 class F2 : public E2, public A2 { }; // expected-warning{{direct base 'A2' is inaccessible due to a…
20 void g(E2* e2, F2* f2) { in g()
29 void overload_okay(E2*);
/external/llvm-project/parallel-libs/acxxel/tests/
Dstatus_test.cpp40 acxxel::Expected<uptr> E2(acxxel::Status("nothing in here yet")); in TEST() local
41 EXPECT_TRUE(E2.isError()); in TEST()
43 E2 = std::move(E1); in TEST()
44 EXPECT_FALSE(E2.isError()); in TEST()
47 EXPECT_EQ(1, E2.getValue()->Count); in TEST()
48 EXPECT_FALSE(E2.isError()); in TEST()
51 EXPECT_EQ(1, E2.takeValue()->Count); in TEST()
/external/llvm-project/clang/test/SemaCXX/
Dref-init-ambiguous.cpp3 enum E2 { }; enum
6 operator E2&(); // expected-note 3 {{candidate function}}
10 operator E2&(); // expected-note 3 {{candidate function}}
17 …const E2 &e2 = c; // expected-error {{reference initialization of type 'const E2 &' with initializ… in test()
20 void foo(const E2 &);// expected-note{{passing argument to parameter here}}
22 const E2 & re(C c) { in re()
Dwarn-msvc-enum-bitfield.cpp5 enum E { E1, E2 }; in test0() enumerator
12 s.e2 = E2; in test0()
18 enum E : signed { E1, E2 }; in test1() enumerator
25 s.e2 = E2; in test1()
31 enum E : unsigned { E1, E2 }; in test3() enumerator
38 s.e2 = E2; in test3()
Dmember-name-lookup.cpp21 enum E2 { enumerator2 }; enum
48 D::E2 e2 = D::enumerator2; // okay in test_lookup()
64 E2 e2 = enumerator2; // okay in test_lookup()
72 enum E2 { enumerator2 }; enum
104 D2::E2 e2 = D2::enumerator2; // okay in test_virtual_lookup()
123 E2 e2 = enumerator2; // okay in test_virtual_lookup()
Dderived-to-base-ambig.cpp17 class E2 : public D2, public C2, public virtual A2 { }; // expected-warning{{direct base 'C2' is in… class
18 class F2 : public E2, public A2 { }; // expected-warning{{direct base 'A2' is inaccessible due to a…
20 void g(E2* e2, F2* f2) { in g()
29 void overload_okay(E2*);
Denum-scoped.cpp7 enum struct E2 { enum
16 static_assert(sizeof(E2) == sizeof(int), "bad size");
17 static_assert(sizeof(E2::Val1) == sizeof(int), "bad size");
19 E1 v3 = E2::Val1; // expected-error{{cannot initialize a variable}}
153 enum E2 *x0b; // OK
263 enum class E2 : T; member
310 typedef E E2; typedef
311 E2 f1() { return E::a; } in f1()
/external/webrtc/modules/audio_processing/aec3/
Dsubband_erle_estimator.cc74 rtc::ArrayView<const std::array<float, kFftLengthBy2Plus1>> E2, in Update() argument
76 UpdateAccumulatedSpectra(X2, Y2, E2, converged_filters); in Update()
111 accum_spectra_.E2[ch][k] > 0.f) { in UpdateBands()
112 new_erle[k] = accum_spectra_.Y2[ch][k] / accum_spectra_.E2[ch][k]; in UpdateBands()
172 accum_spectra_.E2[ch].fill(0.f); in ResetAccumulatedSpectra()
181 rtc::ArrayView<const std::array<float, kFftLengthBy2Plus1>> E2, in UpdateAccumulatedSpectra() argument
184 RTC_DCHECK_EQ(st.E2.size(), E2.size()); in UpdateAccumulatedSpectra()
185 RTC_DCHECK_EQ(st.E2.size(), E2.size()); in UpdateAccumulatedSpectra()
198 st.E2[ch].fill(0.f); in UpdateAccumulatedSpectra()
204 std::transform(E2[ch].begin(), E2[ch].end(), st.E2[ch].begin(), in UpdateAccumulatedSpectra()
[all …]
Dsuppression_gain_unittest.cc29 std::vector<std::array<float, kFftLengthBy2Plus1>> E2(1, {0.f}); in TEST() local
47 .GetGain(E2, S2, R2, N2, in TEST()
68 std::vector<std::array<float, kFftLengthBy2Plus1>> E2(kNumCaptureChannels); in TEST() local
90 E2[ch].fill(10.f); in TEST()
103 *render_delay_buffer->GetRenderBuffer(), E2, Y2, output); in TEST()
109 *render_delay_buffer->GetRenderBuffer(), E2, Y2, output); in TEST()
110 suppression_gain.GetGain(E2, S2, R2, N2, analyzer, aec_state, x, in TEST()
118 E2[ch].fill(100.f); in TEST()
128 *render_delay_buffer->GetRenderBuffer(), E2, Y2, output); in TEST()
129 suppression_gain.GetGain(E2, S2, R2, N2, analyzer, aec_state, x, in TEST()
[all …]
Derle_estimator_unittest.cc74 rtc::ArrayView<std::array<float, kFftLengthBy2Plus1>> E2, in FormFarendFrame() argument
91 std::transform(Y2[ch].begin(), Y2[ch].end(), E2[ch].begin(), in FormFarendFrame()
99 rtc::ArrayView<std::array<float, kFftLengthBy2Plus1>> E2, in FormNearendFrame() argument
110 E2[ch].fill(Y2[ch][0]); in FormNearendFrame()
148 std::vector<std::array<float, kFftLengthBy2Plus1>> E2(num_capture_channels); in TEST_P() local
173 FormFarendFrame(*render_delay_buffer->GetRenderBuffer(), kTrueErle, &X2, E2, in TEST_P()
179 filter_frequency_response, X2, Y2, E2, converged_filters); in TEST_P()
184 FormNearendFrame(&x, &X2, E2, Y2); in TEST_P()
191 filter_frequency_response, X2, Y2, E2, converged_filters); in TEST_P()
204 std::vector<std::array<float, kFftLengthBy2Plus1>> E2(num_capture_channels); in TEST_P() local
[all …]
/external/igt-gpu-tools/lib/
Digt.cocci148 uint32_t E1, E2;
152 - igt_assert(E1 == E2);
153 + igt_assert_eq_u32(E1, E2);
155 - igt_assert(E1 != E2);
156 + igt_assert_neq_u32(E1, E2);
158 - igt_assert(E1 <= E2);
159 + igt_assert_lte_u32(E1, E2);
161 - igt_assert(E1 < E2);
162 + igt_assert_lt_u32(E1, E2);
164 - igt_assert(E1 >= E2);
[all …]
/external/llvm-project/llvm/unittests/ADT/
DDirectedGraphTest.cpp97 DGTestEdge E1(N1), E2(N2), E3(N3); in TEST() local
108 EXPECT_TRUE(DG.connect(N1, N2, E2)); in TEST()
142 DGTestEdge E1(N1), E2(N2), E3(N3); in TEST() local
146 DG.connect(N1, N2, E2); in TEST()
161 EXPECT_EQ(E2.getTargetNode(), N2); in TEST()
165 N1.removeEdge(E2); in TEST()
177 N1.addEdge(E2); in TEST()
182 EXPECT_EQ(*EL[0], E2); in TEST()
188 DGTestEdge E1(N1), E2(N2), E3(N3), E4(N1); in TEST() local
192 DG.connect(N1, N2, E2); in TEST()
[all …]
/external/clang/INPUTS/
Dc99-intconst-1.c41 #define first_of2p(T1, E1, T2, E2) type_comb2(type_if(T1, (E1)), \ argument
42 type_if(T2, (!(E1) && (E2))))
44 #define first_of3p(T1, E1, T2, E2, T3, E3) \ argument
46 type_if(T2, (!(E1) && (E2))), \
47 type_if(T3, (!(E1) && !(E2) && (E3))))
50 #define first_of4p(T1, E1, T2, E2, T3, E3, T4, E4) \ argument
52 type_if(T2, (!(E1) && (E2))), \
53 type_if(T3, (!(E1) && !(E2) && (E3))), \
54 type_if(T4, (!(E1) && !(E2) && !(E3) && (E4))))
57 #define first_of6p(T1, E1, T2, E2, T3, E3, T4, E4, T5, E5, T6, E6) \ argument
[all …]
/external/llvm-project/clang/INPUTS/
Dc99-intconst-1.c41 #define first_of2p(T1, E1, T2, E2) type_comb2(type_if(T1, (E1)), \ argument
42 type_if(T2, (!(E1) && (E2))))
44 #define first_of3p(T1, E1, T2, E2, T3, E3) \ argument
46 type_if(T2, (!(E1) && (E2))), \
47 type_if(T3, (!(E1) && !(E2) && (E3))))
50 #define first_of4p(T1, E1, T2, E2, T3, E3, T4, E4) \ argument
52 type_if(T2, (!(E1) && (E2))), \
53 type_if(T3, (!(E1) && !(E2) && (E3))), \
54 type_if(T4, (!(E1) && !(E2) && !(E3) && (E4))))
57 #define first_of6p(T1, E1, T2, E2, T3, E3, T4, E4, T5, E5, T6, E6) \ argument
[all …]
/external/llvm-project/clang-tools-extra/clang-tidy/modernize/
DUseDefaultMemberInitCheck.cpp150 static bool sameValue(const Expr *E1, const Expr *E2) { in sameValue() argument
152 E2 = ignoreUnaryPlus(getInitializer(E2->IgnoreParenImpCasts())); in sameValue()
154 if (isZero(E1) && isZero(E2)) in sameValue()
157 if (E1->getStmtClass() != E2->getStmtClass()) in sameValue()
163 cast<UnaryOperator>(E2)->getSubExpr()); in sameValue()
166 cast<CharacterLiteral>(E2)->getValue(); in sameValue()
169 cast<CXXBoolLiteralExpr>(E2)->getValue(); in sameValue()
172 cast<IntegerLiteral>(E2)->getValue(); in sameValue()
175 cast<FloatingLiteral>(E2)->getValue()); in sameValue()
178 cast<StringLiteral>(E2)->getString(); in sameValue()
[all …]
/external/libcxx/test/support/
Dverbose_assert.h160 AssertData CheckCollectionsEqual(It1 F1, It1 E1, It2 F2, It2 E2,
167 while (F1 != E1 && F2 != E2) {
177 if (!Failed && (F1 != E1 || F2 != E2)) {
183 ErrorMsg += PrintRange("RHS", F2Orig, E2);
209 #define ASSERT_COLLECTION_EQ_COMP(F1, E1, F2, E2, Comp) \
212 F1, E1, F2, E2, \
214 ", " #F2 ", " #E2 ")", \
219 #define ASSERT_COLLECTION_EQ(F1, E1, F2, E2) \
220 ASSERT_COLLECTION_EQ_COMP(F1, E1, F2, E2, ::verbose_assert::EqualToComp())

12345678910>>...22