Lines Matching refs:work
255 static void LZInitTable(LZCompressInfo * info, u8 *work);
264 static void LZInitTable(LZCompressInfo * info, u8 *work) in LZInitTable() argument
268 info->LZOffsetTable = (s16 *)work; in LZInitTable()
269 info->LZByteTable = (s16 *)work + 4096; in LZInitTable()
270 info->LZEndTable = (s16 *)work + 4096 + 256; in LZInitTable()
361 u32 MI_CompressLZFastImpl(const u8 *srcp, u32 size, u8 *dstp, u8 *work, BOOL exFormat) in MI_CompressLZFastImpl() argument
374 SDK_NULL_ASSERT(work); in MI_CompressLZFastImpl()
380 LZInitTable(&info, work); in MI_CompressLZFastImpl()
760 u32 MI_CompressHuffman(const u8 *srcp, u32 size, u8 *dstp, u8 huffBitSize, u8 *work) in MI_CompressHuffman() argument
777 SDK_NULL_ASSERT(work); in MI_CompressHuffman()
778 SDK_ALIGN4_ASSERT(work); in MI_CompressHuffman()
780 HuffTable = ((HuffWork *) work)->HuffTable; in MI_CompressHuffman()
781 HuffTree = ((HuffWork *) work)->HuffTree; in MI_CompressHuffman()
782 HuffTreeCtrl = ((HuffWork *) work)->HuffTreeCtrl; in MI_CompressHuffman()