Lines Matching refs:offset
273 s32 offset; in CXSecureUncompressLZ() local
302 offset = (*pSrc++ & 0x0f) << 8; in CXSecureUncompressLZ()
303 offset = (offset | *pSrc++) + 1; in CXSecureUncompressLZ()
316 if ( &pDst[ -offset ] < destp ) in CXSecureUncompressLZ()
324 *pDst++ = pDst[ -offset ]; in CXSecureUncompressLZ()
386 u32 offset = (u32)( ( (*treep & 0x3F) + 1 ) << 1); in CXiVerifyHuffmanTable_() local
387 u8* nodep = (u8*)( (((u32)treep >> 1) << 1) + offset ); in CXiVerifyHuffmanTable_()
401 u32 left = (idx & ~0x1) + offset; in CXiVerifyHuffmanTable_()
406 u32 right = (idx & ~0x1) + offset + 1; in CXiVerifyHuffmanTable_()
811 u32 offset = (u32)( ( (*treep & ofs_mask) + 1 ) << 1 ); in CXiLHVerifyTable() local
812 u16* nodep = (u16*)((u32)treep & ~0x3) + offset; in CXiLHVerifyTable()
825 u32 left = (idx & ~0x1) + offset; in CXiLHVerifyTable()
830 u32 right = (idx & ~0x1) + offset + 1; in CXiLHVerifyTable()
933 u32 offset = (((*nodep & 0x7F) + 1U) << 1) + bit; in CXSecureUncompressLH() local
942 val = *(nodep + offset); in CXSecureUncompressLH()
948 nodep += offset; in CXSecureUncompressLH()
965 u32 offset = (((*nodep & OFFSET_MASK) + 1U) << 1) + bit; in CXSecureUncompressLH() local
975 val = *(nodep + offset); in CXSecureUncompressLH()
981 nodep += offset; in CXSecureUncompressLH()