Home | History | Annotate | Download | only in src

Lines Matching refs:next_word

55     stream->curr_word |= (stream->next_word >> stream->incnt);   // stream->incnt cannot be 32
56 stream->next_word <<= (31 - stream->incnt);
57 stream->next_word <<= 1;
77 stream->next_word = 0;
81 stream->next_word |= (v[i] << ((3 - i) << 3));
85 stream->curr_word |= (stream->next_word >> num_bits); // this is safe
87 stream->next_word <<= (31 - num_bits);
88 stream->next_word <<= 1;
104 stream->next_word = ((uint32)v[0] << 24) | (v[1] << 16) | (v[2] << 8) | v[3];
107 stream->curr_word |= (stream->next_word >> num_bits); // this is safe
108 stream->next_word <<= (31 - num_bits);
109 stream->next_word <<= 1;
150 stream->curr_word = stream->next_word = 0;
547 stream->next_word = 0;