Lines Matching refs:nodep
399 u8* nodep = (u8*)( (((u32)treep >> 1) << 1) + offset ); in VerifyHuffmanTable() local
407 if ( nodep >= treeEndp ) in VerifyHuffmanTable()
842 u16* nodep = (u16*)((u32)treep & ~0x3) + offset; in LHVerifyTable() local
849 if ( nodep >= treeEndp ) in LHVerifyTable()
968 u16* nodep = huffTable9 + 1; in SecureUncompressLH() local
972 u32 offset = (((*nodep & 0x7F) + 1U) << 1) + bit; in SecureUncompressLH()
978 if ( *nodep & (0x100 >> bit) ) in SecureUncompressLH()
980 nodep = (u16*)((u32)nodep & ~0x3); in SecureUncompressLH()
981 val = *(nodep + offset); in SecureUncompressLH()
986 nodep = (u16*)((u32)nodep & ~0x3); in SecureUncompressLH()
987 nodep += offset; in SecureUncompressLH()
1001 u16* nodep = huffTable12 + 1; in SecureUncompressLH() local
1005 u32 offset = (((*nodep & OFFSET_MASK) + 1U) << 1) + bit; in SecureUncompressLH()
1012 if ( *nodep & (LEAF_FLAG >> bit) ) in SecureUncompressLH()
1014 nodep = (u16*)((u32)nodep & ~0x3); in SecureUncompressLH()
1015 val = *(nodep + offset); in SecureUncompressLH()
1020 nodep = (u16*)((u32)nodep & ~0x3); in SecureUncompressLH()
1021 nodep += offset; in SecureUncompressLH()