Home | History | Annotate | Download | only in src

Lines Matching defs:A0

452 /*      a0 = (0.5 + b2) / 2                                                             */
477 LVM_INT32 A0;
520 factor = 0x7fff; /* Initialise to 1.0 for the a0 coefficient */
532 A0 = (0x40000000 + B2) >> 1; /* A0 = (0.5 + b2) / 2 */
537 pCoefficients->A0 = (LVM_INT16)(A0>>16);
567 /* a0 = (0.5 + b2) / 2 */
600 LVM_INT32 A0;
642 factor = 0x7fff; /* Initialise to 1.0 for the a0 coefficient */
653 * Calculate the B1 and A0 coefficients
656 A0 = ((B1 >> 16) * (CosErr >> 10)) >> 6; /* Temporary storage for (0.5 - b2) * coserr(t0) */
657 B1 -= A0; /* B1 = (0.5 - b2) * (1 - coserr(t0)) */
658 A0 = (0x40000000 + B2) >> 1; /* A0 = (0.5 + b2) / 2 */
663 pCoefficients->A0 = A0;