Searched refs:C3 (Results 1 - 25 of 55) sorted by relevance

123

/external/clang/test/CodeGenCXX/
H A Dvtable-layout-extreme.cpp21 class C3 class in namespace:Test1
33 , virtual public C3
43 , virtual public C3
48 : virtual public C3
59 , virtual public C3
69 , public C3
128 // CHECK-NEXT: -- (Test1::C3, 120) vtable address --
170 // CHECK-NEXT: -- (Test1::C3, 240) vtable address --
H A Dvtt-layout.cpp36 class C3 : public X1 { int i; }; class in namespace:Test3
37 class D : public C1, public C2, public C3 { int i; };
55 class C3 : public X1 { int i; }; class in namespace:Test4
56 class D : public C1, public C2, public C3 { int i; };
H A Ddebug-info-use-after-free.cpp257 C3: class in class:__anon4543::C1
272 HHH (C3::GGG &);
289 C1::C3 * >
311 scoped_ptr < C1::C3 > context;
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Ddeduction.cpp33 template<int C1, char C3>
34 struct char_values<C1, 12, C3> {
44 template<unsigned char C1, unsigned char C3>
45 struct int_values<C1, 12, C3> {
/external/clang/test/CXX/temp/temp.decls/temp.class.spec/
H A Dp9.cpp22 template<unsigned char C1, unsigned char C3>
23 struct int_values<C1, 12, C3> {
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
H A DTimeUnit.java18 public long toSeconds(long d) { return d/(C3/C0); }
29 public long toSeconds(long d) { return d/(C3/C1); }
40 public long toSeconds(long d) { return d/(C3/C2); }
48 public long toNanos(long d) { return x(d, C3/C0, MAX/(C3/C0)); }
49 public long toMicros(long d) { return x(d, C3/C1, MAX/(C3/C1)); }
50 public long toMillis(long d) { return x(d, C3/C2, MAX/(C3/C2)); }
52 public long toMinutes(long d) { return d/(C4/C3); }
96 static final long C3 = C2 * 1000L; field in class:TimeUnit
[all...]
/external/v8/test/mjsunit/
H A Dsetter-on-constructor-prototype.js62 function C3() { class
65 C3.prototype = { };
66 C3.prototype.__defineSetter__('x', function(value) { this.y = 23; });
68 %ToFastProperties(C3.prototype);
72 var c3 = new C3();
/external/clang/test/Modules/Inputs/
H A Dredecl-merge-left.h34 @class C3;
35 void accept_a_C3(C3*);
36 @class C3;
H A Dredecl-merge-right.h36 @class C3;
37 C3 *get_a_C3(void);
/external/v8/test/mjsunit/bugs/
H A D618.js59 function C3() { class
62 var c3 = new C3();
68 C3.prototype.__defineSetter__('x', function(value) { this.y = 23; });
69 var c3 = new C3();
/external/clang/test/CXX/special/class.dtor/
H A Dp5-0x.cpp83 struct C3 : virtual DeletedDtor { C3(); } c3; // expected-error {{deleted function}} expected-note {{base class 'DeletedDtor' has a deleted destructor}} struct in inherits:DeletedDtor
/external/clang/test/Index/
H A Doverriding-ftemplate-comments.cpp74 /// \tparam C3 Ccc 3
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/clang/test/Sema/
H A Dwarn-unreachable.c102 enum Cases { C1, C2, C3 }; enumerator in enum:Cases
107 case C3:
H A Dwarn-duplicate-enum.c18 enum C { C1, C2 = -1, C3 }; // expected-warning{{element C1 has been implicitly assigned 0 which another element has been assigned}} \ enumerator in enum:C
19 // expected-note {{element C3 also has value 0}}
H A Dreturn.c249 enum Cases { C1, C2, C3, C4 }; enumerator in enum:Cases
255 case C3: return 4;
/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
59 C3 = 2.48015872894767294178e-05, /* 0x3EFA01A0, 0x19CB1590 */ variable
78 r = z*(C1+z*(C2+z*(C3+z*(C4+z*(C5+z*C6)))));
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DAESEngine.java333 private int C0, C1, C2, C3; field in class:AESEngine
439 C3 = (bytes[index++] & 0xff);
440 C3 |= (bytes[index++] & 0xff) << 8;
441 C3 |= (bytes[index++] & 0xff) << 16;
442 C3 |= bytes[index++] << 24;
466 bytes[index++] = (byte)C3;
467 bytes[index++] = (byte)(C3 >> 8);
468 bytes[index++] = (byte)(C3 >> 16);
469 bytes[index++] = (byte)(C3 >> 24);
480 C3
[all...]
H A DAESFastEngine.java667 private int C0, C1, C2, C3; field in class:AESFastEngine
775 C3 = (bytes[index++] & 0xff);
776 C3 |= (bytes[index++] & 0xff) << 8;
777 C3 |= (bytes[index++] & 0xff) << 16;
778 C3 |= bytes[index++] << 24;
802 bytes[index++] = (byte)C3;
803 bytes[index++] = (byte)(C3 >> 8);
804 bytes[index++] = (byte)(C3 >> 16);
805 bytes[index++] = (byte)(C3 >> 24);
815 C3
[all...]
/external/clang/test/SemaCXX/
H A Dclass.cpp90 struct C3 { struct
96 const C3 c3 = { 1, 2 };
/external/valgrind/main/none/tests/s390x/
H A Dicm.stdout.exp1 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 07 00 00 01 00 00 00 01 08 00 00 01 01 00 00 01 01 00 00 00 00 00 00 00 0A 00 00 00 00 00 00 00 0B 00 00 01 00 00 00 01 0C 00 00 01 02 00 00 01 02 00 01 00 00 00 01 00 0E 00 01 00 02 00 01 00 02 00 01 02 00 00 01 02 10 00 01 02 3C 00 01 02 3C 00 00 00 00 00 00 00 12 00 00 00 00 00 00 00 13 00 00 3C 00 00 00 3C 14 00 00 3C 3D 00 00 3C 3D 00 3C 00 00 00 3C 00 16 00 3C 00 3D 00 3C 00 3D 00 3C 3D 00 00 3C 3D 18 00 3C 3D 3E 00 3C 3D 3E 3C 00 00 00 3C 00 00 1A 3C 00 00 3D 3C 00 00 3D 3C 00 3D 00 3C 00 3D 1C 3C 00 3D 3E 3C 00 3D 3E 3C 3D 00 00 3C 3D 00 1E 3C 3D 00 3E 3C 3D 00 3E 3C 3D 3E 00 3C 3D 3E 20 3C 3D 3E 78 3C 3D 3E 78 00 00 00 00 00 00 00 22 00 00 00 00 00 00 00 23 00 00 78 00 00 00 78 24 00 00 78 79 00 00 78 79 00 78 00 00 00 78 00 26 00 78 00 79 00 78 00 79 00 78 79 00 00 78 79 28 00 78 79 7A 00 78 79 7A 78 00 00 00 78 00 00 2A 78 00 00 79 78 00 00 79 78 00 79 00 78 00 79 2C 78 00 79 7A 78 00 79 7A 78 79 00 00 78 79 00 2E 78 79 00 7A 78 79 00 7A 78 79 7A 00 78 79 7A 30 78 79 7A B4 78 79 7A B4 00 00 00 00 00 00 00 32 00 00 B4 00 00 00 B4 33 00 00 B4 B5 00 00 B4 B5 00 B4 00 00 00 B4 00 35 00 B4 00 B5 00 B4 00 B5 00 B4 B5 00 00 B4 B5 37 00 B4 B5 B6 00 B4 B5 B6 B4 00 00 00 B4 00 00 39 B4 00 00 B5 B4 00 00 B5 B4 00 B5 00 B4 00 B5 3B B4 00 B5 B6 B4 00 B5 B6 B4 B5 00 00 B4 B5 00 3D B4 B5 00 B6 B4 B5 00 B6 B4 B5 B6 00 B4 B5 B6 3F B4 B5 B6 B7 B4 B5 B6 B7 00 00 00 F0 00 00 00 F0 00 00 00 00 00 00 00 42 00 00 F0 00 00 00 F0 43 00 00 F0 F1 00 00 F0 F1 00 F0 00 00 00 F0 00 45 00 F0 00 F1 00 F0 00 F1 00 F0 F1 00 00 F0 F1 47 00 F0 F1 F2 00 F0 F1 F2 F0 00 00 00 F0 00 00 49 F0 00 00 F1 F0 00 00 F1 F0 00 F1 00 F0 00 F1 4B F0 00 F1 F2 F0 00 F1 F2 F0 F1 00 00 F0 F1 00 4D F0 F1 00 F2 F0 F1 00 F2 F0 F1 F2 00 F0 F1 F2 4F F0 F1 F2 F3 F0 F1 F2 F3 00 00 00 FC 00 00 00 FC 00 00 00 00 00 00 00 52 00 00 FC 00 00 00 FC 53 00 00 FC FD 00 00 FC FD 00 FC 00 00 00 FC 00 55 00 FC 00 FD 00 FC 00 FD 00 FC FD 00 00 FC FD 57 00 FC FD FE 00 FC FD FE FC 00 00 00 FC 00 00 59 FC 00 00 FD FC 00 00 FD FC 00 FD 00 FC 00 FD 5B FC 00 FD FE FC 00 FD FE FC FD 00 00 FC FD 00 5D FC FD 00 FE FC FD 00 FE FC FD FE 00 FC FD FE 5F FC FD FE FF FC FD FE FF 00 00 00 80 00 00 00 80 00 00 00 00 00 00 00 62 00 00 80 00 00 00 80 63 00 00 80 00 00 00 80 00 00 80 00 00 00 80 00 65 00 80 00 00 00 80 00 00 00 80 00 00 00 80 00 67 00 80 00 00 00 80 00 00 80 00 00 00 80 00 00 69 80 00 00 00 80 00 00 00 80 00 00 00 80 00 00 6B 80 00 00 00 80 00 00 00 80 00 00 00 80 00 00 6D 80 00 00 00 80 00 00 00 80 00 00 00 80 00 00 6F 80 00 00 00 80 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 72 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 76 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 78 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7C 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7E 00 00 00 01 00 00 00 01 00 00 00 00 00 00 00 80 00 00 00 FF 00 00 00 FF 00 00 00 00 00 00 00 82 00 00 FF 00 00 00 FF 83 00 00 FF FE 00 00 FF FE 00 FF 00 00 00 FF 00 85 00 FF 00 FE 00 FF 00 FE 00 FF FE 00 00 FF FE 87 00 FF FE FD 00 FF FE FD FF 00 00 00 FF 00 00 89 FF 00 00 FE FF 00 00 FE FF 00 FE 00 FF 00 FE 8B FF 00 FE FD FF 00 FE FD FF FE 00 00 FF FE 00 8D FF FE 00 FD FF FE 00 FD FF FE FD 00 FF FE FD 8F FF FE FD FC FF FE FD FC 00 00 00 C3 00 00 00 C3 00 00 00 00 00 00 00 92 00 00 C3 00 00 00 C3 93 00 00 C3 C2 00 00 C3 C2 00 C3 00 00 00 C3 00 95 00 C3 00 C2 00 C3 0
[all...]
/external/speex/libspeex/
H A Dmath_approx.h134 #define C3 4215*/
140 #define C3 4204 macro
148 rt = ADD16(C0, MULT16_16_Q14(x, ADD16(C1, MULT16_16_Q14(x, ADD16(C2, MULT16_16_Q14(x, (C3)))))));
311 #define C3 0.0414877472f macro
321 return C1 + x*(C2+x*(C3+C4*x));
325 return NEG16(C1 + x*(C2+x*(C3+C4*x)));
/external/openfst/src/test/
H A Dalgo_test.h103 VectorFst<Arc> C3(T2);
104 Concat(T1, &C3);
105 CHECK(Equiv(C3, C2));
167 VectorFst<Arc> C3(T2);
168 Concat(&C3, T3);
170 Concat(&C4, C3);
180 ConcatFst<Arc> C3(T2, T3);
181 ConcatFst<Arc> C4(T1, C3);
191 ConcatFst<Arc> C3(T2, T3);
192 ConcatFst<Arc> C4(T1, C3);
[all...]
/external/clang/test/FixIt/
H A Dfixit.cpp25 class C3 { class
27 C3(C3, int i = 0); // expected-error{{copy constructor must pass its first argument by reference}}
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp1.cpp46 constexpr class C3 {} c3 = C3(); class
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
H A DAES.java480 private int C0, C1, C2, C3; field in class:AES
575 C3 = (bytes[index++] & 0xff);
576 C3 |= (bytes[index++] & 0xff) << 8;
577 C3 |= (bytes[index++] & 0xff) << 16;
578 C3 |= bytes[index++] << 24;
600 bytes[index++] = (byte) C3;
601 bytes[index++] = (byte) (C3 >> 8);
602 bytes[index++] = (byte) (C3 >> 16);
603 bytes[index++] = (byte) (C3 >> 24);
613 C3
[all...]

Completed in 289 milliseconds

123