Home | History | Annotate | Download | only in src

Lines Matching defs:Shift

28 pBiquadState->Shift    is Shift value
130 LVM_INT16 Shift;
136 Shift = pBiquadState->Shift;
178 /*Apply shift: Instead of left shift on 16-bit result, right shift of (15-shift) is applied
180 ynL = ynL>>(15-Shift);
181 ynR = ynR>>(15-Shift);