Home
last modified time | relevance | path

Searched refs:offset_bits (Results 1 – 2 of 2) sorted by relevance

/RvlSDK-3.2/build/libraries/cx/src/
DCXStreamingUncompression.c670 context->offset_bits = -1; in CXInitUncompContextLH()
881 if ( context->offset_bits < 0 ) in CXReadUncompLH()
902 context->offset_bits = (s8)( *(nodep + offset) ); in CXReadUncompLH()
919 if ( context->offset_bits <= 1 ) in CXReadUncompLH()
921 val = context->offset_bits; in CXReadUncompLH()
923 else if ( ( val = BitReader_Read( &stream, (u8)(context->offset_bits - 1) ) ) < 0 ) in CXReadUncompLH()
929 if ( context->offset_bits >= 2 ) in CXReadUncompLH()
931 val |= (1 << (context->offset_bits - 1)); in CXReadUncompLH()
934 context->offset_bits = -1; in CXReadUncompLH()
/RvlSDK-3.2/include/revolution/cx/
DCXStreamingUncompression.h139 s8 offset_bits; // Bit length for offset information: 1B member