| /xsrc/external/mit/libX11/dist/src/xcms/ |
| H A D | HVCMxVs.c | 101 XcmsFloat nT; 144 nT = (XcmsFloat) nI / (XcmsFloat) nSamples; 145 pHVC->spec.RGBi.red = rgb_saved.red * (1.0 - nT) + nT; 146 pHVC->spec.RGBi.green = rgb_saved.green * (1.0 - nT) + nT; 147 pHVC->spec.RGBi.blue = rgb_saved.blue * (1.0 - nT) + nT; 100 XcmsFloat nT; local in function:XcmsTekHVCQueryMaxVSamples
|
| H A D | LabMxC.c | 94 XcmsFloat hue, lastaStar, lastbStar, /*lastChroma,*/ maxDist, nT, rFactor; 154 nT = (n_L_star - max_lc.spec.CIELab.L_star) / maxDist * rFactor; 155 if (nT > 0) { 156 tmp.spec.RGBi.red = rgb_saved.red * (1.0 - nT) + nT; 157 tmp.spec.RGBi.green = rgb_saved.green * (1.0 - nT) + nT; 158 tmp.spec.RGBi.blue = rgb_saved.blue * (1.0 - nT) + nT; 160 tmp.spec.RGBi.red = rgb_saved.red + (rgb_saved.red * nT); 93 XcmsFloat hue, lastaStar, lastbStar, /*lastChroma,*/ maxDist, nT, rFactor; local in function:XcmsCIELabQueryMaxC [all...] |
| H A D | LuvMxC.c | 94 XcmsFloat hue, lastuStar, lastvStar, /*lastChroma,*/ maxDist, nT, rFactor; 154 nT = (n_L_star - max_lc.spec.CIELuv.L_star) / maxDist * rFactor; 155 /* printf("(n_L_star, nT) = %lf %lf ", n_L_star, nT); */ 156 if (nT > 0) { 157 tmp.spec.RGBi.red = rgb_saved.red * (1.0 - nT) + nT; 158 tmp.spec.RGBi.green = rgb_saved.green * (1.0 - nT) + nT; 159 tmp.spec.RGBi.blue = rgb_saved.blue * (1.0 - nT) 93 XcmsFloat hue, lastuStar, lastvStar, /*lastChroma,*/ maxDist, nT, rFactor; local in function:XcmsCIELuvQueryMaxC [all...] |
| H A D | LabMxL.c | 88 XcmsFloat hue, nT, nChroma, lastChroma, prevChroma; 163 nT = (1.0 - (nChroma / max_chroma)) * rFactor; 165 tmp.spec.RGBi.red = rgb_saved.red * (1.0 - nT) + nT; 166 tmp.spec.RGBi.green = rgb_saved.green * (1.0 - nT) + nT; 167 tmp.spec.RGBi.blue = rgb_saved.blue * (1.0 - nT) + nT; 87 XcmsFloat hue, nT, nChroma, lastChroma, prevChroma; local in function:XcmsCIELabQueryMaxL
|
| H A D | LuvMxL.c | 88 XcmsFloat hue, nT, nChroma, lastChroma, prevChroma; 163 nT = (1.0 - (nChroma / max_chroma)) * rFactor; 165 tmp.spec.RGBi.red = rgb_saved.red * (1.0 - nT) + nT; 166 tmp.spec.RGBi.green = rgb_saved.green * (1.0 - nT) + nT; 167 tmp.spec.RGBi.blue = rgb_saved.blue * (1.0 - nT) + nT; 87 XcmsFloat hue, nT, nChroma, lastChroma, prevChroma; local in function:XcmsCIELuvQueryMaxL
|
| H A D | LabGcLC.c | 93 XcmsFloat nT, saveDist, tmpDist; 169 nT = (XcmsFloat) nI / (XcmsFloat) nMaxCount; 171 pColor->spec.RGBi.red = rgb_max.red * (1.0 - nT) + nT; 172 pColor->spec.RGBi.green = rgb_max.green * (1.0 - nT) + nT; 173 pColor->spec.RGBi.blue = rgb_max.blue * (1.0 - nT) + nT; 175 pColor->spec.RGBi.red = rgb_max.red - (rgb_max.red * nT); 176 pColor->spec.RGBi.green = rgb_max.green - (rgb_max.green * nT); 92 XcmsFloat nT, saveDist, tmpDist; local in function:XcmsCIELabClipLab [all...] |
| H A D | LuvGcLC.c | 93 XcmsFloat nT, saveDist, tmpDist; 169 nT = (XcmsFloat) nI / (XcmsFloat) nMaxCount; 171 pColor->spec.RGBi.red = rgb_max.red * (1.0 - nT) + nT; 172 pColor->spec.RGBi.green = rgb_max.green * (1.0 - nT) + nT; 173 pColor->spec.RGBi.blue = rgb_max.blue * (1.0 - nT) + nT; 175 pColor->spec.RGBi.red = rgb_max.red - (rgb_max.red * nT); 176 pColor->spec.RGBi.green = rgb_max.green - (rgb_max.green * nT); 92 XcmsFloat nT, saveDist, tmpDist; local in function:XcmsCIELuvClipLuv [all...] |
| H A D | HVCGcVC.c | 105 XcmsFloat Chroma, Value, bestChroma, bestValue, nT, saveDist, tmpDist; 209 nT = (XcmsFloat) nI / (XcmsFloat) nMaxCount; 210 pColor->spec.RGBi.red = rgb_max.red * (1.0 - nT) + nT; 211 pColor->spec.RGBi.green = rgb_max.green * (1.0 - nT) + nT; 212 pColor->spec.RGBi.blue = rgb_max.blue * (1.0 - nT) + nT; 104 XcmsFloat Chroma, Value, bestChroma, bestValue, nT, saveDist, tmpDist; local in function:XcmsTekHVCClipVC
|
| H A D | HVCMxC.c | 105 XcmsFloat maxDist, nT, rFactor; 172 nT = (nValue - max_vc.spec.TekHVC.V) / maxDist * rFactor; 173 tmp.spec.RGBi.red = rgb_saved.red * (1.0 - nT) + nT; 174 tmp.spec.RGBi.green = rgb_saved.green * (1.0 - nT) + nT; 175 tmp.spec.RGBi.blue = rgb_saved.blue * (1.0 - nT) + nT; 104 XcmsFloat maxDist, nT, rFactor; local in function:XcmsTekHVCQueryMaxC
|
| H A D | HVCMxV.c | 102 XcmsFloat nT, nChroma, savedChroma, lastValue, lastChroma, prevChroma; 181 nT = (1.0 - (nChroma / max_vc.spec.TekHVC.C)) * rFactor; 182 tmp.spec.RGBi.red = rgb_saved.red * (1.0 - nT) + nT; 183 tmp.spec.RGBi.green = rgb_saved.green * (1.0 - nT) + nT; 184 tmp.spec.RGBi.blue = rgb_saved.blue * (1.0 - nT) + nT; 101 XcmsFloat nT, nChroma, savedChroma, lastValue, lastChroma, prevChroma; local in function:XcmsTekHVCQueryMaxV
|
| H A D | LabMnL.c | 88 XcmsFloat hue, nT, nChroma, lastChroma, prevChroma; 163 nT = (nChroma - max_chroma) / max_chroma * rFactor; 165 tmp.spec.RGBi.red = rgb_saved.red + (rgb_saved.red * nT); 166 tmp.spec.RGBi.green = rgb_saved.green + (rgb_saved.green * nT); 167 tmp.spec.RGBi.blue = rgb_saved.blue + (rgb_saved.blue * nT); 87 XcmsFloat hue, nT, nChroma, lastChroma, prevChroma; local in function:XcmsCIELabQueryMinL
|
| H A D | LuvMnL.c | 88 XcmsFloat hue, nT, nChroma, lastChroma, prevChroma; 163 nT = (nChroma - max_chroma) / max_chroma * rFactor; 165 tmp.spec.RGBi.red = rgb_saved.red + (rgb_saved.red * nT); 166 tmp.spec.RGBi.green = rgb_saved.green + (rgb_saved.green * nT); 167 tmp.spec.RGBi.blue = rgb_saved.blue + (rgb_saved.blue * nT); 87 XcmsFloat hue, nT, nChroma, lastChroma, prevChroma; local in function:XcmsCIELuvQueryMinL
|