Lines Matching defs:mult
2749 void ESCIRoundColorCorrectionMatrix(int mult, double org_cct[], int rnd_cct[])
2757 mult_cct[i] = org_cct[i] * mult;
2760 // round value multiplied by 'mult' off to integer.
2762 rnd_cct[i] = (int)floor(org_cct[i] * mult + 0.5);
2788 // if summation does not equal to 'mult', adjust rounded up or down value.
2790 if (sum[i]<mult) {
2797 } else if (sum[i]>mult) {
2807 } while ((++loop<2)&&((sum[0]!=mult)||(sum[1]!=mult)||(sum[2]!=mult)));