Lines Matching refs:tmp
668 u8 tmp; in HuffCountData() local
681 tmp = (u8)( (srcp[ i ] & 0xf0) >> 4 ); in HuffCountData()
682 table[ tmp ].Freq++; // Store from upper 4 bits forward // Either is OK in HuffCountData()
683 tmp = (u8)( srcp[ i ] & 0x0f ); in HuffCountData()
684 table[ tmp ].Freq++; // The problem is the encoding in HuffCountData()
970 u16 tmp = 0; in HuffMakeHuffTree() local
974 tmp = info->huffTable[ info->huffTreeCtrl[i].leftNodeNo ].HWord; in HuffMakeHuffTree()
978 if ( info->huffTable[info->huffTreeCtrl[i].rightNodeNo ].HWord > tmp ) in HuffMakeHuffTree()
983 if ( (tmp != 0) || (tmpRightFlag) ) in HuffMakeHuffTree()
1219 u8 tmp; in HuffConvertData() local
1220 tmp = dstp[i * 4 + 0]; in HuffConvertData()
1222 dstp[i * 4 + 3] = tmp; // Swap in HuffConvertData()
1223 tmp = dstp[i * 4 + 1]; in HuffConvertData()
1225 dstp[i * 4 + 2] = tmp; // Swap in HuffConvertData()