Home
last modified time | relevance | path

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

/RvlSDK-3.2/include/revolution/cx/
DCXStreamingUncompression.h82 u8 headerSize; // Size of header being read 1B member
97 u8 headerSize; // Size of header being read: 1B member
117 u8 headerSize; // Size of header being read: 1B member
140 u8 headerSize; // Size of header being read: 1B member
164 u8 headerSize; // Size of header being read: 1B member
320 return (context->destCount > 0 || context->headerSize > 0)? FALSE : TRUE; in CXIsFinishedUncompRL()
336 return (context->destCount > 0 || context->headerSize > 0)? FALSE : TRUE; in CXIsFinishedUncompLZ()
352 return (context->destCount > 0 || context->headerSize > 0)? FALSE : TRUE; in CXIsFinishedUncompHuffman()
368 return (context->destCount > 0 || context->headerSize > 0)? FALSE : TRUE; in CXIsFinishedUncompLH()
383 return (context->destCount > 0 || context->headerSize > 0)? FALSE : TRUE; in CXIsFinishedUncompLRC()
/RvlSDK-3.2/build/libraries/cx/src/
DCXStreamingUncompression.c39 context->headerSize = 8; in CXInitUncompContextRL()
62 context->headerSize = 8; in CXInitUncompContextLZ()
89 context->headerSize = 8; in CXInitUncompContextHuffman()
106 static inline u32 CXiReadHeader( u8* headerSize, s32 *destCount, const u8* srcp, u32 srcSize, s32 f… in CXiReadHeader() argument
109 while ( *headerSize > 0 ) in CXiReadHeader()
111 --(*headerSize); in CXiReadHeader()
112 if ( *headerSize <= 3 ) in CXiReadHeader()
114 *destCount |= (*srcp << ((3 - *headerSize) * 8)); in CXiReadHeader()
116 else if ( *headerSize <= 6 ) in CXiReadHeader()
118 *destCount |= (*srcp << ((6 - *headerSize) * 8)); in CXiReadHeader()
[all …]