Home
last modified time | relevance | path

Searched refs:nodep (Results 1 – 4 of 4) sorted by relevance

/RvlSDK-3.3/build/libraries/cx/src/
DCXStreamingUncompression.c668 context->nodep = context->huffTable9 + 1; in CXInitUncompContextLH()
710 u16* nodep; in CXReadUncompLH() local
844 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 …]
DCXUncompression.c509 u16* nodep = huffTable9 + 1; in CXUncompressLH() local
514 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() local
542 u32 offset = (((*nodep & OFFSET_MASK) + 1U) << 1) + bit; in CXUncompressLH()
544 if ( *nodep & (LEAF_FLAG >> bit) ) in CXUncompressLH()
[all …]
DCXSecureUncompression.c387 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()
[all …]
/RvlSDK-3.3/include/revolution/cx/
DCXStreamingUncompression.h132 u16 *nodep; // Node during a Huffman table search: 4B member