Lines Matching refs:headerSize
38 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()
207 return (context->headerSize == 0)? context->destCount : -1; in CXReadUncompLZ()
305 while ( context->headerSize > 0 ) in CXReadUncompHuffman()
307 if ( --context->headerSize <= 2 ) in CXReadUncompHuffman()
309 context->destCount |= (*srcp << ((2 - context->headerSize) * 8)); in CXReadUncompHuffman()
318 return (context->headerSize == 0)? context->destCount : -1; in CXReadUncompHuffman()