Lines Matching refs:nodep
387 u8* nodep = (u8*)( (((u32)treep >> 1) << 1) + offset ); in CXiVerifyHuffmanTable_() local
395 if ( nodep >= treeEndp ) in CXiVerifyHuffmanTable_()
812 u16* nodep = (u16*)((u32)treep & ~0x3) + offset; in CXiLHVerifyTable() local
819 if ( nodep >= treeEndp ) in CXiLHVerifyTable()
928 u16* nodep = huffTable9 + 1; in CXSecureUncompressLH() local
933 u32 offset = (((*nodep & 0x7F) + 1U) << 1) + bit; in CXSecureUncompressLH()
939 if ( *nodep & (0x100 >> bit) ) in CXSecureUncompressLH()
941 nodep = (u16*)((u32)nodep & ~0x3); in CXSecureUncompressLH()
942 val = *(nodep + offset); in CXSecureUncompressLH()
947 nodep = (u16*)((u32)nodep & ~0x3); in CXSecureUncompressLH()
948 nodep += offset; in CXSecureUncompressLH()
961 u16* nodep = huffTable12 + 1; in CXSecureUncompressLH() local
965 u32 offset = (((*nodep & OFFSET_MASK) + 1U) << 1) + bit; in CXSecureUncompressLH()
972 if ( *nodep & (LEAF_FLAG >> bit) ) in CXSecureUncompressLH()
974 nodep = (u16*)((u32)nodep & ~0x3); in CXSecureUncompressLH()
975 val = *(nodep + offset); in CXSecureUncompressLH()
980 nodep = (u16*)((u32)nodep & ~0x3); in CXSecureUncompressLH()
981 nodep += offset; in CXSecureUncompressLH()