Searched defs:E1 (Results 1 - 25 of 53) sorted by path

123

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/gcm/
H A DGCMUtil.java8 private static final int E1 = 0xe1000000; field in class:GCMUtil
10 private static final long E1L = (E1 & 0xFFFFFFFFL) << 24;
23 v ^= (E1 >>> (7 - i));
145 r0[0] ^= E1;
184 x[0] ^= E1;
192 y[0] ^= E1;
/external/chromium_org/third_party/libwebp/dsp/
H A Ddec_neon.c1021 const int16x8_t E1 = vcombine_s16(vget_high_s16(E_tmp), vget_low_s16(E_tmp)); local
1022 Transpose8x2(E0, E1, rows);
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/chromium_org/third_party/opus/src/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/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h767 auto E1 = Vs.traverse(Body, Vs.declCtx(Ctx)); local
769 return Vs.reduceFunction(*this, Nvd, E1);
821 auto E1 = Vs.traverse(Body, Vs.declCtx(Ctx)); local
824 return Vs.reduceSFunction(*this, Nvd, E1);
1272 BinaryOp(TIL_BinaryOpcode Op, SExpr *E0, SExpr *E1) argument
1273 : SExpr(COP_BinaryOp), Expr0(E0), Expr1(E1) {
1276 BinaryOp(const BinaryOp &B, SExpr *E0, SExpr *E1) argument
1277 : SExpr(B), Expr0(E0), Expr1(E1) {
1782 auto E1 = Vs.traverse(Body, Ctx); local
1784 return Vs.reduceLet(*this, Nvd, E1);
[all...]
H A DThreadSafetyTraverse.h188 R_SExpr reduceCode(Code &Orig, R_SExpr E0, R_SExpr E1) { argument
189 return new (Arena) Code(Orig, E0, E1);
191 R_SExpr reduceField(Field &Orig, R_SExpr E0, R_SExpr E1) { argument
192 return new (Arena) Field(Orig, E0, E1);
195 R_SExpr reduceApply(Apply &Orig, R_SExpr E0, R_SExpr E1) { argument
196 return new (Arena) Apply(Orig, E0, E1);
198 R_SExpr reduceSApply(SApply &Orig, R_SExpr E0, R_SExpr E1) { argument
199 return new (Arena) SApply(Orig, E0, E1);
214 R_SExpr reduceStore(Store &Orig, R_SExpr E0, R_SExpr E1) { argument
215 return new (Arena) Store(Orig, E0, E1);
217 reduceArrayIndex(ArrayIndex &Orig, R_SExpr E0, R_SExpr E1) argument
220 reduceArrayAdd(ArrayAdd &Orig, R_SExpr E0, R_SExpr E1) argument
226 reduceBinaryOp(BinaryOp &Orig, R_SExpr E0, R_SExpr E1) argument
337 reduceCode(Code &Orig, R_SExpr E0, R_SExpr E1) argument
340 reduceField(Field &Orig, R_SExpr E0, R_SExpr E1) argument
343 reduceApply(Apply &Orig, R_SExpr E0, R_SExpr E1) argument
346 reduceSApply(SApply &Orig, R_SExpr E0, R_SExpr E1) argument
353 reduceStore(Store &Orig, R_SExpr E0, R_SExpr E1) argument
354 reduceArrayIndex(Store &Orig, R_SExpr E0, R_SExpr E1) argument
357 reduceArrayAdd(Store &Orig, R_SExpr E0, R_SExpr E1) argument
361 reduceBinaryOp(BinaryOp &Orig, R_SExpr E0, R_SExpr E1) argument
426 compareByCase(SExpr *E1, SExpr* E2) argument
452 compare(SExpr *E1, SExpr* E2) argument
466 compareExprs(SExpr *E1, SExpr* E2) argument
[all...]
/external/clang/include/clang/Sema/
H A DSema.h7785 QualType FindCompositePointerType(SourceLocation Loc, Expr *&E1, Expr *&E2,
7788 ExprResult &E1, ExprResult &E2,
7790 Expr *E1Tmp = E1.get(), *E2Tmp = E2.get();
7793 E1 = E1Tmp;
7787 FindCompositePointerType(SourceLocation Loc, ExprResult &E1, ExprResult &E2, bool *NonStandardCompositeType = nullptr) argument
/external/clang/lib/AST/
H A DASTImporter.cpp266 Expr *E1, Expr *E2) {
267 if (!E1 || !E2)
268 return E1 == E2;
265 IsStructurallyEquivalent(StructuralEquivalenceContext &Context, Expr *E1, Expr *E2) argument
/external/clang/lib/Analysis/
H A DThreadSafetyCommon.cpp271 til::SExpr *E1 = translate(BO->getRHS(), Ctx); local
273 return new (Arena) til::BinaryOp(Op, E1, E0);
275 return new (Arena) til::BinaryOp(Op, E0, E1);
286 til::SExpr *E1 = translate(RHS, Ctx); local
297 E1 = new (Arena) til::BinaryOp(Op, Arg, E1);
298 E1 = addStatement(E1, nullptr, VD);
301 return updateVarDecl(VD, E1);
302 return new (Arena) til::Store(E0, E1);
386 til::SExpr *E1 = translate(E->getIdx(), Ctx); local
[all...]
/external/clang/lib/Sema/
H A DSemaChecking.cpp4317 static bool referToTheSameDecl(const Expr *E1, const Expr *E2) { argument
4318 if (const DeclRefExpr *D1 = dyn_cast_or_null<DeclRefExpr>(E1))
6717 // E1 op= E2 is equivalent to E1 = E1 op E2, except that E1 is evaluated
6721 // everywhere except within the evaluation of E1 itself.
H A DSemaExprCXX.cpp4209 // The process for determining whether an operand expression E1 of type T1
4215 // E1 can be converted to match E2 if E1 can be implicitly converted to
4217 // conversion the reference must bind directly to E1.
4233 // -- if E1 and E2 have class type, and the underlying class types are
4243 // E1 can be converted to match E2 if the class of T2 is the
4263 // -- Otherwise: E1 can be converted to match E2 if E1 can be
4613 /// This finds the composite pointer type (or member pointer type) for @p E1
4626 Expr *&E1, Exp
4625 FindCompositePointerType(SourceLocation Loc, Expr *&E1, Expr *&E2, bool *NonStandardCompositeType) argument
[all...]
/external/clang/test/ASTMerge/Inputs/
H A Denum1.c2 enum E1 { enum
H A Denum2.c2 enum E1 { enum
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
H A Dp12.cpp10 E1 = E0 + 1 enumerator in enum:__anon18345::__anon18346
/external/clang/test/CXX/class.access/class.friend/
H A Dp2-cxx03.cpp8 enum E1 { }; enum
12 X0<E1> x0d;
H A Dp3-cxx0x.cpp8 enum E1 { }; enum
12 X0<E1> x0d;
/external/clang/test/CXX/class.access/
H A Dp6.cpp126 enum Enum { E0, E1, E2 }; // expected-note 4 {{declared private here}} enumerator in enum:test5::A::Enum
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp1.cpp38 constexpr enum E1 {}; // expected-error {{enum cannot be marked constexpr}} enum
/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
H A Dp2.cpp61 struct E1 { struct
62 E1() noexcept = default;
63 E1(const E1&) noexcept = default;
64 E1(E1&&) noexcept = default;
65 E1 &operator=(const E1&) noexcept = default;
66 E1 &operator=(E1
[all...]
/external/clang/test/CXX/drs/
H A Ddr0xx.cpp624 enum E1 { E1_0 = 0, E1_1 = 1 }; enum in namespace:dr58
626 struct X { E1 e1 : 1; E2 e2 : 1; };
913 enum E1 : int;
914 enum E1 : int { e1 }; // expected-note{{previous declaration is here}}
915 enum E1 : int; // expected-error{{class member cannot be redeclared}}
H A Ddr1xx.cpp331 enum E1 { e1 } x = e1; enum in namespace:dr128
/external/clang/test/CXX/over/over.match/over.match.funcs/over.match.oper/
H A Dp3.cpp31 enum E1 { one }; enum in namespace:bullet3
36 A operator >= (E1, E1);
37 A operator >= (E1, const E2);
39 E1 a;
46 template <typename T> A operator <= (E1, T);
/external/clang/test/CXX/special/class.copy/
H A Dp23-cxx11.cpp145 struct E1 : AmbiguousCopyAssign {}; // expected-note {{base class 'AmbiguousCopyAssign' has multiple copy}} struct in inherits:AmbiguousCopyAssign
157 template struct CopyAssign<E1>; // expected-note {{here}}
/external/clang/test/CXX/stmt.stmt/stmt.select/stmt.switch/
H A Dp2-0x.cpp9 enum E { E0, E1 }; enumerator in enum:E
19 case E1:
26 case E1:
33 case E1:
/external/clang/test/CXX/temp/temp.res/temp.dep/
H A Dp3.cpp12 namespace E1 { namespace

Completed in 2984 milliseconds

123