Home | History | Annotate | Download | only in lib_src

Lines Matching refs:acc

140             { /* dpp: EAS_ReportEx(_EAS_SEVERITY_DETAIL, "Predictor: Was %d, now %d\n", pState->decoderL.acc, sTemp); */ }
142 pState->decoderL.acc = pState->decoderL.x1 = sTemp;
157 pState->decoderR.acc = pState->decoderR.x1 = sTemp;
251 pState->acc -= delta;
253 pState->acc += delta;
256 if (pState->acc > 32767)
257 pState->acc = 32767;
258 if (pState->acc < -32768)
259 pState->acc = -32768;
260 pState->x1 = (EAS_PCM) pState->acc;
270 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_DETAIL, "In=%u, Pred=%d, Step=%d\n", nibble, pState->acc, imaStepSizeTable[pState->step]); */ }