Lines Matching refs:offset
284 s32 offset; in SecureUncompressLZ() local
313 offset = (*pSrc++ & 0x0f) << 8; in SecureUncompressLZ()
314 offset = (offset | *pSrc++) + 1; in SecureUncompressLZ()
327 if ( &pDst[ -offset ] < destp ) in SecureUncompressLZ()
335 *pDst++ = pDst[ -offset ]; in SecureUncompressLZ()
398 u32 offset = (u32)( ( (*treep & 0x3F) + 1 ) << 1); in VerifyHuffmanTable() local
399 u8* nodep = (u8*)( (((u32)treep >> 1) << 1) + offset ); in VerifyHuffmanTable()
413 u32 left = (idx & ~0x1) + offset; in VerifyHuffmanTable()
418 u32 right = (idx & ~0x1) + offset + 1; in VerifyHuffmanTable()
841 u32 offset = (u32)( ( (*treep & ofs_mask) + 1 ) << 1 ); in LHVerifyTable() local
842 u16* nodep = (u16*)((u32)treep & ~0x3) + offset; in LHVerifyTable()
855 u32 left = (idx & ~0x1) + offset; in LHVerifyTable()
860 u32 right = (idx & ~0x1) + offset + 1; in LHVerifyTable()
972 u32 offset = (((*nodep & 0x7F) + 1U) << 1) + bit; in SecureUncompressLH() local
981 val = *(nodep + offset); in SecureUncompressLH()
987 nodep += offset; in SecureUncompressLH()
1005 u32 offset = (((*nodep & OFFSET_MASK) + 1U) << 1) + bit; in SecureUncompressLH() local
1015 val = *(nodep + offset); in SecureUncompressLH()
1021 nodep += offset; in SecureUncompressLH()
1462 u32 offset = (((length & 0xf) << 8) | (*--pInBtm)) + 3; in SecureUncompressBLZ() local
1465 u8* pTmp = pOut + offset; in SecureUncompressBLZ()