Lines Matching refs:offset
318 s32 offset; in ReadUncompLZ() local
420 offset = (context->length & 0xF) << 8; in ReadUncompLZ()
422 offset = (offset | *srcp++) + 1; in ReadUncompLZ()
438 *context->destp = context->destp[ -offset ]; in ReadUncompLZ()
917 u32 offset; in ReadUncompLH() local
925 offset = (((*nodep & 0x7F) + 1U) << 1) + bit; in ReadUncompLH()
930 length = *(nodep + offset); in ReadUncompLH()
937 nodep += offset; in ReadUncompLH()
963 u32 offset; in ReadUncompLH() local
972 offset = (((*nodep & OFFSET_MASK) + 1U) << 1) + bit; in ReadUncompLH()
978 context->offset_bits = (s8)( *(nodep + offset) ); in ReadUncompLH()
980 lzOffset = (u16)( *(nodep + offset) + 1 ); in ReadUncompLH()
987 nodep += offset; in ReadUncompLH()