Searched defs:e2 (Results 1 - 25 of 182) sorted by relevance

12345678

/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Derrorcode_unittest.cc21 ErrorCode e2(EPERM);
22 SANDBOX_ASSERT(e2.err() == SECCOMP_RET_ERRNO + EPERM);
36 ErrorCode e2 = sandbox.Trap(NULL, "a"); local
38 (e2.err() & SECCOMP_RET_DATA));
43 ErrorCode e2(ErrorCode::ERR_ALLOWED);
45 SANDBOX_ASSERT(e1.Equals(e2));
46 SANDBOX_ASSERT(e2.Equals(e1));
63 ErrorCode e2(ErrorCode::ERR_ALLOWED);
65 SANDBOX_ASSERT(!e1.LessThan(e2));
66 SANDBOX_ASSERT(!e2
[all...]
/external/clang/test/CodeGen/
H A D2007-04-11-PR1321.c6 unsigned int e2 : 17; member in struct:X
/external/clang/test/SemaCXX/
H A Dref-init-ambiguous.cpp17 const E2 &e2 = c; // expected-error {{reference initialization of type 'const E2 &' with initializer of type 'C' is ambiguous}} local
H A Dclass-names.cpp50 enum E e2; variable in typeref:enum:E
H A Dwarn-logical-not-compare.cpp114 enum E {e1, e2}; enumerator in enum:E
H A Dderived-to-base-ambig.cpp20 void g(E2* e2, F2* f2) { argument
22 o2 = e2;
H A Dexpressions.cpp100 e2 = A && 7 // expected-warning {{use of logical '&&' with constant operand}} \ enumerator in enum:S::__anon17394
/external/chromium/third_party/modp_b64/
H A Dmodp_b64_data.h74 static const char e2[256] = { variable
/external/chromium_org/third_party/mesa/src/src/mesa/tnl_dd/
H A Dt_dd_unfilled.h37 GLuint e0, GLuint e1, GLuint e2 )
46 v[2] = (VERTEX *)GET_VERTEX(e2);
64 /* ef[e0], ef[e1], ef[e2]); */
70 if (ef[e2]) POINT( v[2] );
75 if (ef[e2]) LINE( v[2], v[0] );
82 if (ef[e2]) LINE( v[2], v[0] );
101 GLuint e2, GLuint e3 )
110 v[2] = (VERTEX *)GET_VERTEX(e2);
138 if (ef[e2]) POINT( v[2] );
145 if (ef[e2]) LIN
98 unfilled_quad( struct gl_context *ctx, GLenum mode, GLuint e0, GLuint e1, GLuint e2, GLuint e3 ) argument
[all...]
/external/chromium_org/third_party/modp_b64/
H A Dmodp_b64_data.h74 static const char e2[256] = { variable
/external/chromium_org/third_party/openssl/openssl/crypto/des/
H A Ddess.cpp40 unsigned long s1,s2,e1,e2; local
59 GetTSC(e2);
64 e1-s1,e2-s2,((e2-s2)-(e1-s1)));
H A Ddes3s.cpp40 unsigned long s1,s2,e1,e2; local
59 GetTSC(e2);
64 e1-s1,e2-s2,((e2-s2)-(e1-s1)));
/external/clang/test/CXX/dcl.decl/dcl.init/
H A Dp14-0x.cpp33 Explicit e2 = 42; // expected-error {{no viable conversion}} member in class:S
/external/clang/test/CodeGenCXX/
H A Dmember-expressions.cpp33 A::E e2 = g()->Foo; local
H A Dconstructor-destructor-return-this.cpp104 E* e2 = gete(); local
105 e2->~E();
/external/mesa3d/src/mesa/tnl_dd/
H A Dt_dd_unfilled.h37 GLuint e0, GLuint e1, GLuint e2 )
46 v[2] = (VERTEX *)GET_VERTEX(e2);
64 /* ef[e0], ef[e1], ef[e2]); */
70 if (ef[e2]) POINT( v[2] );
75 if (ef[e2]) LINE( v[2], v[0] );
82 if (ef[e2]) LINE( v[2], v[0] );
101 GLuint e2, GLuint e3 )
110 v[2] = (VERTEX *)GET_VERTEX(e2);
138 if (ef[e2]) POINT( v[2] );
145 if (ef[e2]) LIN
98 unfilled_quad( struct gl_context *ctx, GLenum mode, GLuint e0, GLuint e1, GLuint e2, GLuint e3 ) argument
[all...]
/external/openssl/crypto/des/
H A Ddess.cpp40 unsigned long s1,s2,e1,e2; local
59 GetTSC(e2);
64 e1-s1,e2-s2,((e2-s2)-(e1-s1)));
H A Ddes3s.cpp40 unsigned long s1,s2,e1,e2; local
59 GetTSC(e2);
64 e1-s1,e2-s2,((e2-s2)-(e1-s1)));
/external/chromium_org/third_party/openssl/openssl/crypto/md4/
H A Dmd4s.cpp45 unsigned long s1,s2,e1,e2; local
71 GetTSC(e2);
75 e1-s1,e2-s2,(double)((e1-s1)-(e2-s2))/2);
/external/chromium_org/third_party/openssl/openssl/crypto/md5/
H A Dmd5s.cpp45 unsigned long s1,s2,e1,e2; local
71 GetTSC(e2);
75 e1-s1,e2-s2,(double)((e1-s1)-(e2-s2))/2);
/external/chromium_org/third_party/openssl/openssl/crypto/rc4/
H A Drc4s.cpp41 unsigned long s1,s2,e1,e2; local
65 GetTSC(e2);
70 e1-s1,e2-s2,(e1-s1)-(e2-s2));
/external/clang/test/CXX/temp/temp.arg/temp.arg.type/
H A Dp2.cpp27 enum {e2}; // expected-note 2{{unnamed type used in template argument was declared here}} enumerator in enum:N0::__anon16682
36 int (*fp1)(int, __typeof__(e2)) = f1; // expected-warning{{template argument uses unnamed type}}
37 f1(e2); // expected-warning{{template argument uses unnamed type}}
38 f1(e2);
/external/guava/guava/src/com/google/common/collect/
H A DImmutableSortedMultisetFauxverideShim.java72 public static <E> ImmutableSortedMultiset<E> of(E e1, E e2) { argument
86 public static <E> ImmutableSortedMultiset<E> of(E e1, E e2, E e3) { argument
100 public static <E> ImmutableSortedMultiset<E> of(E e1, E e2, E e3, E e4) { argument
115 public static <E> ImmutableSortedMultiset<E> of(E e1, E e2, E e3, E e4, E e5) { argument
132 E e2,
130 of( E e1, E e2, E e3, E e4, E e5, E e6, E... remaining) argument
H A DImmutableSortedSetFauxverideShim.java74 @Deprecated public static <E> ImmutableSortedSet<E> of(E e1, E e2) { argument
87 @Deprecated public static <E> ImmutableSortedSet<E> of(E e1, E e2, E e3) { argument
102 E e1, E e2, E e3, E e4) {
117 E e1, E e2, E e3, E e4, E e5) {
132 E e1, E e2, E e3, E e4, E e5, E e6, E... remaining) {
101 of( E e1, E e2, E e3, E e4) argument
116 of( E e1, E e2, E e3, E e4, E e5) argument
131 of( E e1, E e2, E e3, E e4, E e5, E e6, E... remaining) argument
/external/openssl/crypto/md4/
H A Dmd4s.cpp45 unsigned long s1,s2,e1,e2; local
71 GetTSC(e2);
75 e1-s1,e2-s2,(double)((e1-s1)-(e2-s2))/2);

Completed in 701 milliseconds

12345678