Lines Matching refs:u16Hue
194 MS_U16 u16Hue; member
1383 static short sine(WORD u16Hue) in sine() argument
1385 return (short)(sin((u16Hue * PI) / 180.) * 1024.); in sine()
1388 static short cosine(WORD u16Hue) in cosine() argument
1390 return (short)(cos((u16Hue * PI) / 180.) * 1024.); in cosine()
1397 WORD u16Hue; in SetVideoSatHueMatrix() local
1401 u16Hue = s_AceInfo[bWindow].ucHue; in SetVideoSatHueMatrix()
1403 …u16Hue = ((s_AceInfo[bWindow].ucHue <= 50) ? (50 - s_AceInfo[bWindow].ucHue) : (360-(s_AceInfo[bWi… 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()
1621 stAceOSDControl.u16Hue = s_AceInfo[bScalerWin].ucHue; in msAdjustCFDOSDInfo()