Lines Matching refs:Tab
1061 cmsBool CMSEXPORT cmsSmoothToneCurve(cmsToneCurve* Tab, cmsFloat64Number lambda)
1066 if (Tab == NULL) return FALSE;
1068 if (cmsIsToneCurveLinear(Tab)) return TRUE; // Nothing to do
1070 nItems = Tab -> nEntries;
1073 cmsSignalError(Tab ->InterpParams->ContextID, cmsERROR_RANGE, "cmsSmoothToneCurve: too many points.");
1083 y[i+1] = (cmsFloat32Number) Tab -> Table16[i];
1087 if (!smooth2(Tab ->InterpParams->ContextID, w, y, z, (cmsFloat32Number) lambda, nItems)) return FALSE;
1096 cmsSignalError(Tab ->InterpParams->ContextID, cmsERROR_RANGE, "cmsSmoothToneCurve: Non-Monotonic.");
1102 cmsSignalError(Tab ->InterpParams->ContextID, cmsERROR_RANGE, "cmsSmoothToneCurve: Degenerated, mostly zeros.");
1106 cmsSignalError(Tab ->InterpParams->ContextID, cmsERROR_RANGE, "cmsSmoothToneCurve: Degenerated, mostly poles.");
1114 Tab -> Table16[i] = _cmsQuickSaturateWord(z[i+1]);