Lines Matching refs:nodep
714 context->nodep = context->huffTable9 + 1; in InitUncompContextLH()
757 u16* nodep; in ReadUncompLH() local
905 nodep = context->nodep; in ReadUncompLH()
920 context->nodep = nodep; in ReadUncompLH()
925 offset = (((*nodep & 0x7F) + 1U) << 1) + bit; in ReadUncompLH()
927 if ( *nodep & (0x100 >> bit) ) in ReadUncompLH()
929 nodep = (u16*)((u32)nodep & ~0x3); in ReadUncompLH()
930 length = *(nodep + offset); in ReadUncompLH()
931 nodep = context->huffTable12 + 1; in ReadUncompLH()
936 nodep = (u16*)((u32)nodep & ~0x3); in ReadUncompLH()
937 nodep += offset; in ReadUncompLH()
947 nodep = context->huffTable9 + 1; in ReadUncompLH()
967 context->nodep = nodep; in ReadUncompLH()
972 offset = (((*nodep & OFFSET_MASK) + 1U) << 1) + bit; in ReadUncompLH()
974 if ( *nodep & (LEAF_FLAG >> bit) ) in ReadUncompLH()
976 nodep = (u16*)((u32)nodep & ~0x3); in ReadUncompLH()
978 context->offset_bits = (s8)( *(nodep + offset) ); in ReadUncompLH()
980 lzOffset = (u16)( *(nodep + offset) + 1 ); in ReadUncompLH()
986 nodep = (u16*)((u32)nodep & ~0x3); in ReadUncompLH()
987 nodep += offset; in ReadUncompLH()
1001 context->nodep = nodep; in ReadUncompLH()
1031 nodep = context->huffTable9 + 1; in ReadUncompLH()