Searched defs:C0 (Results 1 - 5 of 5) sorted by relevance

/external/bluetooth/bluez/sbc/
H A Dsbc_tables.h379 #define C0 1.0932568993 macro
385 F(0.00000000E+00 * C0), F(3.83720193E-03 * C0),
389 F(1.09137620E-02 * C0), F(2.58767811E-02 * C0),
393 F(1.35593274E-01 * C0), F(2.94315332E-01 * C0),
397 -F(1.35593274E-01 * C0), F(2.58767811E-02 * C0),
401 -F(1.09137620E-02 * C0),
417 #undef C0 macro
424 #define C0 macro
462 #undef C0 macro
469 #define C0 macro
555 #undef C0 macro
566 #define C0 macro
652 #undef C0 macro
[all...]
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
H A DAESEngine.java335 private int C0, C1, C2, C3; field in class:AESEngine
426 C0 = (bytes[index++] & 0xff);
427 C0 |= (bytes[index++] & 0xff) << 8;
428 C0 |= (bytes[index++] & 0xff) << 16;
429 C0 |= bytes[index++] << 24;
453 bytes[index++] = (byte)C0;
454 bytes[index++] = (byte)(C0 >> 8);
455 bytes[index++] = (byte)(C0 >> 16);
456 bytes[index++] = (byte)(C0 >> 24);
479 C0
[all...]
H A DAESFastEngine.java666 private int C0, C1, C2, C3; field in class:AESFastEngine
757 C0 = (bytes[index++] & 0xff);
758 C0 |= (bytes[index++] & 0xff) << 8;
759 C0 |= (bytes[index++] & 0xff) << 16;
760 C0 |= bytes[index++] << 24;
784 bytes[index++] = (byte)C0;
785 bytes[index++] = (byte)(C0 >> 8);
786 bytes[index++] = (byte)(C0 >> 16);
787 bytes[index++] = (byte)(C0 >> 24);
809 C0
[all...]
/external/speex/libspeex/
H A Dmath_approx.h131 /*#define C0 3634
137 #define C0 3634 macro
148 rt = ADD16(C0, MULT16_16_Q14(x, ADD16(C1, MULT16_16_Q14(x, ADD16(C2, MULT16_16_Q14(x, (C3)))))));
/external/libvpx/vpx_scale/generic/
H A Dbicubic_scaler.c47 // C0 = a*t - a*t
149 // C0 = -a*t + a*t
151 float C0(float t) function
200 real0 = C0(phase_offset_real) * 4096.0;
439 g_c_w[i*4+3] = (C0(phase_offset) * 4096.0);
445 g_c_h[i*4] = (C0(phase_offset) * 4096.0);
454 g_c_h_uv[i*4] = (C0(phase_offset) * 4096.0);

Completed in 600 milliseconds