Lines Matching refs:HuffData

556 HuffData;                              // Total of 24 bytes  typedef
570 HuffData *huffTable; // huffTable[ 512 ]; 12288B
579 static void HuffCountData( HuffData* table, const u8 *srcp, u32 size, u8 bitSize );
580 static u16 HuffConstructTree( HuffData* table, u32 dataNum );
581 static u32 HuffConvertData( const HuffData *table, const u8* srcp, u8* dstp, u32 srcSize, u32 maxS…
583 static void HuffAddParentDepthToTable( HuffData *table, u16 leftNo, u16 rightNo );
584 static void HuffAddCodeToTable ( HuffData *table, u16 nodeNo, u32 paHuffCode );
585 static u8 HuffAddCountHWordToTable ( HuffData *table, u16 nodeNo );
700 info->huffTable = (HuffData*)(work); in HuffInitTable()
701 info->huffTree = (u8*)( (u32)work + sizeof(HuffData) * 512 ); in HuffInitTable()
707 HuffData* table = info->huffTable; in HuffInitTable()
709 const HuffData HUFF_TABLE_INIT_DATA = { 0, 0, 0, {-1, -1}, 0, 0, 0, 0, 0 }; in HuffInitTable()
742 static void HuffCountData( HuffData* table, const u8 *srcp, u32 size, u8 bitSize ) in HuffCountData()
774 static u16 HuffConstructTree( HuffData *table, u32 dataNum ) in HuffConstructTree()
884 static void HuffAddParentDepthToTable( HuffData *table, u16 leftNo, u16 rightNo ) in HuffAddParentDepthToTable()
902 static void HuffAddCodeToTable( HuffData* table, u16 nodeNo, u32 paHuffCode ) in HuffAddCodeToTable()
917 static u8 HuffAddCountHWordToTable( HuffData *table, u16 nodeNo) in HuffAddCountHWordToTable()
1160 HuffData* huffTable = info->huffTable; in HuffSetOneNodeOffset()
1219 static u32 HuffConvertData( const HuffData *table, const u8* srcp, u8* dstp, u32 srcSize, u32 maxSi… in HuffConvertData()