Searched refs:curr_word (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dbitstream.cpp55 stream->curr_word |= (stream->next_word >> stream->incnt); // stream->incnt cannot be 32
85 stream->curr_word |= (stream->next_word >> num_bits); // this is safe
107 stream->curr_word |= (stream->next_word >> num_bits); // this is safe
150 stream->curr_word = stream->next_word = 0;
184 *code = stream->curr_word;
202 *code = stream->curr_word >> (32 - nbits);
226 *code = stream->curr_word >> (32 - nbits);
247 *code = stream->curr_word >> 17;
266 *code = stream->curr_word >> 19;
280 code = stream->curr_word >> (3
[all...]
H A Dbitstream.h31 #define PV_BitstreamFlushBits(A,B) {(A)->bitcnt += (B); (A)->incnt -= (B); (A)->curr_word <<= (B);}
62 *code = stream->curr_word >> (32 - nbits);
78 *code = stream->curr_word >> 17;
92 *code = stream->curr_word >> 19;
104 code = stream->curr_word >> (32 - nbits);
119 code = stream->curr_word >> 31;
H A Dmp4lib_int.h36 uint32 curr_word; member in struct:tagBitstream

Completed in 121 milliseconds