Searched refs:nodep (Results 1 – 4 of 4) sorted by relevance
668 context->nodep = context->huffTable9 + 1; in CXInitUncompContextLH()710 u16* nodep; in CXReadUncompLH() local844 nodep = context->nodep; in CXReadUncompLH()859 context->nodep = nodep; in CXReadUncompLH()864 offset = (((*nodep & 0x7F) + 1U) << 1) + bit; in CXReadUncompLH()866 if ( *nodep & (0x100 >> bit) ) in CXReadUncompLH()868 nodep = (u16*)((u32)nodep & ~0x3); in CXReadUncompLH()869 length = *(nodep + offset); in CXReadUncompLH()870 nodep = context->huffTable12 + 1; in CXReadUncompLH()875 nodep = (u16*)((u32)nodep & ~0x3); in CXReadUncompLH()[all …]
509 u16* nodep = huffTable9 + 1; in CXUncompressLH() local514 u32 offset = (((*nodep & 0x7F) + 1U) << 1) + bit; in CXUncompressLH()516 if ( *nodep & (0x100 >> bit) ) in CXUncompressLH()518 nodep = (u16*)((u32)nodep & ~0x3); in CXUncompressLH()519 val = *(nodep + offset); in CXUncompressLH()524 nodep = (u16*)((u32)nodep & ~0x3); in CXUncompressLH()525 nodep += offset; in CXUncompressLH()538 u16* nodep = huffTable12 + 1; in CXUncompressLH() local542 u32 offset = (((*nodep & OFFSET_MASK) + 1U) << 1) + bit; in CXUncompressLH()544 if ( *nodep & (LEAF_FLAG >> bit) ) in CXUncompressLH()[all …]
387 u8* nodep = (u8*)( (((u32)treep >> 1) << 1) + offset ); in CXiVerifyHuffmanTable_() local395 if ( nodep >= treeEndp ) in CXiVerifyHuffmanTable_()812 u16* nodep = (u16*)((u32)treep & ~0x3) + offset; in CXiLHVerifyTable() local819 if ( nodep >= treeEndp ) in CXiLHVerifyTable()928 u16* nodep = huffTable9 + 1; in CXSecureUncompressLH() local933 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()[all …]
132 u16 *nodep; // Node during a Huffman table search: 4B member