HomeSort by relevance Sort by last modified time
    Searched refs:E1 (Results 26 - 50 of 95) sorted by null

12 3 4

  /external/clang/test/SemaTemplate/
instantiate-non-type-template-parameter.cpp 40 enum E { E1, E2, E3 };
  /external/chromium_org/third_party/openssl/openssl/crypto/des/
des_locl.h 185 #define LOAD_DATA_tmp(R,S,u,t,E0,E1) \
186 { DES_LONG tmp; LOAD_DATA(R,S,u,t,E0,E1,tmp); }
188 #define LOAD_DATA(R,S,u,t,E0,E1,tmp) \
190 u=t&E0; t&=E1; \
195 #define LOAD_DATA(R,S,u,t,E0,E1,tmp) \
216 LOAD_DATA(R,S,u,t,E0,E1,u1); \
244 LOAD_DATA(R,S,u,t,E0,E1,u1); \
271 LOAD_DATA_tmp(R,S,u,t,E0,E1); \
290 LOAD_DATA(R,S,u,t,E0,E1,u1); \
319 LOAD_DATA(R,S,u,t,E0,E1,u1);
    [all...]
fcrypt_b.c 89 register DES_LONG E0,E1;
96 E1=Eswap1;
  /external/openssl/crypto/des/
des_locl.h 185 #define LOAD_DATA_tmp(R,S,u,t,E0,E1) \
186 { DES_LONG tmp; LOAD_DATA(R,S,u,t,E0,E1,tmp); }
188 #define LOAD_DATA(R,S,u,t,E0,E1,tmp) \
190 u=t&E0; t&=E1; \
195 #define LOAD_DATA(R,S,u,t,E0,E1,tmp) \
216 LOAD_DATA(R,S,u,t,E0,E1,u1); \
244 LOAD_DATA(R,S,u,t,E0,E1,u1); \
271 LOAD_DATA_tmp(R,S,u,t,E0,E1); \
290 LOAD_DATA(R,S,u,t,E0,E1,u1); \
319 LOAD_DATA(R,S,u,t,E0,E1,u1);
    [all...]
fcrypt_b.c 89 register DES_LONG E0,E1;
96 E1=Eswap1;
  /external/chromium_org/ppapi/generators/test_parser/
enum.idl 9 /* OK EnumItem(E1) */
10 E1 = 1,
  /external/clang/test/CXX/expr/expr.const/
p3-0x.cpp 36 enum E : unsigned char { E5 = S(), E6, E10 = S() * 2, E1 = E5 / 5 };
78 static_assert(Val<bool, E1>::value == 1, ""); // ok
  /external/clang/test/CXX/special/class.copy/
p23-cxx11.cpp 117 struct E1 : AmbiguousCopyAssign {}; // expected-note {{base class 'AmbiguousCopyAssign' has multiple copy}}
129 template struct CopyAssign<E1>; // expected-note {{here}}
  /external/clang/test/Sema/
MicrosoftExtensions.c 65 enum E1 : Int { SomeOtherValue } field; // expected-warning{{enumeration types with a fixed underlying type are a Microsoft extension}}
66 enum E1 : seventeen;
93 __declspec(deprecated("This is deprecated")) enum DE1 { one, two } e1; // expected-note {{'e1' declared here}} variable in typeref:enum:DE1
102 e1 = one; // expected-warning {{'e1' is deprecated: This is deprecated}}
106 enum DE1 no; // no warning because E1 is not deprecated
enum.c 58 E0 = sizeof(enum e0 { E1 }), // expected-error {{nested redefinition}}
80 enum e1 (*bar)(void); // expected-warning{{ISO C forbids forward references to 'enum' types}}
83 enum e1 { YES, NO }; enum
85 static enum e1 badfunc(struct s1 *q) {
warn-type-safety-mpi-hdf5.c 204 enum E1 { Foo };
205 MPI_Datatype my_e1_datatype __attribute__(( type_tag_for_datatype(mpi,enum E1) ));
211 enum E1 *e1_buf)
223 MPI_Send(e1_buf, 1, MPI_INT); // expected-warning {{argument type 'enum E1 *' doesn't match specified 'mpi' type tag that requires 'int *'}}
224 MPI_Send(int_buf, 1, my_e1_datatype); // expected-warning {{argument type 'int *' doesn't match specified 'mpi' type tag that requires 'enum E1 *'}}
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/
p5.cpp 13 enum alignas(1) E1 {}; // expected-error {{requested alignment is less than minimum alignment of 4 for type 'E1'}}
  /external/clang/test/CXX/temp/temp.res/temp.dep/
p3.cpp 12 namespace E1 {
  /external/clang/test/Parser/
declarators.c 110 enum E1 { e1 }: // expected-error {{expected ';'}} enumerator in enum:E1
cxx0x-attributes.cpp 152 enum [[]] E1 {};
154 enum [[]] E1;
159 enum [[]] E1 e; // expected-error {{an attribute list cannot appear here}}
  /external/clang/test/SemaCXX/
namespace-alias.cpp 17 namespace E1 = N::
overloaded-operator.cpp 62 struct E1 {
63 E1(Enum1) { }
71 float& operator==(E1, E2); // expected-note{{candidate function}}
73 void enum_test(Enum1 enum1, Enum2 enum2, E1 e1, E2 e2, Enum1 next_enum1) {
74 float &f1 = (e1 == e2);
76 float &f3 = (e1 == enum2);
overloaded-builtin-operators.cpp 14 enum E1 { };
16 operator E1();
38 void f(Short s, Long l, Enum1 e1, Enum2 e2, Xpmf pmf) {
40 int i1 = +e1;
59 (void)static_cast<yes&>(islong(e1 % l));
60 // FIXME: should pass (void)static_cast<no&>(islong(e1 % e2));
200 MyEnum e1, e2; local
201 if (e1 > e2) {}
class.cpp 37 enum E1 { en1, en2 };
MicrosoftExtensions.cpp 115 enum E1 : Int { SomeOtherValue } field; // expected-warning{{enumeration types with a fixed underlying type are a C++11 extension}}
116 enum E1 : seventeen;
  /external/v8/test/mjsunit/harmony/
module-parsing.js 86 module E1 at "http://where"
88 module E3 = E1.F
145 export A, A1, A2, A3, B, I, C1, D1, D2, D3, E1, E2, E3, X, Y, Z, Wrap, x, y, UU
  /external/clang/test/CodeGenCXX/
catch-undef-behavior.cpp 159 enum E1 { e1a = 0, e1b = 127 } e1; variable in typeref:enum:E1
165 // CHECK: %[[E1:.*]] = icmp ule i32 {{.*}}, 127
166 // CHECK: br i1 %[[E1]]
168 int a = e1;
190 // CHECK: %[[E1:.*]] = icmp uge i64 %[[SIZE]], 24
193 // CHECK: %[[E12:.*]] = and i1 %[[E1]], %[[E2]]
208 // CHECK: %[[E1:.*]] = icmp ne {{.*}}, null
212 // CHECK: %[[E12:.*]] = and i1 %[[E1]], %[[E2]]
  /external/chromium_org/v8/test/mjsunit/harmony/
module-parsing.js 86 module E1 at "http://where"
88 module E3 = E1
150 export A, A1, A2, A3, B, I, C1, D1, D2, D3, E1, E2, E3, X, Y, Z, Wrap, x, y, UU