Lines Matching refs:WORD_SIZE
105 ps_bitstrm->i4_bits_left_in_cw = WORD_SIZE;
131 * bitstream buffer size. Range of length[1:WORD_SIZE]
149 ASSERT(code_len > 0 && code_len <= WORD_SIZE);
151 if(code_len < WORD_SIZE)
155 ASSERT(bits_left_in_cw > 0 && bits_left_in_cw <= WORD_SIZE);
200 if((u4_strm_buf_offset + (WORD_SIZE>>3)) >= u4_max_strm_size)
209 for(i = WORD_SIZE; i > 0; i -= 8)
218 u4_cur_word = rem_bits ? (u4_code_val << (WORD_SIZE - rem_bits)) : 0;
222 ps_bitstrm->i4_bits_left_in_cw = WORD_SIZE - rem_bits;
294 if((u4_strm_buf_offset + (WORD_SIZE>>3) - bytes_left_in_cw) >=
305 //u4_cur_word <<= (WORD_SIZE - bytes_left_in_cw + 1);
307 for(i = WORD_SIZE; i > (bytes_left_in_cw*8); i -= 8)
320 ps_bitstrm->i4_bits_left_in_cw = WORD_SIZE;