Home | History | Annotate | Download | only in src

Lines Matching defs:Data

129         char**         Data;                  // The binary stream
232 {"ORIGINATOR", WRITE_STRINGIFY}, // Required - Identifies the specific system, organization or individual that created the data file.
233 {"FILE_DESCRIPTOR", WRITE_STRINGIFY}, // Required - Describes the purpose or contents of the data file.
234 {"CREATED", WRITE_STRINGIFY}, // Required - Indicates date of creation of the data file.
235 {"DESCRIPTOR", WRITE_STRINGIFY}, // Required - Describes the purpose or contents of the data file.
247 // model number) to generate the data reported. This data will often
248 // provide more information about the particular data collected than an
250 // spectral data or data derived from spectrophotometry.
252 {"MEASUREMENT_SOURCE", WRITE_STRINGIFY}, // Illumination used for spectral measurements. This data helps provide
280 // calculation of various data parameters (2 degree and 10 degree), CIE standard
281 // illuminant functions used in the calculation of various data parameters (e.g., D50,
286 // For ASCII data, a string containing the Name and Value attribute pairs shall follow
290 {"COMPUTATIONAL_PARAMETER", WRITE_PAIR}, // Parameter that is used in computing a value from measured data. Name is the name
298 {"TABLE_DESCRIPTOR", WRITE_STRINGIFY}, // Describes the purpose or contents of a data table.
300 {"TABLE_NAME", WRITE_STRINGIFY} // Provides a short name for a data table.
308 "SAMPLE_ID", // Identifies sample that data represents
312 "CMYK_C", // Cyan component of CMYK data expressed as a percentage
313 "CMYK_M", // Magenta component of CMYK data expressed as a percentage
314 "CMYK_Y", // Yellow component of CMYK data expressed as a percentage
315 "CMYK_K", // Black component of CMYK data expressed as a percentage
321 "RGB_R", // Red component of RGB data
322 "RGB_G", // Green component of RGB data
323 "RGB_B", // Blue com ponent of RGB data
327 "XYZ_X", // X component of tristimulus data
328 "XYZ_Y", // Y component of tristimulus data
329 "XYZ_Z", // Z component of tristimulus data
330 "XYY_X" // x component of chromaticity data
331 "XYY_Y", // y component of chromaticity data
332 "XYY_CAPY", // Y component of tristimulus data
333 "LAB_L", // L* component of Lab data
334 "LAB_A", // a* component of Lab data
335 "LAB_B", // b* component of Lab data
336 "LAB_C", // C*ab component of Lab data
337 "LAB_H", // hab component of Lab data
343 // (Used for data files for ANSI IT8.7/1 and IT8.7/2 targets)
344 "STDEV_X", // Standard deviation of X (tristimulus data)
345 "STDEV_Y", // Standard deviation of Y (tristimulus data)
346 "STDEV_Z", // Standard deviation of Z (tristimulus data)
1047 // Allocates a chunk of data, keep linked list
1250 t->Data = NULL;
1316 // Initialize predefined properties & data
1501 if (t -> Data) return; // Already allocated
1506 t-> Data = (char**)AllocChunk (it8, ((cmsUInt32Number) t->nSamples + 1) * ((cmsUInt32Number) t->nPatches + 1) *sizeof (char*));
1507 if (t->Data == NULL) {
1509 SynError(it8, "AllocateDataSet: Unable to allocate data array");
1524 if (!t->Data) return NULL;
1525 return t->Data [nSet * nSamples + nField];
1533 if (!t->Data)
1536 if (!t->Data) return FALSE;
1548 t->Data [nSet * t -> nSamples + nField] = AllocString(it8, Val);
1692 // Writes the data format
1715 // Writes data array
1722 if (!t->Data) return;
1734 char *ptr = t->Data[i*t->nSamples+j];
1877 if (!t->Data)
1890 if (!GetVal(it8, Buffer, 255, "Sample data expected"))
1907 // Check for data completion.
1964 if (!GetVal(it8, Buffer, MAXSTR-1, "Property data expected")) return FALSE;
2160 char *Data = GetData(it8, i, idField);
2161 if (Data) {
2164 strncpy(Buffer, Data, 255);
2167 if (strlen(Buffer) <= strlen(Data))
2168 strcpy(Data, Buffer);
2474 const char *data;
2479 data = GetData(it8, i, t->SampleID);
2481 if (data != NULL) {
2483 if (cmsstrcasecmp(data, cPatch) == 0)
2497 const char *data;
2502 data = GetData(it8, i, t->SampleID);
2504 if (data == NULL)
2681 char* Data;
2686 Data = GetData(it8, nPatch, t->SampleID);
2688 if (!Data) return NULL;
2689 if (!buffer) return Data;
2691 strncpy(buffer, Data, MAXSTR-1);