HomeSort by relevance Sort by last modified time
    Searched defs:e1 (Results 151 - 175 of 478) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/clang/test/Sema/
string-init.c 33 int e1[] = "a"; // expected-error{{initializing wide char array with non-wide string literal}} local
MicrosoftExtensions.c 62 enum E1 : Int { SomeOtherValue } field; // expected-warning{{enumeration types with a fixed underlying type are a Microsoft extension}}
63 enum E1 : seventeen;
90 __declspec(deprecated("This is deprecated")) enum DE1 { one, two } e1; // expected-note {{'e1' has been explicitly marked deprecated here}} variable in typeref:enum:DE1
99 e1 = one; // expected-warning {{'e1' is deprecated: This is deprecated}}
103 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) {
  /external/clang/test/SemaCXX/
default-assignment-operator.cpp 76 class E1 { // expected-error{{cannot define the implicit copy assignment operator for 'E1', because non-static const member 'a' can't use copy assignment operator}}
80 E1() : a(0) {}
84 E1 e1, e2; variable
87 e1 = e2; // expected-note{{assignment operator for 'E1' first required here}}
string-init.cpp 28 int e1[] = "a"; // expected-error{{array initializer must be an initializer list}} local
abstract.cpp 45 C e1[2]; // expected-error {{array of abstract class type 'C'}} variable
  /external/clang/test/SemaTemplate/
instantiate-member-class.cpp 60 X<void>::D::E *e1; // okay variable
  /external/fio/crc/
sha256.c 39 #define e1(x) (ror32(x, 6) ^ ror32(x,11) ^ ror32(x,25)) macro
86 t1 = h + e1(e) + Ch(e,f,g) + 0x428a2f98 + W[ 0];
88 t1 = g + e1(d) + Ch(d,e,f) + 0x71374491 + W[ 1];
90 t1 = f + e1(c) + Ch(c,d,e) + 0xb5c0fbcf + W[ 2];
92 t1 = e + e1(b) + Ch(b,c,d) + 0xe9b5dba5 + W[ 3];
94 t1 = d + e1(a) + Ch(a,b,c) + 0x3956c25b + W[ 4];
96 t1 = c + e1(h) + Ch(h,a,b) + 0x59f111f1 + W[ 5];
98 t1 = b + e1(g) + Ch(g,h,a) + 0x923f82a4 + W[ 6];
100 t1 = a + e1(f) + Ch(f,g,h) + 0xab1c5ed5 + W[ 7];
103 t1 = h + e1(e) + Ch(e,f,g) + 0xd807aa98 + W[ 8]
    [all...]
  /external/owasp/sanitizer/src/tests/org/owasp/html/
HtmlSanitizerFuzzerTest.java 92 int e1 = s1 + (int) (rnd.nextInt(length - s1) * d); local
93 if (e1 >= length) { e1 = s1 + 1; }
98 e0 = e1;
100 e1 = et;
105 // Swap the ranges [s0, e0) and [s1, e1) into fuzzyHtml1.
110 for (i0 = s1; i0 < e1; ++i0, ++i1) {
119 for (i0 = e1; i0 < length; ++i0, ++i1) {
  /external/speex/libspeex/
pseudofloat.h 248 int e1, e2; local
254 e1 = spx_ilog2(ABS32(a));
255 a = VSHR32(a, e1-14);
259 r.e = e1+e2-13;
  /frameworks/av/media/libmedia/
MemoryLeakTrackUtil.cpp 125 AllocEntry *e1 = &entries[i]; local
128 bool swap = e1->size < e2->size;
129 if (e1->size == e2->size) {
131 if (e1->backtrace[j] == e2->backtrace[j]) {
134 swap = e1->backtrace[j] < e2->backtrace[j];
  /art/runtime/
fault_handler.cc 357 int e1 = sigaction(SIGSEGV, &action, &oldsegvaction); local
359 if (e1 != 0 || e2 != 0) {
  /bionic/libc/bionic/
malloc_debug_common.cpp 122 const HashEntry* e1 = *static_cast<HashEntry* const*>(arg1); local
126 if (e1 == NULL) {
131 size_t nbAlloc1 = e1->allocations;
133 size_t size1 = e1->size & ~SIZE_FLAG_MASK;
malloc_debug_leak.cpp 178 HashEntry* e1 = g_hash_table->slots[i]; local
179 while (e1 != NULL) {
180 if (e1 == entry) {
183 e1 = e1->next;
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
strtod.c 94 e, e1, esign, i, j, k, nd, nd0, nf, nz, nz0, sign; local
340 e1 = e -= nf;
430 e1 += nd - k;
452 /* Get starting approximation = rv * 10**e1 */
454 if (e1 > 0) {
455 if ( (i = e1 & 15) !=0)
457 if (e1 &= ~15) {
458 if (e1 > DBL_MAX_10_EXP) {
499 e1 >>= 4;
500 for(j = 0; e1 > 1; j++, e1 >>= 1
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ElementTest.java 139 Element e1 = eb1.add(Element.U8(mRS), "UTest").create(); local
141 assertTrue(e1.equals(e1));
147 assertTrue(e1.equals(e2));
148 assertTrue(e2.equals(e1));
149 assertTrue(e1.hashCode() == e2.hashCode());
150 assertTrue(e1.isCompatible(e2));
151 assertTrue(e2.isCompatible(e1));
158 assertFalse(e1.equals(e3));
159 assertFalse(e3.equals(e1));
400 Element e1 = eb.create(); local
    [all...]
IntrinsicHistogram.java 27 Element e1; local
31 case 4: e1 = Element.U8_4(mRS); break;
32 case 3: e1 = Element.U8_3(mRS); break;
33 case 2: e1 = Element.U8_2(mRS); break;
34 default: e1 = Element.U8(mRS); break;
44 Type.Builder tb = new Type.Builder(mRS, e1);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
SecurityTest.java 49 } catch (NoSuchAlgorithmException e1) {
50 e1.printStackTrace();
  /external/chromium_org/content/browser/
site_instance_impl_unittest.cc 206 NavigationEntryImpl* e1 = new NavigationEntryImpl( local
210 // Redundantly setting e1's SiteInstance shouldn't affect the ref count.
211 e1->set_site_instance(instance);
220 delete e1;
268 NavigationEntryImpl* e1 = new NavigationEntryImpl( local
272 NavigationEntryImpl* e2 = new NavigationEntryImpl(*e1);
277 // The first SiteInstance should go away after deleting e1, since e2 should
279 delete e1;
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
extensions.c 808 const struct extension *e1 = &extension_table[i1]; local
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
CubicParameterization.cpp 435 double e1, f1, g1, h1; local
437 alt_set_abcd(&one[0].y, e1, f1, g1, h1);
439 set_abcd(&one[0].y, e1, f1, g1, h1);
440 calc_ABCD(a1, e1, p1);
457 double e1 = one[0].y; local
461 calc_ABCD(a1, b1, c1, d1, e1, f1, g1, h1, p1);
484 p1[index] = (*calc_proc[procIndex])(a1, b1, c1, d1, e1, f1, g1, h1);
  /external/chromium_org/third_party/skia/samplecode/
SampleColorFilter.cpp 58 int e1 = 0; local
78 e1 += err1;
84 SkDebugf("--- trunc: %d %d round: %d %d new: %d %d\n", e0, ae0, e1, ae1, e2, ae2);
  /external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.enum/
p1.cpp 6 E f() { return A::e1; } // expected-error {{no member named 'e1' in 'A<T>'}}
7 E g() { return E::e1; }
13 int n = A<int>::E::e1; // expected-error {{implicit instantiation of undefined member}}
15 template<typename T> enum A<T>::E : T { e1, e2 }; // expected-note 2 {{declared here}} enumerator in enum:T
23 A<int>::E a1 = A<int>::e1; // expected-error {{no member named 'e1' in 'A<int>'; did you mean simply 'e1'?}}
34 E f() { return E::e1; }
41 template<typename T> enum class B<T>::E { e1, e2 } member in class:B::E
    [all...]
  /external/clang/test/CodeGenCXX/
pr12251.cpp 16 enum e1 { }; enum
17 e1 g1(e1 *x) {
  /external/clang/test/Parser/
declarators.c 111 enum E1 { e1 }: // expected-error {{expected ';'}} enumerator in enum:E1

Completed in 1143 milliseconds

1 2 3 4 5 67 8 91011>>