Home
last modified time | relevance | path

Searched refs:m_rbAdapt (Results 1 – 2 of 2) sorted by relevance

/haiku/src/add-ons/media/plugins/ape_reader/MAClib/
H A DNewPredictor.cpp61 m_rbAdapt.Flush(); in Flush()
82 m_rbPrediction.Roll(); m_rbAdapt.Roll(); in CompressValue()
105 m_rbAdapt[0] = (m_rbPrediction[-1]) ? ((m_rbPrediction[-1] >> 30) & 2) - 1 : 0; in CompressValue()
106 m_rbAdapt[-1] = (m_rbPrediction[-2]) ? ((m_rbPrediction[-2] >> 30) & 2) - 1 : 0; in CompressValue()
107 m_rbAdapt[-4] = (m_rbPrediction[-5]) ? ((m_rbPrediction[-5] >> 30) & 2) - 1 : 0; in CompressValue()
108 m_rbAdapt[-5] = (m_rbPrediction[-6]) ? ((m_rbPrediction[-6] >> 30) & 2) - 1 : 0; in CompressValue()
112 int * pM = &paryM[-8]; int * pAdapt = &m_rbAdapt[-8]; in CompressValue()
117 int * pM = &paryM[-8]; int * pAdapt = &m_rbAdapt[-8]; in CompressValue()
135 m_rbPrediction.IncrementFast(); m_rbAdapt.IncrementFast(); in CompressValue()
H A DNewPredictor.h35 CRollBufferFast<int, WINDOW_BLOCKS, 9> m_rbAdapt; variable