Lines Matching full:accumulate
320 const bool accumulate =
327 if (accumulate) {
350 downmixInputChannelMask, pSrc, pDst, numFrames, accumulate)) {
360 Downmix_foldFromQuad(pSrc, pDst, numFrames, accumulate);
364 Downmix_foldFrom5Point1(pSrc, pDst, numFrames, accumulate);
367 Downmix_foldFrom7Point1(pSrc, pDst, numFrames, accumulate);
371 downmixInputChannelMask, pSrc, pDst, numFrames, accumulate)) {
811 * accumulate whether to mix (when true) the result of the downmix with the contents of pDst,
819 void Downmix_foldFromQuad(int16_t *pSrc, int16_t*pDst, size_t numFrames, bool accumulate) {
824 if (accumulate) {
857 * accumulate whether to mix (when true) the result of the downmix with the contents of pDst,
865 void Downmix_foldFrom5Point1(int16_t *pSrc, int16_t*pDst, size_t numFrames, bool accumulate) {
873 // code is mostly duplicated between the two values of accumulate to avoid repeating the test
875 if (accumulate) {
884 // accumulate in destination
901 pDst[0] = clamp16(lt >> 13); // differs from when accumulate is true above
902 pDst[1] = clamp16(rt >> 13); // differs from when accumulate is true above
920 * accumulate whether to mix (when true) the result of the downmix with the contents of pDst,
928 void Downmix_foldFrom7Point1(int16_t *pSrc, int16_t*pDst, size_t numFrames, bool accumulate) {
938 // code is mostly duplicated between the two values of accumulate to avoid repeating the test
940 if (accumulate) {
949 //accumulate in destination
966 pDst[0] = clamp16(lt >> 13); // differs from when accumulate is true above
967 pDst[1] = clamp16(rt >> 13); // differs from when accumulate is true above
992 * accumulate whether to mix (when true) the result of the downmix with the contents of pDst,
1003 uint32_t mask, int16_t *pSrc, int16_t*pDst, size_t numFrames, bool accumulate) {
1030 // code is mostly duplicated between the two values of accumulate to avoid repeating the test
1032 if (accumulate) {
1054 // accumulate in destination
1084 pDst[0] = clamp16(lt >> 13); // differs from when accumulate is true above
1085 pDst[1] = clamp16(rt >> 13); // differs from when accumulate is true above