Home | History | Annotate | Download | only in decoder

Lines Matching refs:u4_offset

52     UWORD32  u4_offset;                  /* Offset in the buffer for the current bit */
69 #define FLUSH_BITS(u4_offset,u4_buf,u4_buf_nxt,u4_no_bits,pu4_buf_aligned) \
73 if (((u4_offset & 0x1f) + u4_no_bits)>= 32) \
81 u4_offset += u4_no_bits; \
85 #define GET_TEMP_STREAM_DATA(u4_buf,u4_buf_nxt,u4_offset,pu4_buf_aligned,stream) \
89 u4_offset = stream->u4_offset; \
94 #define PUT_TEMP_STREAM_DATA(u4_buf,u4_buf_nxt,u4_offset,pu4_buf_aligned,stream) \
98 stream->u4_offset = u4_offset; \
103 #define IBITS_NXT(u4_buf, u4_buf_nxt, u4_offset, u4_bits, no_of_bits) \
108 u4_bit_ptr = u4_offset & 0x1F; \
133 #define IBITS_GET(u4_buf,u4_buf_nxt,u4_offset,u4_bits,pu4_buf_aligned,no_of_bits) \
135 IBITS_NXT(u4_buf, u4_buf_nxt, u4_offset, u4_bits, no_of_bits) \
136 FLUSH_BITS(u4_offset,u4_buf,u4_buf_nxt,no_of_bits,pu4_buf_aligned) \