Home
last modified time | relevance | path

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

/RvlSDK-2.1/build/libraries/cx/src/
DCXCompression.c63 static u8 SearchLZ ( LZCompressInfo * info, const u8 *nextp, u32 remainSize, u16 *offset…
174 static u8 SearchLZ( LZCompressInfo * info, const u8 *nextp, u32 remainSize, u16 *offset ) in SearchLZ() argument
191 w_offset = info->LZByteTable[*nextp]; in SearchLZ()
197 searchp = nextp - windowPos + w_offset; in SearchLZ()
201 searchp = nextp - windowLen - windowPos + w_offset; in SearchLZ()
205 if (*(searchp + 1) != *(nextp + 1) || *(searchp + 2) != *(nextp + 2)) in SearchLZ()
211 if (nextp - searchp < 2) in SearchLZ()
221 headp = nextp + 3; in SearchLZ()
224 while (((u32)(headp - nextp) < remainSize) && (*headp == *searchHeadp)) in SearchLZ()
241 maxOffset = (u16)(nextp - searchp); in SearchLZ()