Lines Matching refs:tmp
720 u8 tmp; in HuffCountData() local
733 tmp = (u8)( (srcp[ i ] & 0xf0) >> 4 ); in HuffCountData()
734 table[ tmp ].Freq++; // Store from upper 4 bits first // Either is OK in HuffCountData()
735 tmp = (u8)( srcp[ i ] & 0x0f ); in HuffCountData()
736 table[ tmp ].Freq++; // The problem is the encoding in HuffCountData()
1023 u16 tmp = 0; in HuffMakeHuffTree() local
1027 tmp = info->huffTable[ info->huffTreeCtrl[i].leftNodeNo ].HWord; in HuffMakeHuffTree()
1031 if ( info->huffTable[info->huffTreeCtrl[i].rightNodeNo ].HWord > tmp ) in HuffMakeHuffTree()
1036 if ( (tmp != 0) || (tmpRightFlag) ) in HuffMakeHuffTree()
1273 u8 tmp; in HuffConvertData() local
1274 tmp = dstp[i * 4 + 0]; in HuffConvertData()
1276 dstp[i * 4 + 3] = tmp; // Swap in HuffConvertData()
1277 tmp = dstp[i * 4 + 1]; in HuffConvertData()
1279 dstp[i * 4 + 2] = tmp; // Swap in HuffConvertData()