Lines Matching refs:m_u4_bit_ofst
59 #define GET_STREAM(m_ps_bitstrm, m_pu4_buf, m_u4_bit_ofst, \ argument
63 m_u4_bit_ofst = m_ps_bitstrm->u4_bit_ofst; \
73 #define SET_STREAM(m_ps_bitstrm, m_pu4_buf, m_u4_bit_ofst, \ argument
77 m_ps_bitstrm->u4_bit_ofst = m_u4_bit_ofst; \
90 #define BITS_NXT(m_u4_bits, m_pu4_buf, m_u4_bit_ofst, \ argument
93 m_u4_bits = (m_u4_cur_word << m_u4_bit_ofst) >> \
96 if(m_u4_bit_ofst > (WORD_SIZE - m_cnt)) \
100 - m_u4_bit_ofst)); \
111 #define BITS_NXT32(m_u4_bits, m_pu4_buf, m_u4_bit_ofst, \ argument
114 m_u4_bits = (m_u4_cur_word << m_u4_bit_ofst); \
116 m_u4_bits |= SHR(m_u4_nxt_word, (WORD_SIZE - m_u4_bit_ofst)); \
126 #define BITS_FLUSH(m_pu4_buf, m_u4_bit_ofst, m_u4_cur_word, \ argument
131 m_u4_bit_ofst += m_cnt; \
132 if( m_u4_bit_ofst >= WORD_SIZE ) \
138 m_u4_bit_ofst -= WORD_SIZE; \
149 #define BITS_GET(m_u4_bits, m_pu4_buf, m_u4_bit_ofst, \ argument
152 m_u4_bits = (m_u4_cur_word << m_u4_bit_ofst) \
154 m_u4_bit_ofst += m_cnt; \
155 if(m_u4_bit_ofst > WORD_SIZE) \
158 (DBL_WORD_SIZE - m_u4_bit_ofst)); \
161 if( m_u4_bit_ofst >= WORD_SIZE ) \
168 m_u4_bit_ofst -= WORD_SIZE; \
181 #define BIT_GET(m_u4_bits,m_pu4_buf,m_u4_bit_ofst, \ argument
184 m_u4_bits = (m_u4_cur_word << m_u4_bit_ofst) \
186 m_u4_bit_ofst++; \
188 if(m_u4_bit_ofst == WORD_SIZE) \
195 m_u4_bit_ofst = 0; \