Home
last modified time | relevance | path

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

/CTR-SDK-4.2.8-20130828/sources/libraries/cx/
Dcx_StreamingUncompression.cpp714 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()
[all …]
Dcx_SecureUncompression.cpp399 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()
[all …]
Dcx_Uncompression.cpp530 u16* nodep = huffTable9 + 1; in UncompressLH() local
534 u32 offset = (((*nodep & 0x7F) + 1U) << 1) + bit; in UncompressLH()
536 if ( *nodep & (0x100 >> bit) ) in UncompressLH()
538 nodep = (u16*)((u32)nodep & ~0x3); in UncompressLH()
539 val = *(nodep + offset); in UncompressLH()
544 nodep = (u16*)((u32)nodep & ~0x3); in UncompressLH()
545 nodep += offset; in UncompressLH()
559 u16* nodep = huffTable12 + 1; in UncompressLH() local
563 u32 offset = (((*nodep & OFFSET_MASK) + 1U) << 1) + bit; in UncompressLH()
565 if ( *nodep & (LEAF_FLAG >> bit) ) in UncompressLH()
[all …]
/CTR-SDK-4.2.8-20130828/include/nn/cx/
Dcx_StreamingUncompression.h94 u16 *nodep; // member