Home | History | Annotate | Download | only in src

Lines Matching refs:nField

1515 char* GetData(cmsIT8* it8, int nSet, int nField)
1521 if (nSet >= nPatches || nField >= nSamples)
1525 return t->Data [nSet * nSamples + nField];
1529 cmsBool SetData(cmsIT8* it8, int nSet, int nField, const char *Val)
1543 if (nField > t ->nSamples || nField < 0) {
1544 return SynError(it8, "Sample %d out of range, there are %d samples", nField, t ->nSamples);
1548 t->Data [nSet * t -> nSamples + nField] = AllocString(it8, Val);