Searched refs:E1 (Results 51 - 75 of 89) sorted by relevance

1234

/external/clang/test/CodeGenCXX/
H A Dcatch-undef-behavior.cpp175 enum E1 { e1a = 0, e1b = 127 } e1; enum
181 // CHECK: %[[E1:.*]] = icmp ule i32 {{.*}}, 127
182 // CHECK: br i1 %[[E1]]
211 // CHECK: %[[E1:.*]] = icmp uge i64 %[[SIZE]], 24
214 // CHECK: %[[E12:.*]] = and i1 %[[E1]], %[[E2]]
229 // CHECK: %[[E1:.*]] = icmp ne {{.*}}, null
238 // CHECK: %[[E12:.*]] = and i1 %[[E1]], %[[E2]]
/external/clang/test/CXX/drs/
H A Ddr0xx.cpp636 enum E1 { E1_0 = 0, E1_1 = 1 }; enum in namespace:dr58
638 struct X { E1 e1 : 1; E2 e2 : 1; };
925 enum E1 : int;
926 enum E1 : int { e1 }; // expected-note{{previous declaration is here}}
927 enum E1 : int; // expected-error{{class member cannot be redeclared}}
H A Ddr1xx.cpp332 enum E1 { e1 } x = e1; enum in namespace:dr128
/external/llvm/include/llvm/Support/
H A DGCOV.h301 bool operator()(const GCOVEdge *E1, const GCOVEdge *E2) { argument
302 return E1->Dst.Number < E2->Dst.Number;
/external/clang/test/SemaTemplate/
H A Ddeduction.cpp156 enum E { E0, E1 }; enumerator in enum:test14::E
/external/libvpx/libvpx/vp9/common/x86/
H A Dvp9_intrapred_ssse3.asm499 ; A1 B1 C1 D1 E1 F1 G1 H1
500 ; A2 B2 A1 B1 C1 D1 E1 F1
542 ; A1 B1 C1 D1 E1 F1 G1 H1 I1 J1 K1 L1 M1 N1 O1 P1
543 ; A2 B2 A1 B1 C1 D1 E1 F1 G1 H1 I1 J1 K1 L1 M1 N1
544 ; A3 B3 A2 B2 A1 B1 C1 D1 E1 F1 G1 H1 I1 J1 K1 L1
545 ; A4 B4 A3 B3 A2 B2 A1 B1 C1 D1 E1 F1 G1 H1 I1 J1
546 ; A5 B5 A4 B4 A3 B3 A2 B2 A1 B1 C1 D1 E1 F1 G1 H1
547 ; A6 B6 A5 B5 A4 B4 A3 B3 A2 B2 A1 B1 C1 D1 E1 F1
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h680 auto E1 = Vs.traverse(Body, Vs.declCtx(Ctx)); local
682 return Vs.reduceFunction(*this, Nvd, E1);
735 auto E1 = Vs.traverse(Body, Vs.declCtx(Ctx)); local
738 return Vs.reduceSFunction(*this, Nvd, E1);
1211 BinaryOp(TIL_BinaryOpcode Op, SExpr *E0, SExpr *E1) argument
1212 : SExpr(COP_BinaryOp), Expr0(E0), Expr1(E1) {
1215 BinaryOp(const BinaryOp &B, SExpr *E0, SExpr *E1) argument
1216 : SExpr(B), Expr0(E0), Expr1(E1) {
1885 auto E1 = Vs.traverse(Body, Ctx); local
1887 return Vs.reduceLet(*this, Nvd, E1);
[all...]
/external/libopus/celt/
H A Dcelt_decoder.c526 opus_val32 E1=1, E2=1; local
536 E1 += SHR32(MULT16_16(e, e), shift);
540 E1 = MIN32(E1, E2);
541 decay = celt_sqrt(frac_div32(SHR32(E1, 1), E2));
/external/opencv/ml/src/
H A Dmlann_mlp.cpp1186 double sweight = sw ? sw[si+i] : inv_count, E1 = 0; local
1192 E1 += t*t;
1194 E += sweight*E1;
1202 double sweight = sw ? sw[si+i] : inv_count, E1 = 0; local
1208 E1 += t*t;
1210 E += sweight*E1;
/external/webp/src/dsp/
H A Denc_mips32.c250 // E1..H1 - offsets in bytes to store second results to tmp buffer
251 #define HORIZONTAL_PASS(A, B, C, D, E, F, G, H, E1, F1, G1, H1) \
280 "sw %[temp1], "#E1"(%[tmp]) \n\t" \
H A Denc_neon.c115 const int16x8_t E1 = vcombine_s16(vget_high_s16(E_tmp), vget_low_s16(E_tmp)); local
116 Transpose8x2(E0, E1, rows);
/external/llvm/lib/CodeGen/
H A DRegAllocPBQP.cpp244 SlotIndex E1 = getEndPoint(I1); local
247 if (E1 < E2)
250 if (E1 > E2)
H A DBranchFolding.cpp732 auto I1 = MI1->memoperands_begin(), E1 = MI1->memoperands_end(); local
734 if ((E1 - I1) != (E2 - I2))
736 for (; I1 != E1; ++I1, ++I2) {
/external/clang/lib/Sema/
H A DSemaExprCXX.cpp4355 // The process for determining whether an operand expression E1 of type T1
4361 // E1 can be converted to match E2 if E1 can be implicitly converted to
4363 // conversion the reference must bind directly to E1.
4379 // -- if E1 and E2 have class type, and the underlying class types are
4389 // E1 can be converted to match E2 if the class of T2 is the
4409 // -- Otherwise: E1 can be converted to match E2 if E1 can be
4763 /// This finds the composite pointer type (or member pointer type) for @p E1
4776 Expr *&E1, Exp
4775 FindCompositePointerType(SourceLocation Loc, Expr *&E1, Expr *&E2, bool *NonStandardCompositeType) argument
[all...]
/external/llvm/unittests/ADT/
H A DAPIntTest.cpp803 uint64_t E1 = 0x2CA7F46BF6569915ULL; local
804 APInt A1(64, E1);
806 EXPECT_EQ(bool(E1 & (1ULL << i)),
/external/kernel-headers/original/uapi/linux/
H A Dixjuser.h179 hz329 = 0x7bbf, /* .63 E1 */
271 E1 = hz329, enumerator in enum:__anon6932
/external/clang/test/SemaCXX/
H A Dconstant-expression-cxx1y.cpp915 struct E1 {} e1; struct in namespace:EmptyClass
917 struct E3 : E1 {} e3;
/external/icu/icu4c/source/data/sprep/
H A Drfc3491.txt487 00C1; 00E1; MAP
633 01E0; 01E1; MAP
726 03E0; 03E1; MAP
846 04E0; 04E1; MAP
1247 24C7; 24E1; MAP
H A Drfc3530csci.txt486 00C1; 00E1; MAP
632 01E0; 01E1; MAP
725 03E0; 03E1; MAP
845 04E0; 04E1; MAP
1246 24C7; 24E1; MAP
H A Drfc3722.txt487 00C1; 00E1; MAP
633 01E0; 01E1; MAP
726 03E0; 03E1; MAP
846 04E0; 04E1; MAP
1247 24C7; 24E1; MAP
H A Drfc3920node.txt487 00C1; 00E1; MAP
633 01E0; 01E1; MAP
726 03E0; 03E1; MAP
846 04E0; 04E1; MAP
1247 24C7; 24E1; MAP
H A Drfc4518ci.txt454 00C1; 00E1; MAP
600 01E0; 01E1; MAP
693 03E0; 03E1; MAP
813 04E0; 04E1; MAP
1214 24C7; 24E1; MAP
/external/icu/icu4c/source/test/testdata/
H A Dnfs4_cis_prep.txt477 00C1; 00E1; MAP
623 01E0; 01E1; MAP
716 03E0; 03E1; MAP
836 04E0; 04E1; MAP
1237 24C7; 24E1; MAP
H A Dnfs4_cs_prep_ci.txt477 00C1; 00E1; MAP
623 01E0; 01E1; MAP
716 03E0; 03E1; MAP
836 04E0; 04E1; MAP
1237 24C7; 24E1; MAP
H A Dnfs4_mixed_prep_s.txt477 00C1; 00E1; MAP
623 01E0; 01E1; MAP
716 03E0; 03E1; MAP
836 04E0; 04E1; MAP
1237 24C7; 24E1; MAP

Completed in 686 milliseconds

1234