Searched refs:nT (Results 1 - 12 of 12) sorted by relevance

/xsrc/external/mit/libX11/dist/src/xcms/
H A DHVCMxVs.c101 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 DLabMxC.c94 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 DLuvMxC.c94 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 DLabMxL.c88 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 DLuvMxL.c88 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 DLabGcLC.c93 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 DLuvGcLC.c93 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 DHVCGcVC.c105 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 DHVCMxC.c105 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 DHVCMxV.c102 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 DLabMnL.c88 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 DLuvMnL.c88 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

Completed in 11 milliseconds