Lines Matching refs:offset
279 s32 offset; in CXReadUncompLZ() local
381 offset = (context->length & 0xF) << 8; in CXReadUncompLZ()
383 offset = (offset | *srcp++) + 1; in CXReadUncompLZ()
399 *context->destp = context->destp[ -offset ]; in CXReadUncompLZ()
856 u32 offset; in CXReadUncompLH() local
864 offset = (((*nodep & 0x7F) + 1U) << 1) + bit; in CXReadUncompLH()
869 length = *(nodep + offset); in CXReadUncompLH()
876 nodep += offset; in CXReadUncompLH()
902 u32 offset; in CXReadUncompLH() local
911 offset = (((*nodep & OFFSET_MASK) + 1U) << 1) + bit; in CXReadUncompLH()
917 context->offset_bits = (s8)( *(nodep + offset) ); in CXReadUncompLH()
919 lzOffset = (u16)( *(nodep + offset) + 1 ); in CXReadUncompLH()
926 nodep += offset; in CXReadUncompLH()