Lines Matching defs:sG
1181 int sG = (s >> ( 8+2))&0x3F;
1188 sG += (f*dG)>>8;
1190 *dst = uint16_t((sR<<11)|(sG<<5)|sB);
1206 int sG = (s >> ( 8+2))&0x3F;
1213 sG = ((sG << 8) + f*dG + threshold)>>8;
1216 if (sG > 0x3f) sG = 0x3f;
1218 *dst = uint16_t((sR<<11)|(sG<<5)|sB);
1235 int sG = (s >> ( 8+2))&0x3F;
1244 sG = (f1*sG + f2*dG)>>8;
1246 *dst = uint16_t((sR<<11)|(sG<<5)|sB);
1282 uint32_t sG = (s >> 8) & 0xff;
1288 sG = (sG*m_g) >> (8 - 6);
1298 sG = (sG + f*dG)>>8;
1300 *dst = uint16_t((sR<<11)|(sG<<5)|sB);
1313 uint32_t sG = (s >> 8) & 0xff;
1319 sG = (sG*m_g) >> (8 - 6);
1330 sG = (sG + f*dG + threshold)>>8;
1333 if (sG > 0x3f) sG = 0x3f;
1335 *dst = uint16_t((sR<<11)|(sG<<5)|sB);
1348 uint32_t sG = (s >> 8) & 0xff;
1353 sG = (sG*m_g) >> (8 - 6);
1362 sG = (sG + f*dG)>>8;
1364 *dst = uint16_t((sR<<11)|(sG<<5)|sB);
1370 uint32_t sG
1374 sG = (sG*m_g) >> (8 - 6);
1385 sG = (sG + f*dG + threshold)>>8;
1388 if (sG > 0x3f) sG = 0x3f;
1390 *dst = uint16_t((sR<<11)|(sG<<5)|sB);
1403 uint32_t sG = (s >> 5) & 0x3f;
1407 sG = (sG*m_g);
1416 sG = (sG + f*dG)>>8;
1418 *dst = uint16_t((sR<<11)|(sG<<5)|sB);
2120 int sG = (s >> ( 8+2))&0x3F;
2123 sG += (f*dG)>>8;
2125 *dst++ = uint16_t((sR<<11)|(sG<<5)|sB);
2147 int sR, sG, sB;