Lines Matching refs:sTmp
1396 short sTmp; in SetVideoSatHueMatrix() local
1406 sTmp = ((short)s_AceInfo[bWindow].ucSaturation * 8); in SetVideoSatHueMatrix()
1408 s_AceInfo[bWindow].sVideoSatHueMatrix[2][2] = ((((long)cosine(u16Hue) * sTmp))>>10); in SetVideoSatHueMatrix()
1409 s_AceInfo[bWindow].sVideoSatHueMatrix[0][0] = ((( (long)cosine(u16Hue)* sTmp))>>10); in SetVideoSatHueMatrix()
1410 s_AceInfo[bWindow].sVideoSatHueMatrix[2][0] = ((((long)sine(u16Hue) * sTmp))>>10); in SetVideoSatHueMatrix()
1411 s_AceInfo[bWindow].sVideoSatHueMatrix[0][2] = (((-(long)sine(u16Hue) * sTmp))>>10); in SetVideoSatHueMatrix()
1448 short sTmp; in msWriteColorMatrix()
1468 sTmp = psMatrix[i*3+j]; in msWriteColorMatrix()
1469 if( sTmp >= 0 ) in msWriteColorMatrix()
1471 if( sTmp > 0xfff ) in msWriteColorMatrix()
1473 sTmp = 0xfff; in msWriteColorMatrix()
1479 sTmp = sTmp * -1; in msWriteColorMatrix()
1480 if( sTmp > 0xfff ) in msWriteColorMatrix()
1482 sTmp = 0xfff; in msWriteColorMatrix()
1485 sTmp = ~sTmp +1; in msWriteColorMatrix()
1487 sTmp |= 0x1000; in msWriteColorMatrix()
1492 ACE_WRITE_CM(psACEInstPri->u32DeviceID, ucAddr, sTmp ); in msWriteColorMatrix()