Home
last modified time | relevance | path

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

/RvlSDK-3.2.2/build/libraries/cx/src/
DCXCompression.c79 static u32 SearchLZ ( LZCompressInfo * info, const u8 *nextp, u32 remainSize, u16 *offset…
230 static u32 SearchLZ( LZCompressInfo * info, const u8 *nextp, u32 remainSize, u16 *offset, u32 maxLe… in SearchLZ() argument
247 w_offset = info->LZByteTable[*nextp]; in SearchLZ()
253 searchp = nextp - windowPos + w_offset; in SearchLZ()
257 searchp = nextp - windowLen - windowPos + w_offset; in SearchLZ()
261 if (*(searchp + 1) != *(nextp + 1) || *(searchp + 2) != *(nextp + 2)) in SearchLZ()
267 if (nextp - searchp < 2) in SearchLZ()
277 headp = nextp + 3; in SearchLZ()
280 while (((u32)(headp - nextp) < remainSize) && (*headp == *searchHeadp)) in SearchLZ()
297 maxOffset = (u16)(nextp - searchp); in SearchLZ()