Searched defs:C4 (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-618.js74 function C4() { class
77 var c4 = new C4();
83 C4.prototype.__proto__.__defineSetter__('x', function(value) { this.y = 23; });
84 var c4 = new C4();
/external/chromium_org/v8/test/mjsunit/
H A Dsetter-on-constructor-prototype.js78 function C4() { class
81 C4.prototype = { };
82 C4.prototype.__proto__ = { };
83 C4.prototype.__proto__.__defineSetter__('x', function(value) { this.y = 23; });
85 %ToFastProperties(C4.prototype.__proto__);
89 var c4 = new C4();
/external/clang/test/CodeGenCXX/
H A Dvtable-layout-extreme.cpp31 class C4 class in namespace:Test1
40 , virtual public C4
51 , public C4
60 , public C4
70 , virtual public C4
98 // CHECK-NEXT: -- (Test1::C4, 16) vtable address --
118 // CHECK-NEXT: -- (Test1::C4, 88) vtable address --
139 // CHECK-NEXT: -- (Test1::C4, 168) vtable address --
150 // CHECK-NEXT: -- (Test1::C4, 184) vtable address --
199 , public C4
[all...]
H A Ddebug-info-use-after-free.cpp286 C4: class in namespace:n1
295 C4,
/external/fdlibm/
H A Dk_cos.c30 * |ieee_cos(x)-(1-.5*x +C1*x +C2*x +C3*x +C4*x +C5*x +C6*x )| <= 2
34 * 4. let r = C1*x +C2*x +C3*x +C4*x +C5*x +C6*x , then
60 C4 = -2.75573143513906633035e-07, /* 0xBE927E4F, 0x809C52AD */ variable
78 r = z*(C1+z*(C2+z*(C3+z*(C4+z*(C5+z*C6)))));
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
H A Dp2-0x.cpp99 template<typename T> class C4 { // expected-note {{template parameter is declared here}} class in namespace:ClassNameRedecl
/external/clang/test/Layout/
H A Dms-x86-empty-nonvirtual-bases.cpp18 struct C4 { int a; C4() : a(0xf00000C4) {printf("C4 : %p\n", this);} }; function in struct:C4
H A Dms-x86-basic-layout.cpp18 struct C4 { struct
20 C4() : a(0xf00000c4) {} function in struct:C4
21 virtual void f() {printf("C4");}
93 struct TestF2 : A4, virtual C4 {
105 // CHECK-NEXT: 12 | struct C4 (virtual base)
106 // CHECK-NEXT: 12 | (C4 vftable pointer)
117 // CHECK-X64-NEXT: 24 | struct C4 (virtual base)
118 // CHECK-X64-NEXT: 24 | (C4 vftable pointer)
H A Dms-x86-empty-virtual-base.cpp18 struct C4 { int a; C4() : a(0xf00000C4) {printf("C4 : %3d\n", ((int)(__SIZE_TYPE__)this)&0xfff);} }; function in struct:C4
/external/clang/test/SemaCXX/
H A Dalias-template.cpp84 template<typename T> class C4 { // expected-note {{template parameter is declared here}} class in namespace:ClassNameRedecl
H A Dclass.cpp109 // PR3020: This used to crash due to double ownership of C4.
110 struct C4;
111 C4; // expected-warning {{declaration does not declare anything}}
114 struct C4 { struct
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
H A DTimeUnit.java19 public long toMinutes(long d) { return d/(C4/C0); }
30 public long toMinutes(long d) { return d/(C4/C1); }
41 public long toMinutes(long d) { return d/(C4/C2); }
52 public long toMinutes(long d) { return d/(C4/C3); }
59 public long toNanos(long d) { return x(d, C4/C0, MAX/(C4/C0)); }
60 public long toMicros(long d) { return x(d, C4/C1, MAX/(C4/C1)); }
61 public long toMillis(long d) { return x(d, C4/C2, MAX/(C4/C
97 static final long C4 = C3 * 60L; field in class:TimeUnit
[all...]
/external/chromium_org/third_party/speex/libspeex/
H A Dmath_approx.h312 #define C4 -0.0012712095f macro
321 return C1 + x*(C2+x*(C3+C4*x));
325 return NEG16(C1 + x*(C2+x*(C3+C4*x)));
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp1.cpp50 class C4 {} constexpr c4 = C4(); class
/external/clang/test/CXX/special/class.dtor/
H A Dp5-0x.cpp84 struct C4 : virtual InaccessibleDtor { C4(); } c4; // expected-error {{deleted function}} expected-note {{base class 'InaccessibleDtor' has an inaccessible destructor}} struct in inherits:InaccessibleDtor
/external/clang/test/Sema/
H A Dreturn.c260 enum Cases { C1, C2, C3, C4 }; enumerator in enum:Cases
265 case C4: return 3;
/external/freetype/src/gzip/
H A Dinftrees.c141 #define C4 C2 C2 C2 C2 macro
142 C4 /* clear c[]--assume BMAX+1 is 16 */
/external/speex/libspeex/
H A Dmath_approx.h312 #define C4 -0.0012712095f macro
321 return C1 + x*(C2+x*(C3+C4*x));
325 return NEG16(C1 + x*(C2+x*(C3+C4*x)));
/external/libvpx/libvpx/test/
H A Ddct16x16_test.cc70 const double C4 = 0.923879532511287; member in namespace:__anon24778
185 temp2 = step[3] * C4;
189 temp1 = step[2] * C4;
206 temp2 = intermediate[9] * C4;
210 temp1 = intermediate[8] * C4;
229 temp2 = intermediate[15] * C4;
233 temp1 = intermediate[14] * C4;
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Ddct16x16_test.cc67 const double C4 = 0.923879532511287; member in namespace:__anon12980
182 temp2 = step[3] * C4;
186 temp1 = step[2] * C4;
203 temp2 = intermediate[9] * C4;
207 temp1 = intermediate[8] * C4;
226 temp2 = intermediate[15] * C4;
230 temp1 = intermediate[14] * C4;
/external/eigen/Eigen/src/Core/products/
H A DGeneralBlockPanelKernel.h570 AccPacket C0, C1, C2, C3, C4, C5, C6, C7; local
575 traits.initAcc(C4);
607 traits.madd(A1,B_0,C4,B_0);
616 traits.madd(A1,B_0,C4,B_0);
625 traits.madd(A1,B_0,C4,B_0);
634 traits.madd(A1,B_0,C4,B_0);
654 traits.madd(A1,B_0,C4,B_0);
669 traits.madd(A1,B_0,C4,B_0);
684 traits.madd(A1,B_0,C4,B_0);
698 traits.madd(A1,B_0,C4,B_
1020 AccPacket C0, C4; local
[all...]
/external/webrtc/src/modules/audio_processing/aec/
H A Daec_core_sse2.c253 // pol5(y) = C5 * y^5 + C4 * y^4 + C3 * y^3 + C2 * y^2 + C1 * y + C0
256 static const ALIGN16_BEG float ALIGN16_END C4[4] = local
267 const __m128 pol5_y_1 = _mm_add_ps(pol5_y_0, *((__m128 *)C4));
/external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
H A Daec_core_neon.c297 // pol5(y) = C5 * y^5 + C4 * y^4 + C3 * y^3 + C2 * y^2 + C1 * y + C0
299 const float32x4_t C4 = vdupq_n_f32(3.1821337e-1f); local
305 pol5_y = vmlaq_f32(C4, y, pol5_y);
H A Daec_core_sse2.c269 // pol5(y) = C5 * y^5 + C4 * y^4 + C3 * y^3 + C2 * y^2 + C1 * y + C0
273 C4[4] = {3.1821337e-1f, 3.1821337e-1f, 3.1821337e-1f, 3.1821337e-1f}; local
283 const __m128 pol5_y_1 = _mm_add_ps(pol5_y_0, *((__m128*)C4));
/external/openssl/crypto/modes/
H A Dgcm128.c1619 C4[]= {0x42,0x83,0x1e,0xc2,0x21,0x77,0x74,0x24,0x4b,0x72,0x21,0xb7,0x84,0xd0,0xd4,0x9c, local

Completed in 5268 milliseconds

12