/device/google/dragon/audio/hal/dsp/ |
D | biquad.c | 30 static void set_coefficient(struct biquad *bq, double b0, double b1, double b2, in set_coefficient() argument 36 bq->b2 = b2 * a0_inv; in set_coefficient() 63 double b2 = 2 * alpha; in biquad_lowpass() local 67 set_coefficient(bq, b0, b1, b2, 1, a1, a2); in biquad_lowpass() 98 double b2 = 2 * alpha; in biquad_highpass() local 102 set_coefficient(bq, b0, b1, b2, 1, a1, a2); in biquad_highpass() 129 double b2 = -alpha; in biquad_bandpass() local 134 set_coefficient(bq, b0, b1, b2, a0, a1, a2); in biquad_bandpass() 175 double b2 = A * (a_plus_one - a_minus_one * k - k2); in biquad_lowshelf() local 180 set_coefficient(bq, b0, b1, b2, a0, a1, a2); in biquad_lowshelf() [all …]
|
D | crossover2.c | 17 lr42->b2 = q.b2; in lr42_set() 43 float32x4_t b2 = {lp->b2, hp->b2, lp->b2, hp->b2}; in lr42_split() local 94 [b2]"w"(b2), in lr42_split() 129 __m128 b2 = {lp->b2, hp->b2, lp->b2, hp->b2}; in lr42_split() local 197 [b2]"x"(b2), in lr42_split() 231 float lb2 = lp->b2; in lr42_split() 243 float hb2 = hp->b2; in lr42_split() 327 float32x4_t b2 = {lp->b2, hp->b2, lp->b2, hp->b2}; in lr42_merge() local 373 [b2]"w"(b2), in lr42_merge() 407 __m128 b2 = {lp->b2, hp->b2, lp->b2, hp->b2}; in lr42_merge() local [all …]
|
D | eq.c | 54 float b2 = q->b2; in eq_process1() local 60 + b1*x1 + b2*x2 in eq_process1() 89 float b2 = q->b2; in eq_process() local 95 + b1*x1 + b2*x2 in eq_process() 116 float qb2 = q->b2; in eq_process() 124 float rb2 = r->b2; in eq_process()
|
D | eq2.c | 64 float b2L = qL->b2; in eq2_process_one() 74 float b2R = qR->b2; in eq2_process_one() 129 float32x2_t qb2 = {qL->b2, qR->b2}; in eq2_process_two_neon() 137 float32x2_t rb2 = {rL->b2, rR->b2}; in eq2_process_two_neon() 222 __m128 qb2 = {qL->b2, qR->b2}; in eq2_process_two_sse3() 230 __m128 rb2 = {rL->b2, rR->b2}; in eq2_process_two_sse3()
|
D | crossover.c | 15 lr4->b2 = q.b2; in lr4_set() 44 float lb2 = lp->b2; in lr4_split() 56 float hb2 = hp->b2; in lr4_split() 117 float lb2 = lp->b2; in lr4_merge() 129 float hb2 = hp->b2; in lr4_merge()
|
D | drc.c | 147 float b2 = z1 * z2; in emphasis_stage_pair_biquads() local 153 float alpha = (a0 + a1 + a2) / (b0 + b1 + b2); in emphasis_stage_pair_biquads() 157 emphasis->b2 = b2 * alpha; in emphasis_stage_pair_biquads() 161 float beta = (b0 + b1 + b2) / (a0 + a1 + a2); in emphasis_stage_pair_biquads() 165 deemphasis->b2 = a2 * beta; in emphasis_stage_pair_biquads() 167 deemphasis->a2 = b2; in emphasis_stage_pair_biquads()
|
D | biquad.h | 22 float b0, b1, b2; member
|
D | crossover.h | 21 float b0, b1, b2; member
|
D | crossover2.h | 24 float b0, b1, b2; member
|
/device/linaro/bootloader/edk2/ShellPkg/Application/ShellSortTestApp/ |
D | ShellSortTestApp.c | 33 Test(CONST VOID *b1, CONST VOID *b2) in Test() argument 35 if (*(INTN*)b1 == *(INTN*)b2) { in Test() 38 if (*(INTN*)b1 < *(INTN*)b2) { in Test()
|
/device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/ |
D | dtoa.c | 127 int bbits, b2, b5, be, dig, i, ieps, ilim0, local 270 b2 = 0; 274 b2 = -j; 283 b2 -= k; 492 m2 = b2; 505 b2 += i; 513 b2 -= i; 562 b2 += Log2P; 584 b2 += i; 590 b2 += i; [all …]
|
D | gdtoa.c | 167 int bbits, b2, b5, be0, dig, i, ieps, ilim = 0, ilim0, ilim1 = 0, inex; in gdtoa() local 279 b2 = 0; in gdtoa() 283 b2 = -j; in gdtoa() 292 b2 -= k; in gdtoa() 510 m2 = b2; in gdtoa() 535 b2 += i; in gdtoa() 541 b2 -= i; in gdtoa() 584 b2++; in gdtoa() 606 b2 += i; in gdtoa() 612 b2 += i; in gdtoa() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
D | classfix.py | 162 (a0, b0), (a1, b1), (a2, b2) = classprog.regs[:3] 169 if a2 == b2: # No base classes -- easy case 173 basepart = line[a2+1:b2]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_bytes.py | 110 b2 = self.type2test([1, 2, 3]) 113 self.assertEqual(b1, b2) 114 self.assertTrue(b2 != b3) 115 self.assertTrue(b1 <= b2) 118 self.assertTrue(b1 >= b2) 119 self.assertTrue(b3 >= b2) 120 self.assertTrue(b3 > b2) 122 self.assertFalse(b1 != b2) 123 self.assertFalse(b2 == b3) 124 self.assertFalse(b1 > b2) [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | lgc.h | 80 #define bit2mask(b1,b2) (bitmask(b1) | bitmask(b2)) argument
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | dtoa.c | 1400 int b2, d2, dd, i, nd, nd0, odd, p2, p5; in bigcomp() local 1445 b2 = p2; in bigcomp() 1449 b2 = 0; in bigcomp() 1453 if ((b2 += i) > 0) { in bigcomp() 1454 b = lshift(b, b2); in bigcomp() 2382 int bbits, b2, b5, be, dig, i, ieps, ilim, ilim0, ilim1, in _Py_dg_dtoa() local 2480 b2 = 0; in _Py_dg_dtoa() 2484 b2 = -j; in _Py_dg_dtoa() 2493 b2 -= k; in _Py_dg_dtoa() 2673 m2 = b2; in _Py_dg_dtoa() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | dtoa.c | 1383 int b2, d2, dd, i, nd, nd0, odd, p2, p5; in bigcomp() local 1428 b2 = p2; in bigcomp() 1432 b2 = 0; in bigcomp() 1436 if ((b2 += i) > 0) { in bigcomp() 1437 b = lshift(b, b2); in bigcomp() 2351 int bbits, b2, b5, be, dig, i, ieps, ilim, ilim0, ilim1, in _Py_dg_dtoa() local 2449 b2 = 0; in _Py_dg_dtoa() 2453 b2 = -j; in _Py_dg_dtoa() 2462 b2 -= k; in _Py_dg_dtoa() 2642 m2 = b2; in _Py_dg_dtoa() [all …]
|
/device/google/accessory/demokit/firmware/demokit/ |
D | demokit.pde | 108 byte b1, b2, b3, b4, c; 131 b2 = digitalRead(BUTTON2); 201 if (b != b2) { 205 b2 = b;
|
/device/linaro/bootloader/edk2/MdePkg/Library/DxeCoreHobLib/ |
D | DxeCoreHobLib.inf | 23 FILE_GUID = 882ee1a3-35b2-412c-b8a2-7a8d34a7c390
|
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/AcpiPlatform/ |
D | AcpiPlatform.inf | 37 FILE_GUID = F0F6F006-DAB4-44b2-A7A1-0F72EEDCA716
|
/device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/bits32/ |
D | softfloat-macros | 286 96-bit value formed by concatenating `b0', `b1', and `b2'. Addition is 299 bits32 b2, 308 z2 = a2 + b2; 343 Subtracts the 96-bit value formed by concatenating `b0', `b1', and `b2' from 357 bits32 b2, 366 z2 = a2 - b2; 367 borrow1 = ( a2 < b2 );
|
/device/linaro/bootloader/edk2/ArmPkg/Library/ArmSoftFloatLib/bits32/ |
D | softfloat-macros | 286 96-bit value formed by concatenating `b0', `b1', and `b2'. Addition is 299 bits32 b2, 308 z2 = a2 + b2; 343 Subtracts the 96-bit value formed by concatenating `b0', `b1', and `b2' from 357 bits32 b2, 366 z2 = a2 - b2; 367 borrow1 = ( a2 < b2 );
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | filecmp.py | 68 b2 = fp2.read(bufsize) 69 if b1 != b2:
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Pei/PeiLib/Ipf/ |
D | SetJmp.s | 138 mov r3 = b2 305 mov b2 = r3
|
/device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/bits64/ |
D | softfloat-macros | 361 192-bit value formed by concatenating `b0', `b1', and `b2'. Addition is 374 bits64 b2, 383 z2 = a2 + b2; 418 Subtracts the 192-bit value formed by concatenating `b0', `b1', and `b2' 432 bits64 b2, 441 z2 = a2 - b2; 442 borrow1 = ( a2 < b2 );
|