Lines Matching refs:HuffData

491 HuffData;                              // Total of 24 bytes  typedef
505 HuffData *huffTable; // huffTable[ 512 ]; 12288B
514 static void HuffCountData( HuffData* table, const u8 *srcp, u32 size, u8 bitSize );
515 static u16 HuffConstructTree( HuffData* table, u32 dataNum );
516 static u32 HuffConvertData( const HuffData *table, const u8* srcp, u8* dstp, u32 srcSize, u32 maxS…
518 static void HuffAddParentDepthToTable( HuffData *table, u16 leftNo, u16 rightNo );
519 static void HuffAddCodeToTable ( HuffData *table, u16 nodeNo, u32 paHuffCode );
520 static u8 HuffAddCountHWordToTable ( HuffData *table, u16 nodeNo );
623 info->huffTable = (HuffData*)(work); in HuffInitTable()
624 info->huffTree = (u8*)( (u32)work + sizeof(HuffData) * 512 ); in HuffInitTable()
630 HuffData* table = info->huffTable; in HuffInitTable()
632 const HuffData HUFF_TABLE_INIT_DATA = { 0, 0, 0, {-1, -1}, 0, 0, 0, 0, 0 }; in HuffInitTable()
665 static void HuffCountData( HuffData* table, const u8 *srcp, u32 size, u8 bitSize ) in HuffCountData()
697 static u16 HuffConstructTree( HuffData *table, u32 dataNum ) in HuffConstructTree()
807 static void HuffAddParentDepthToTable( HuffData *table, u16 leftNo, u16 rightNo ) in HuffAddParentDepthToTable()
825 static void HuffAddCodeToTable( HuffData* table, u16 nodeNo, u32 paHuffCode ) in HuffAddCodeToTable()
840 static u8 HuffAddCountHWordToTable( HuffData *table, u16 nodeNo) in HuffAddCountHWordToTable()
1083 HuffData* huffTable = info->huffTable; in HuffSetOneNodeOffset()
1142 static u32 HuffConvertData( const HuffData *table, const u8* srcp, u8* dstp, u32 srcSize, u32 maxSi… in HuffConvertData()