Home | History | Annotate | Download | only in src

Lines Matching defs:ws1

472 	Word32 ws1,ws2;
501 ws1 = timeSignalSample * (*winPtr >> 16);
506 *outData0++ = (ws1 >> 2) - (ws2 >> 2);
518 ws1 = timeSignalSample * (*winPtr & 0xffff);
523 *outData0-- = -((ws1 >> 2) + (ws2 >> 2));
548 ws1 = timeSignalSample * (*winPtr >> 16);
552 *outData0++ = (ws1 >> 2) - (ws2 >> 2); /* shift 2 to avoid overflow next */
569 ws1 = timeSignalSample * (*winPtr & 0xffff);
573 *outData0-- = -((ws1 >> 2) + (ws2 >> 2)); /* shift 2 to avoid overflow next */
605 ws1 = timeSignalSample * (*winPtr >> 16);
609 *outData0++ = (ws1 >> 2) - (ws2 >> 2); /* shift 2 to avoid overflow next */
621 ws1 = timeSignalSample *(*winPtr & 0xffff);
624 *outData0-- = -((ws1 >> 2) + (ws2 >> 2)); /* shift 2 to avoid overflow next */
651 ws1 = timeSignalSample * (*winPtr >> 16);
654 *outData0++ = (ws1 >> 2) - (ws2 >> 2); /* shift 2 to avoid overflow next */
657 ws1 = timeSignalSample * (*winPtr & 0xffff);
660 *outData1-- = -((ws1 >> 2) + (ws2 >> 2)); /* shift 2 to avoid overflow next */