Home
last modified time | relevance | path

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

/RvlSDK-2.1/build/libraries/cx/src/
DCXStreamingUncompression.c38 context->headerSize = 4; in CXInitUncompContextRL()
60 context->headerSize = 4; in CXInitUncompContextLZ()
85 context->headerSize = 4; in CXInitUncompContextHuffman()
108 while ( context->headerSize > 0 ) in CXReadUncompRL()
110 if ( --context->headerSize <= 2 ) in CXReadUncompRL()
112 context->destCount |= (*srcp << ((2 - context->headerSize) * 8)); in CXReadUncompRL()
117 return (context->headerSize == 0)? context->destCount : -1; in CXReadUncompRL()
198 while ( context->headerSize > 0 ) in CXReadUncompLZ()
200 if ( --context->headerSize <= 2 ) in CXReadUncompLZ()
202 context->destCount |= (*srcp << ((2 - context->headerSize) * 8)); in CXReadUncompLZ()
[all …]
/RvlSDK-2.1/include/revolution/cx/
DCXStreamingUncompression.h68 u8 headerSize; // Size of header being read 1B member
82 u8 headerSize; // Size of header being read 1B member
100 u8 headerSize; // Size of header being read 1B member
204 return (context->destCount > 0 || context->headerSize > 0)? FALSE : TRUE; in CXIsFinishedUncompRL()
220 return (context->destCount > 0 || context->headerSize > 0)? FALSE : TRUE; in CXIsFinishedUncompLZ()
236 return (context->destCount > 0 || context->headerSize > 0)? FALSE : TRUE; in CXIsFinishedUncompHuffman()