HomeSort by relevance Sort by last modified time
    Searched refs:C4 (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/clang/test/CodeGenCXX/
vtable-layout-extreme.cpp 31 class C4
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...]
  /bionic/libm/src/
k_cos.c 34 * |cos(x)-(1-.5*x +C1*x +C2*x +C3*x +C4*x +C5*x +C6*x )| <= 2
38 * 4. let r = C1*x +C2*x +C3*x +C4*x +C5*x +C6*x , then
65 C4 = -2.75573143513906633035e-07, /* 0xBE927E4F, 0x809C52AD */
75 r = z*(C1+z*(C2+z*(C3+z*(C4+z*(C5+z*C6)))));
  /libcore/luni/src/main/java/java/util/concurrent/
TimeUnit.java 48 public long toMinutes(long d) { return d/(C4/C0); }
59 public long toMinutes(long d) { return d/(C4/C1); }
70 public long toMinutes(long d) { return d/(C4/C2); }
81 public long toMinutes(long d) { return d/(C4/C3); }
88 public long toNanos(long d) { return x(d, C4/C0, MAX/(C4/C0)); }
89 public long toMicros(long d) { return x(d, C4/C1, MAX/(C4/C1)); }
90 public long toMillis(long d) { return x(d, C4/C2, MAX/(C4/C2));
    [all...]
  /external/clang/test/SemaCXX/
class.cpp 106 // PR3020: This used to crash due to double ownership of C4.
107 struct C4;
108 C4; // expected-warning {{declaration does not declare anything}}
111 struct C4 {
alias-template.cpp 84 template<typename T> class C4 { // expected-note {{template parameter is declared here}}
  /external/fdlibm/
k_cos.c 30 * |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 */
78 r = z*(C1+z*(C2+z*(C3+z*(C4+z*(C5+z*C6)))));
  /external/bluetooth/bluez/sbc/
sbc_tables.h 473 #define C4 2.5377944043
483 -F(8.23919506E-04 * C4), F(0.00000000E+00 * C4),
491 -F(1.46525263E-02 * C4), F(0.00000000E+00 * C4),
499 -F(1.23264548E-01 * C4), F(0.00000000E+00 * C4),
507 F(1.46404076E-02 * C4), F(0.00000000E+00 * C4),
515 -F(9.02154502E-04 * C4), F(0.00000000E+00 * C4)
    [all...]
  /external/v8/test/mjsunit/
setter-on-constructor-prototype.js 78 function C4() {
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();
90 assertEquals("undefined", typeof c4.x);
91 assertEquals(23, c4.y);
  /external/clang/test/Sema/
return.c 249 enum Cases { C1, C2, C3, C4 };
254 case C4: return 3;
  /external/v8/test/mjsunit/bugs/
618.js 74 function C4() {
77 var c4 = new C4();
78 assertEquals(23, c4.x);
79 assertEquals("undefined", typeof c4.y);
83 C4.prototype.__proto__.__defineSetter__('x', function(value) { this.y = 23; });
84 var c4 = new C4();
85 assertEquals("undefined", typeof c4.x);
86 assertEquals(23, c4.y)
    [all...]
  /external/webkit/LayoutTests/fast/dom/TreeWalker/script-tests/
previousNodeLastChildReject.js 4 testElement.innerHTML='<div id="A1"><div id="B1"><div id="C1"></div><div id="C2"><div id="D1"></div><div id="D2"></div></div></div><div id="B2"><div id="C3"></div><div id="C4"></div></div></div>';
previousSiblingLastChildSkip.js 4 testElement.innerHTML='<div id="A1"><div id="B1"><div id="C1"></div><div id="C2"><div id="D1"></div><div id="D2"></div></div></div><div id="B2"><div id="C3"></div><div id="C4"></div></div></div>';
  /external/speex/libspeex/
math_approx.h 312 #define C4 -0.0012712095f
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.typedef/
p2-0x.cpp 99 template<typename T> class C4 { // expected-note {{template parameter is declared here}}
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
rtl.h 635 #define RTL_FLAG_CHECK4(NAME, RTX, C1, C2, C3, C4) __extension__ \
638 && GET_CODE(_rtx) != C3 && GET_CODE(_rtx) != C4) \
643 #define RTL_FLAG_CHECK5(NAME, RTX, C1, C2, C3, C4, C5) __extension__ \
646 && GET_CODE(_rtx) != C3 && GET_CODE(_rtx) != C4 \
652 #define RTL_FLAG_CHECK6(NAME, RTX, C1, C2, C3, C4, C5, C6) \
656 && GET_CODE(_rtx) != C3 && GET_CODE(_rtx) != C4 \
662 #define RTL_FLAG_CHECK7(NAME, RTX, C1, C2, C3, C4, C5, C6, C7) \
666 && GET_CODE(_rtx) != C3 && GET_CODE(_rtx) != C4 \
673 #define RTL_FLAG_CHECK8(NAME, RTX, C1, C2, C3, C4, C5, C6, C7, C8) \
677 && GET_CODE(_rtx) != C3 && GET_CODE(_rtx) != C4 \
    [all...]
  /external/chromium/testing/
gmock_mutant.h 170 typename C3, typename C4>
173 const Tuple4<C1, C2, C3, C4>& c) {
177 typename C4>
180 const Tuple4<C1, C2, C3, C4>& c) {
186 typename C3, typename C4, typename C5>
189 const Tuple5<C1, C2, C3, C4, C5>& c) {
193 typename C4, typename C5>
196 const Tuple5<C1, C2, C3, C4, C5>& c) {
202 typename C3, typename C4, typename C5, typename C6>
205 const Tuple6<C1, C2, C3, C4, C5, C6>& c)
    [all...]
  /external/icu4c/data/sprep/
rfc3491.txt 13 # options: --sourcedir=. --destdir=out --src-filename=rfc3454.txt --dest-filename=rfc3491.txt --A1 --B1 --B2 --C12 --C22 --C3 --C4 --C5 --C6 --C7 --C8 --C9 --normalize --check-bidi
454 # options: --sourcedir=. --destdir=out --src-filename=rfc3454.txt --dest-filename=rfc3491.txt --A1 --B1 --B2 --C12 --C22 --C3 --C4 --C5 --C6 --C7 --C8 --C9 --normalize --check-bidi
490 00C4; 00E4; MAP
618 01C4; 01C6; MAP
705 03A4; 03C4; MAP
832 04C3; 04C4; MAP
1244 24C4; 24DE; MAP
1719 1D6BB; 03C4; MAP
1745 1D6F5; 03C4; MAP
    [all...]
rfc3530csci.txt 13 # options: --sourcedir=. --destdir=out --src-filename=rfc3454.txt --dest-filename=rfc3530csci.txt --A1 --B1 --B2 --C3 --C4 --C5 --C6 --C7 --C8 --C9 --check-bidi
453 # options: --sourcedir=. --destdir=out --src-filename=rfc3454.txt --dest-filename=rfc3530csci.txt --A1 --B1 --B2 --C3 --C4 --C5 --C6 --C7 --C8 --C9 --check-bidi
489 00C4; 00E4; MAP
617 01C4; 01C6; MAP
704 03A4; 03C4; MAP
831 04C3; 04C4; MAP
1243 24C4; 24DE; MAP
1718 1D6BB; 03C4; MAP
1744 1D6F5; 03C4; MAP
    [all...]
rfc3722.txt 13 # options: --sourcedir=. --destdir=out --src-filename=rfc3454.txt --dest-filename=rfc3722.txt --A1 --B1 --B2 -C11 --C12 --C21 --C22 --C3 --C4 --C5 --C6 --C7 --C8 --C9 --iscsi --normalize --check-bidi
454 # options: --sourcedir=. --destdir=out --src-filename=rfc3454.txt --dest-filename=rfc3722.txt --A1 --B1 --B2 -C11 --C12 --C21 --C22 --C3 --C4 --C5 --C6 --C7 --C8 --C9 --iscsi --normalize --check-bidi
490 00C4; 00E4; MAP
618 01C4; 01C6; MAP
705 03A4; 03C4; MAP
832 04C3; 04C4; MAP
1244 24C4; 24DE; MAP
1719 1D6BB; 03C4; MAP
1745 1D6F5; 03C4; MAP
    [all...]
rfc3920node.txt 13 # options: --sourcedir=. --destdir=out --src-filename=rfc3454.txt --dest-filename=rfc3920node.txt --A1 --B1 --B2 -C11 --C12 --C21 --C22 --C3 --C4 --C5 --C6 --C7 --C8 --C9 -xmpp-node --normalize --check-bidi
454 # options: --sourcedir=. --destdir=out --src-filename=rfc3454.txt --dest-filename=rfc3920node.txt --A1 --B1 --B2 -C11 --C12 --C21 --C22 --C3 --C4 --C5 --C6 --C7 --C8 --C9 -xmpp-node --normalize --check-bidi
490 00C4; 00E4; MAP
618 01C4; 01C6; MAP
705 03A4; 03C4; MAP
832 04C3; 04C4; MAP
1244 24C4; 24DE; MAP
1719 1D6BB; 03C4; MAP
1745 1D6F5; 03C4; MAP
    [all...]
rfc4518ci.txt 13 # options: --sourcedir=. --destdir=out --src-filename=rfc3454.txt --dest-filename=rfc4518ci.txt --A1 --ldap --B2 --C3 --C4 --C5 --C8 --normalize
421 # options: --sourcedir=. --destdir=out --src-filename=rfc3454.txt --dest-filename=rfc4518ci.txt --A1 --ldap --B2 --C3 --C4 --C5 --C8 --normalize
457 00C4; 00E4; MAP
585 01C4; 01C6; MAP
672 03A4; 03C4; MAP
799 04C3; 04C4; MAP
1211 24C4; 24DE; MAP
1686 1D6BB; 03C4; MAP
1712 1D6F5; 03C4; MAP
1738 1D72F; 03C4; MA
    [all...]
  /external/icu4c/test/testdata/
nfs4_cis_prep.txt 480 00C4; 00E4; MAP
608 01C4; 01C6; MAP
695 03A4; 03C4; MAP
822 04C3; 04C4; MAP
1234 24C4; 24DE; MAP
1709 1D6BB; 03C4; MAP
1735 1D6F5; 03C4; MAP
1761 1D72F; 03C4; MAP
    [all...]
nfs4_cs_prep_ci.txt 480 00C4; 00E4; MAP
608 01C4; 01C6; MAP
695 03A4; 03C4; MAP
822 04C3; 04C4; MAP
1234 24C4; 24DE; MAP
1709 1D6BB; 03C4; MAP
1735 1D6F5; 03C4; MAP
1761 1D72F; 03C4; MAP
    [all...]
nfs4_mixed_prep_s.txt 480 00C4; 00E4; MAP
608 01C4; 01C6; MAP
695 03A4; 03C4; MAP
822 04C3; 04C4; MAP
1234 24C4; 24DE; MAP
1709 1D6BB; 03C4; MAP
1735 1D6F5; 03C4; MAP
1761 1D72F; 03C4; MAP
    [all...]
  /external/icu4c/tools/gensprep/
filterRFC3454.pl 48 "--C4" => \$c4,
121 if($line =~ /C.4/ && defined $c4 ){
652 --C4 Generate data for table C.4
667 e.g.: filterRFC3454.pl --sourcedir=. --destdir=./output --src-filename=rfc3454.txt --dest-filename=NamePrepProfile.txt --A1 --B1 --B2 --C12 --C22 --C3 --C4 --C5 --C6 --C7 --C8 --C9 --normalize --check-bidi

Completed in 910 milliseconds

1 2 3