Lines Matching refs:stream
591 u32 stream; member
608 context->stream <<= 8; in BitReader_Read()
609 context->stream += *context->srcp; in BitReader_Read()
615 value = (s32)( (context->stream >> (context->stream_len - bits)) & ((1 << bits) - 1) ); in BitReader_Read()
634 stock = (u8)( context->stream >> 24 ); in BitReader_ReadEx()
636 context->stream <<= 8; in BitReader_ReadEx()
637 context->stream += *context->srcp; in BitReader_ReadEx()
642 value = context->stream; in BitReader_ReadEx()
673 context->stream = 0; in CXInitUncompContextLH()
708 BitReader stream; in CXReadUncompLH() local
713 stream.srcp = srcp; in CXReadUncompLH()
714 stream.cnt = len; in CXReadUncompLH()
715 stream.stream = context->stream; in CXReadUncompLH()
716 stream.stream_len = context->stream_len; in CXReadUncompLH()
721 s64 val32 = BitReader_ReadEx( &stream, 32 ); in CXReadUncompLH()
764 if ( ( val = BitReader_Read( &stream, 16 ) ) < 0 ) in CXReadUncompLH()
775 if ( ( val = BitReader_Read( &stream, LENGTH_BITS ) ) < 0 ) in CXReadUncompLH()
787 if ( ( val = BitReader_Read( &stream, (u8)context->tableSize9 ) ) < 0 ) in CXReadUncompLH()
803 if ( ( val = BitReader_Read( &stream, (OFFSET_BITS > 8)? 16 : 8 ) ) < 0 ) in CXReadUncompLH()
818 if ( ( val = BitReader_Read( &stream, OFFSET_BITS ) ) < 0 ) in CXReadUncompLH()
830 if ( ( val = BitReader_Read( &stream, (u8)context->tableSize12 ) ) < 0 ) in CXReadUncompLH()
857 if ( ( val = BitReader_Read( &stream, 1 ) ) < 0 ) in CXReadUncompLH()
904 if ( ( val = BitReader_Read( &stream, 1 ) ) < 0 ) in CXReadUncompLH()
938 else if ( ( val = BitReader_Read( &stream, (u8)(context->offset_bits - 1) ) ) < 0 ) in CXReadUncompLH()
975 context->stream = stream.stream; in CXReadUncompLH()
976 context->stream_len = stream.stream_len; in CXReadUncompLH()
981 (stream.stream_len > 32) ) in CXReadUncompLH()