Searched refs:C4 (Results 1 - 25 of 106) sorted by relevance

12345

/external/clang/test/Modules/Inputs/
H A Dredecl-merge-left-left.h3 @class C4;
4 void accept_a_C4(C4*);
H A Dredecl-merge-bottom.h3 @class C4;
4 @class C4;
19 void refers_to_C4(C4*);
H A Dredecl-merge-right.h39 @class C4;
40 @class C4;
41 @class C4;
42 @class C4;
43 C4 *get_a_C4(void);
H A Dredecl-merge-left.h38 @class 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/chromium_org/tools/gyp/test/win/compiler-flags/
H A Dwarning-level3.cc7 struct __declspec(align(4)) C4 { C8 m8; };
/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/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/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/clang/test/SemaCXX/
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/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/Index/
H A Doverriding-ftemplate-comments.cpp75 /// \tparam C4 Ccc 4
77 template <class C1, template <class C2, template <class C3, class C4> class BBB > class AAA>
80 // CHECK: FullCommentAsXML=[<Function templateKind="template" file="{{[^"]+}}overriding-ftemplate-comments.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_22</Name><USR>c:@FT@&gt;2#T#t&gt;2#T#t&gt;2#T#Tcomment_to_html_conversion_22#</USR><Declaration>template &lt;class C1, template &lt;class C2, template &lt;class C3, class C4&gt; class BBB&gt;\n class AAA&gt;\nvoid comment_to_html_conversion_22()</Declaration><TemplateParameters><Parameter><Name>C1</Name><Index>0</Index><Discussion><Para> Ccc 1 </Para></Discussion></Parameter><Parameter><Name>AAA</Name><Index>1</Index><Discussion><Para> Zzz </Para></Discussion></Parameter><Parameter><Name>C2</Name><Discussion><Para> Ccc 2 </Para></Discussion></Parameter><Parameter><Name>C3</Name><Discussion><Para> Ccc 3 </Para></Discussion></Parameter><Parameter><Name>C4</Name><Discussion><Para> Ccc 4 </Para></Discussion></Parameter><Parameter><Name>BBB</Name><Discussion><Para> Bbb</Para></Discussion></Parameter></TemplateParameters></Function>]
/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/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dsimd-2.asm5 pinsrw mm3, esi, 5 ; 0F C4 DE 05
6 pinsrw mm3, [0], 4 ; 0F C4 1D 00 00 00 00 04
8 pinsrw xmm1, eax, 3 ; 66 0F C4 C8 03
9 pinsrw xmm1, [0], 2 ; 66 0F C4 0D 00 00 00 00 02
/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/chromium_org/third_party/webrtc/base/
H A Dsigslottester.h132 class C4>
136 C1* capture1, C2* capture2, C3* capture3, C4* capture4)
158 C4* capture4_;
164 class C3, class C4, class C5>
168 C1* capture1, C2* capture2, C3* capture3, C4* capture4,
192 C4* capture4_;
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp1.cpp50 class C4 {} constexpr c4 = C4(); class
/external/clang/test/Sema/
H A Dreturn.c260 enum Cases { C1, C2, C3, C4 }; enumerator in enum:Cases
265 case C4: return 3;
/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/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/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;

Completed in 2324 milliseconds

12345