Lines Matching refs:stream

635     u32   stream;  member
651 context->stream <<= 8; in BitReader_Read()
652 context->stream += *context->srcp; in BitReader_Read()
658 value = (s32)( (context->stream >> (context->stream_len - bits)) & ((1 << bits) - 1) ); in BitReader_Read()
677 stock = (u8)( context->stream >> 24 ); in BitReader_ReadEx()
679 context->stream <<= 8; in BitReader_ReadEx()
680 context->stream += *context->srcp; in BitReader_ReadEx()
685 value = context->stream; in BitReader_ReadEx()
719 context->stream = 0; in InitUncompContextLH()
755 BitReader stream; in ReadUncompLH() local
760 stream.srcp = srcp; in ReadUncompLH()
761 stream.cnt = len; in ReadUncompLH()
762 stream.stream = context->stream; in ReadUncompLH()
763 stream.stream_len = context->stream_len; in ReadUncompLH()
768 s64 val32 = BitReader_ReadEx( &stream, 32 ); in ReadUncompLH()
811 if ( ( val = BitReader_Read( &stream, 16 ) ) < 0 ) in ReadUncompLH()
824 if ( ( val = BitReader_Read( &stream, LENGTH_BITS ) ) < 0 ) in ReadUncompLH()
840 if ( ( val = BitReader_Read( &stream, (u8)context->tableSize9 ) ) < 0 ) in ReadUncompLH()
857 if ( ( val = BitReader_Read( &stream, (OFFSET_BITS > 8)? 16 : 8 ) ) < 0 ) in ReadUncompLH()
874 if ( ( val = BitReader_Read( &stream, OFFSET_BITS ) ) < 0 ) in ReadUncompLH()
890 if ( ( val = BitReader_Read( &stream, (u8)context->tableSize12 ) ) < 0 ) in ReadUncompLH()
918 if ( ( val = BitReader_Read( &stream, 1 ) ) < 0 ) in ReadUncompLH()
965 if ( ( val = BitReader_Read( &stream, 1 ) ) < 0 ) in ReadUncompLH()
999 else if ( ( val = BitReader_Read( &stream, (u8)(context->offset_bits - 1) ) ) < 0 ) in ReadUncompLH()
1036 context->stream = stream.stream; in ReadUncompLH()
1037 context->stream_len = stream.stream_len; in ReadUncompLH()
1043 (stream.cnt > 32) ) in ReadUncompLH()