Lines Matching refs:tmp
745 u8 tmp; in HuffCountData() local
758 tmp = (u8)( (srcp[ i ] & 0xf0) >> 4 ); in HuffCountData()
759 table[ tmp ].Freq++; // Store from upper 4 bits first // Either is OK in HuffCountData()
760 tmp = (u8)( srcp[ i ] & 0x0f ); in HuffCountData()
761 table[ tmp ].Freq++; // The problem is the encoding in HuffCountData()
1047 u16 tmp = 0; in HuffMakeHuffTree() local
1051 tmp = info->huffTable[ info->huffTreeCtrl[i].leftNodeNo ].HWord; in HuffMakeHuffTree()
1055 if ( info->huffTable[info->huffTreeCtrl[i].rightNodeNo ].HWord > tmp ) in HuffMakeHuffTree()
1060 if ( (tmp != 0) || (tmpRightFlag) ) in HuffMakeHuffTree()
1297 u8 tmp; in HuffConvertData() local
1298 tmp = dstp[i * 4 + 0]; in HuffConvertData()
1300 dstp[i * 4 + 3] = tmp; // Swap in HuffConvertData()
1301 tmp = dstp[i * 4 + 1]; in HuffConvertData()
1303 dstp[i * 4 + 2] = tmp; // Swap in HuffConvertData()