Lines Matching refs:stream

586     u32   stream;  member
603 context->stream <<= 8; in BitReader_Read()
604 context->stream += *context->srcp; in BitReader_Read()
610 value = (s32)( (context->stream >> (context->stream_len - bits)) & ((1 << bits) - 1) ); in BitReader_Read()
629 stock = (u8)( context->stream >> 24 ); in BitReader_ReadEx()
631 context->stream <<= 8; in BitReader_ReadEx()
632 context->stream += *context->srcp; in BitReader_ReadEx()
637 value = context->stream; in BitReader_ReadEx()
668 context->stream = 0; in CXInitUncompContextLH()
703 BitReader stream; in CXReadUncompLH() local
708 stream.srcp = srcp; in CXReadUncompLH()
709 stream.cnt = len; in CXReadUncompLH()
710 stream.stream = context->stream; in CXReadUncompLH()
711 stream.stream_len = context->stream_len; in CXReadUncompLH()
716 s64 val32 = BitReader_ReadEx( &stream, 32 ); in CXReadUncompLH()
758 if ( ( val = BitReader_Read( &stream, 16 ) ) < 0 ) in CXReadUncompLH()
768 if ( ( val = BitReader_Read( &stream, LENGTH_BITS ) ) < 0 ) in CXReadUncompLH()
777 if ( ( val = BitReader_Read( &stream, (u8)context->tableSize9 ) ) < 0 ) in CXReadUncompLH()
792 if ( ( val = BitReader_Read( &stream, (OFFSET_BITS > 8)? 16 : 8 ) ) < 0 ) in CXReadUncompLH()
807 if ( ( val = BitReader_Read( &stream, OFFSET_BITS ) ) < 0 ) in CXReadUncompLH()
816 if ( ( val = BitReader_Read( &stream, (u8)context->tableSize12 ) ) < 0 ) in CXReadUncompLH()
842 if ( ( val = BitReader_Read( &stream, 1 ) ) < 0 ) in CXReadUncompLH()
889 if ( ( val = BitReader_Read( &stream, 1 ) ) < 0 ) in CXReadUncompLH()
923 else if ( ( val = BitReader_Read( &stream, (u8)(context->offset_bits - 1) ) ) < 0 ) in CXReadUncompLH()
960 context->stream = stream.stream; in CXReadUncompLH()
961 context->stream_len = stream.stream_len; in CXReadUncompLH()