Lines Matching refs:chSum
1332 LONG chSum[PCM_DMX_MAX_CHANNELS]; in getMixFactors() local
1349 chSum[outCh] = MAX_SEARCH_START_VAL; in getMixFactors()
1354 chSum[outCh] = 0; in getMixFactors()
1362 chSum[outCh] += addFact; in getMixFactors()
1364 if (chSum[outCh] > (LONG)MAXVAL_SGL) { in getMixFactors()
1365 while (chSum[outCh] > (LONG)MAXVAL_SGL) { in getMixFactors()
1367 chSum[outCh] >>= 1; in getMixFactors()
1369 } else if (chSum[outCh] > 0) { in getMixFactors()
1370 while ((chSum[outCh]<<1) <= (LONG)MAXVAL_SGL) { in getMixFactors()
1372 chSum[outCh] <<= 1; in getMixFactors()
1376 chSum[outCh] = ovrflwProtScale; in getMixFactors()
1382 && (chSum[outCh] > chSumMax) ) in getMixFactors()
1384 chSumMax = chSum[outCh]; in getMixFactors()