/external/bluetooth/bluez/sbc/ |
D | sbc_tables.h | 382 #define C3 1.6772280856 macro 388 F(0.00000000E+00 * C3), -F(1.49188357E-03 * C3), 392 F(0.00000000E+00 * C3), -F(2.88757392E-02 * C3), 396 F(0.00000000E+00 * C3), -F(2.46636662E-01 * C3), 400 F(0.00000000E+00 * C3), F(2.88217274E-02 * C3), 404 F(0.00000000E+00 * C3), -F(1.86581691E-03 * C3), 411 F(0.3826834324 / C2), -F(1.0000000000 / C3), 412 -F(0.9238795325 / C2), -F(1.0000000000 / C3), 413 F(0.9238795325 / C2), -F(1.0000000000 / C3), 414 -F(0.3826834324 / C2), -F(1.0000000000 / C3), [all …]
|
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/ |
D | AESFastEngine.java | 666 private int C0, C1, C2, C3; field in AESFastEngine 772 C3 = (bytes[index++] & 0xff); in unpackBlock() 773 C3 |= (bytes[index++] & 0xff) << 8; in unpackBlock() 774 C3 |= (bytes[index++] & 0xff) << 16; in unpackBlock() 775 C3 |= bytes[index++] << 24; in unpackBlock() 799 bytes[index++] = (byte)C3; in packBlock() 800 bytes[index++] = (byte)(C3 >> 8); in packBlock() 801 bytes[index++] = (byte)(C3 >> 16); in packBlock() 802 bytes[index++] = (byte)(C3 >> 24); in packBlock() 812 C3 ^= KW[0][3]; in encryptBlock() [all …]
|
D | AESEngine.java | 335 private int C0, C1, C2, C3; field in AESEngine 441 C3 = (bytes[index++] & 0xff); in unpackBlock() 442 C3 |= (bytes[index++] & 0xff) << 8; in unpackBlock() 443 C3 |= (bytes[index++] & 0xff) << 16; in unpackBlock() 444 C3 |= bytes[index++] << 24; in unpackBlock() 468 bytes[index++] = (byte)C3; in packBlock() 469 bytes[index++] = (byte)(C3 >> 8); in packBlock() 470 bytes[index++] = (byte)(C3 >> 16); in packBlock() 471 bytes[index++] = (byte)(C3 >> 24); in packBlock() 482 C3 ^= KW[0][3]; in encryptBlock() [all …]
|
/external/clang/test/CodeGenCXX/ |
D | vtable-layout-extreme.cpp | 21 class C3 class 33 , virtual public C3 43 , virtual public C3 48 : virtual public C3 59 , virtual public C3 69 , public C3
|
D | vtt-layout.cpp | 36 class C3 : public X1 { int i; }; class 37 class D : public C1, public C2, public C3 { int i; }; 55 class C3 : public X1 { int i; }; class 56 class D : public C1, public C2, public C3 { int i; };
|
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
D | deduction.cpp | 32 template<int C1, char C3> 33 struct char_values<C1, 12, C3> { 43 template<unsigned char C1, unsigned char C3> 44 struct int_values<C1, 12, C3> {
|
/external/v8/test/mjsunit/ |
D | setter-on-constructor-prototype.js | 62 function C3() { class in RunTest 65 C3.prototype = { }; class 66 C3.prototype.__defineSetter__('x', function(value) { this.y = 23; }); 68 %ToFastProperties(C3.prototype); 72 var c3 = new C3();
|
/external/v8/test/mjsunit/bugs/ |
D | 618.js | 59 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/FixIt/ |
D | fixit.cpp | 24 class C3 { class 26 C3(C3, int i = 0); // expected-error{{copy constructor must pass its first argument by reference}}
|
/external/webkit/LayoutTests/fast/encoding/ |
D | char-encoding-mac-expected.txt | 6 PASS encode('mac', 'U+221A') is '%C3' 7 PASS encode('macintosh', 'U+221A') is '%C3' 8 PASS encode('MacRoman', 'U+221A') is '%C3'
|
D | char-decoding-mac-expected.txt | 6 PASS decode('mac', '%C3') is 'U+221A' 7 PASS decode('macintosh', '%C3') is 'U+221A' 8 PASS decode('MacRoman', '%C3') is 'U+221A'
|
/external/clang/test/CXX/temp/temp.decls/temp.class.spec/ |
D | p9.cpp | 21 template<unsigned char C1, unsigned char C3> 22 struct int_values<C1, 12, C3> {
|
/external/speex/libspeex/ |
D | math_approx.h | 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))))))); in spx_sqrt() 311 #define C3 0.0414877472f macro 321 return C1 + x*(C2+x*(C3+C4*x)); in spx_cos() 325 return NEG16(C1 + x*(C2+x*(C3+C4*x))); in spx_cos()
|
/external/fdlibm/ |
D | k_cos.c | 59 C3 = 2.48015872894767294178e-05, /* 0x3EFA01A0, 0x19CB1590 */ variable 78 r = z*(C1+z*(C2+z*(C3+z*(C4+z*(C5+z*C6)))));
|
/external/clang/test/Sema/ |
D | warn-unreachable.c | 102 enum Cases { C1, C2, C3 }; enumerator 107 case C3: in test_enum_cases()
|
D | return.c | 249 enum Cases { C1, C2, C3, C4 }; enumerator 255 case C3: return 4; in test_enum_cases()
|
/external/llvm/test/Transforms/InstCombine/ |
D | narrow.ll | 14 %C3 = and i32 %ELIM1, %ELIM2 ; <i32> [#uses=1] 15 %ELIM3 = trunc i32 %C3 to i1 ; <i1> [#uses=1]
|
/external/clang/test/SemaCXX/ |
D | class.cpp | 87 struct C3 { struct 93 const C3 c3 = { 1, 2 }; in f() argument
|
/external/llvm/lib/VMCore/ |
D | ConstantsContext.h | 75 SelectConstantExpr(Constant *C1, Constant *C2, Constant *C3) in SelectConstantExpr() argument 79 Op<2>() = C3; in SelectConstantExpr() 115 InsertElementConstantExpr(Constant *C1, Constant *C2, Constant *C3) in InsertElementConstantExpr() argument 120 Op<2>() = C3; in InsertElementConstantExpr() 136 ShuffleVectorConstantExpr(Constant *C1, Constant *C2, Constant *C3) in ShuffleVectorConstantExpr() argument 139 cast<VectorType>(C3->getType())->getNumElements()), in ShuffleVectorConstantExpr() 144 Op<2>() = C3; in ShuffleVectorConstantExpr()
|
/external/libvpx/vpx_scale/generic/ |
D | bicubic_scaler.c | 175 float C3(float t) in C3() function 218 real3 = C3(phase_offset_real) * 4096.0; 436 g_c_w[i*4] = (C3(phase_offset) * 4096.0); in bicubic_coefficient_setup() 448 g_c_h[i*4+3] = (C3(phase_offset) * 4096.0); in bicubic_coefficient_setup() 457 g_c_h_uv[i*4+3] = (C3(phase_offset) * 4096.0); in bicubic_coefficient_setup()
|
/external/icu4c/data/sprep/ |
D | rfc3722.txt | 13 …54.txt --dest-filename=rfc3722.txt --A1 --B1 --B2 -C11 --C12 --C21 --C22 --C3 --C4 --C5 --C6 --C7 … 454 …54.txt --dest-filename=rfc3722.txt --A1 --B1 --B2 -C11 --C12 --C21 --C22 --C3 --C4 --C5 --C6 --C7 … 489 00C3; 00E3; MAP 704 03A3; 03C3; MAP 714 03C2; 03C3; MAP 736 03F2; 03C3; MAP 832 04C3; 04C4; MAP 1243 24C3; 24DD; MAP 1293 33C3; 0062 0071; MAP 1718 1D6BA; 03C3; MAP [all …]
|
D | rfc3920node.txt | 13 …xt --dest-filename=rfc3920node.txt --A1 --B1 --B2 -C11 --C12 --C21 --C22 --C3 --C4 --C5 --C6 --C7 … 454 …xt --dest-filename=rfc3920node.txt --A1 --B1 --B2 -C11 --C12 --C21 --C22 --C3 --C4 --C5 --C6 --C7 … 489 00C3; 00E3; MAP 704 03A3; 03C3; MAP 714 03C2; 03C3; MAP 736 03F2; 03C3; MAP 832 04C3; 04C4; MAP 1243 24C3; 24DD; MAP 1293 33C3; 0062 0071; MAP 1718 1D6BA; 03C3; MAP [all …]
|
D | rfc3530csci.txt | 13 …-src-filename=rfc3454.txt --dest-filename=rfc3530csci.txt --A1 --B1 --B2 --C3 --C4 --C5 --C6 --C7 … 453 …-src-filename=rfc3454.txt --dest-filename=rfc3530csci.txt --A1 --B1 --B2 --C3 --C4 --C5 --C6 --C7 … 488 00C3; 00E3; MAP 703 03A3; 03C3; MAP 713 03C2; 03C3; MAP 735 03F2; 03C3; MAP 831 04C3; 04C4; MAP 1242 24C3; 24DD; MAP 1292 33C3; 0062 0071; MAP 1717 1D6BA; 03C3; MAP [all …]
|
D | rfc3491.txt | 13 …ename=rfc3454.txt --dest-filename=rfc3491.txt --A1 --B1 --B2 --C12 --C22 --C3 --C4 --C5 --C6 --C7 … 454 …ename=rfc3454.txt --dest-filename=rfc3491.txt --A1 --B1 --B2 --C12 --C22 --C3 --C4 --C5 --C6 --C7 … 489 00C3; 00E3; MAP 704 03A3; 03C3; MAP 714 03C2; 03C3; MAP 736 03F2; 03C3; MAP 832 04C3; 04C4; MAP 1243 24C3; 24DD; MAP 1293 33C3; 0062 0071; MAP 1718 1D6BA; 03C3; MAP [all …]
|
D | rfc4518ci.txt | 13 …-src-filename=rfc3454.txt --dest-filename=rfc4518ci.txt --A1 --ldap --B2 --C3 --C4 --C5 --C8 --nor… 421 …-src-filename=rfc3454.txt --dest-filename=rfc4518ci.txt --A1 --ldap --B2 --C3 --C4 --C5 --C8 --nor… 456 00C3; 00E3; MAP 671 03A3; 03C3; MAP 681 03C2; 03C3; MAP 703 03F2; 03C3; MAP 799 04C3; 04C4; MAP 1210 24C3; 24DD; MAP 1260 33C3; 0062 0071; MAP 1685 1D6BA; 03C3; MAP [all …]
|