Searched refs:nOutput (Results 1 - 3 of 3) sorted by relevance

/haiku/src/add-ons/media/plugins/ape_reader/MAClib/
H A DNNFilter.cpp50 int nOutput = nInput - ((nDotProduct + (1 << (m_nShift - 1))) >> m_nShift); local
54 Adapt(&m_paryM[0], &m_rbDeltaM[-m_nOrder], -nOutput, m_nOrder);
56 AdaptNoMMX(&m_paryM[0], &m_rbDeltaM[-m_nOrder], nOutput, m_nOrder);
79 return nOutput;
99 int nOutput = nInput + ((nDotProduct + (1 << (m_nShift - 1))) >> m_nShift); local
102 m_rbInput[0] = GetSaturatedShortFromInt(nOutput);
106 int nTempABS = abs(nOutput);
109 m_rbDeltaM[0] = ((nOutput >> 25) & 64) - 32;
111 m_rbDeltaM[0] = ((nOutput >> 26) & 32) - 16;
113 m_rbDeltaM[0] = ((nOutput >> 2
[all...]
H A DStartFilter.h75 int nOutput = nA - (nTotalPrediction >> 13); local
77 if (nOutput > 0)
84 else if (nOutput < 0)
92 nA = nOutput;
102 int nOutput = nB - (nTotalPrediction >> 13); local
104 if (nOutput > 0)
111 else if (nOutput < 0)
119 nB = nOutput;
139 int nOutput = nInput - (nTotalPrediction >> 13);
141 if (nOutput >
[all...]
H A DNewPredictor.cpp102 int nOutput = nA - ((nPredictionA + (nPredictionB >> 1)) >> 10); local
110 if (nOutput > 0)
115 else if (nOutput < 0)
124 nOutput = m_pNNFilter->Compress(nOutput);
128 nOutput = m_pNNFilter1->Compress(nOutput);
131 nOutput = m_pNNFilter2->Compress(nOutput);
138 return nOutput;
[all...]

Completed in 70 milliseconds