Searched defs:XYZ (Results 1 - 15 of 15) sorted by relevance

/external/clang/test/Analysis/diagnostics/
H A Dundef-value-param.c30 void initArray(int x, double XYZ[3]) { argument
34 XYZ[0] = 1;
35 XYZ[1] = 1;
36 XYZ[2] = 1;
39 double XYZ[3]; local
40 initArray(x, XYZ); //expected-note {{Calling 'initArray'}}
42 return 1 * XYZ[1]; //expected-warning {{The right operand of '*' is a garbage value}}
/external/clang/test/CodeGenCXX/
H A D2007-04-10-PackedUnion.cpp14 typedef void (*XYZ)(); typedef
21 XYZ bg;
/external/clang/test/Preprocessor/
H A Dmacro_paste_bad.c3 #define XYZ x ## + macro
4 XYZ // expected-error {{pasting formed 'x+', an invalid preprocessing token}}
/external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/
H A DRotationOrder.java38 public static final RotationOrder XYZ = field in class:RotationOrder
39 new RotationOrder("XYZ", Vector3D.PLUS_I, Vector3D.PLUS_J, Vector3D.PLUS_K);
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmscam02.c35 cmsFloat64Number XYZ[3]; member in struct:__anon13230
63 return (pMod -> Yb / pMod -> adoptedWhite.XYZ[1]);
105 clr.RGB[0] = (clr.XYZ[0] * 0.7328) + (clr.XYZ[1] * 0.4296) + (clr.XYZ[2] * -0.1624);
106 clr.RGB[1] = (clr.XYZ[0] * -0.7036) + (clr.XYZ[1] * 1.6975) + (clr.XYZ[2] * 0.0061);
107 clr.RGB[2] = (clr.XYZ[0] * 0.0030) + (clr.XYZ[
[all...]
H A Dcmsplugin.c234 cmsBool CMSEXPORT _cmsReadXYZNumber(cmsIOHANDLER* io, cmsCIEXYZ* XYZ) argument
242 if (XYZ != NULL) {
244 XYZ->X = _cms15Fixed16toDouble(_cmsAdjustEndianess32(xyz.X));
245 XYZ->Y = _cms15Fixed16toDouble(_cmsAdjustEndianess32(xyz.Y));
246 XYZ->Z = _cms15Fixed16toDouble(_cmsAdjustEndianess32(xyz.Z));
248 NormalizeXYZ(XYZ);
344 cmsBool CMSEXPORT _cmsWriteXYZNumber(cmsIOHANDLER* io, const cmsCIEXYZ* XYZ) argument
349 _cmsAssert(XYZ != NULL);
351 xyz.X = _cmsAdjustEndianess32(_cmsDoubleTo15Fixed16(XYZ->X));
352 xyz.Y = _cmsAdjustEndianess32(_cmsDoubleTo15Fixed16(XYZ
[all...]
H A Dcmspcs.c29 // inter PCS conversions XYZ <-> CIE L* a* b*
69 CIE XYZ X 0 -> 1.99997 0x0000 -> 0xffff
70 CIE XYZ Y 0 -> 1.99997 0x0000 -> 0xffff
71 CIE XYZ Z 0 -> 1.99997 0x0000 -> 0xffff
133 // Standard XYZ to Lab. it can handle negative XZY numbers in some cases
151 // Standard XYZ to Lab. It can return negative XYZ in some cases
358 // In XYZ All 3 components are encoded using 1.15 fixed point
365 void CMSEXPORT cmsFloat2XYZEncoded(cmsUInt16Number XYZ[3], const cmsCIEXYZ* fXYZ) argument
400 XYZ[
420 cmsXYZEncoded2Float(cmsCIEXYZ* fXYZ, const cmsUInt16Number XYZ[3]) argument
[all...]
H A Dcmsps2.c38 PostScript does use XYZ as its internal PCS. But since PostScript
43 convert Lab <-> XYZ is also included.
51 the device -> XYZ transform. These cases identifies monochrome profiles (often
59 no interpolation tables, I do the conversion directly to XYZ
75 On simpler profiles, the PCS is already XYZ, so no conversion is required.
83 the conversion directly to XYZ
138 /RangeABC <.. used for XYZ -> Lab>
147 The following stages are used to convert from XYZ to Lab
179 The following stages are used to convert Lab to XYZ
442 // Lab -> XYZ, se
842 cmsCIEXYZ XYZ; local
[all...]
H A Dcmsvirt.c566 // Creates a fake XYZ identity
581 if (!SetTextTags(hProfile, L"XYZ identity built-in")) goto Error;
692 cmsCIEXYZ XYZ; local
712 cmsLab2XYZ(&bchsw ->WPsrc, &XYZ, &LabOut);
713 cmsXYZ2Lab(&bchsw ->WPdest, &LabOut, &XYZ);
H A Dcmslut.c942 cmsCIEXYZ XYZ; local
950 cmsLab2XYZ(NULL, &XYZ, &Lab);
952 // From XYZ, range 0..19997 to 0..1.0, note that 1.99997 comes from 0xffff
955 Out[0] = (cmsFloat32Number) ((cmsFloat64Number) XYZ.X / XYZadj);
956 Out[1] = (cmsFloat32Number) ((cmsFloat64Number) XYZ.Y / XYZadj);
957 Out[2] = (cmsFloat32Number) ((cmsFloat64Number) XYZ.Z / XYZadj);
1073 // Fom XYZ to floating point PCS
1138 cmsCIEXYZ XYZ; local
1141 // From 0..1.0 to XYZ
1143 XYZ
[all...]
H A Dcmspack.c827 // This is a conversion of XYZ double to 16 bits
837 cmsCIEXYZ XYZ; local
839 XYZ.X = Pt[0];
840 XYZ.Y = Pt[Stride];
841 XYZ.Z = Pt[Stride*2];
842 cmsFloat2XYZEncoded(wIn, &XYZ);
856 // This is a conversion of XYZ float to 16 bits
866 cmsCIEXYZ XYZ; local
868 XYZ.X = Pt[0];
869 XYZ
879 cmsCIEXYZ XYZ; local
2323 cmsCIEXYZ XYZ; local
2350 cmsCIEXYZ XYZ; local
2363 cmsCIEXYZ XYZ; local
[all...]
/external/libpng/
H A Dpngset.c76 png_XYZ XYZ; local
78 png_debug1(1, "in %s storage function", "cHRM XYZ fixed");
83 XYZ.red_X = int_red_X;
84 XYZ.red_Y = int_red_Y;
85 XYZ.red_Z = int_red_Z;
86 XYZ.green_X = int_green_X;
87 XYZ.green_Y = int_green_Y;
88 XYZ.green_Z = int_green_Z;
89 XYZ.blue_X = int_blue_X;
90 XYZ
[all...]
H A Dpng.c1196 png_xy_from_XYZ(png_xy *xy, const png_XYZ *XYZ) argument
1200 d = XYZ->red_X + XYZ->red_Y + XYZ->red_Z;
1201 if (!png_muldiv(&xy->redx, XYZ->red_X, PNG_FP_1, d)) return 1;
1202 if (!png_muldiv(&xy->redy, XYZ->red_Y, PNG_FP_1, d)) return 1;
1204 whiteX = XYZ->red_X;
1205 whiteY = XYZ->red_Y;
1207 d = XYZ->green_X + XYZ
1231 png_XYZ_from_xy(png_XYZ *XYZ, const png_xy *xy) argument
1492 png_XYZ_normalize(png_XYZ *XYZ) argument
1555 png_colorspace_check_xy(png_XYZ *XYZ, const png_xy *xy) argument
1579 png_colorspace_check_XYZ(png_xy *xy, png_XYZ *XYZ) argument
1605 png_colorspace_set_xy_and_XYZ(png_const_structrp png_ptr, png_colorspacerp colorspace, const png_xy *xy, const png_XYZ *XYZ, int preferred) argument
1660 png_XYZ XYZ; local
1692 png_XYZ XYZ = *XYZ_in; local
[all...]
/external/pdfium/samples/fx_lpng/lpng_v163/
H A Dfx_pngset.c75 png_XYZ XYZ; local
77 png_debug1(1, "in %s storage function", "cHRM XYZ fixed");
82 XYZ.red_X = int_red_X;
83 XYZ.red_Y = int_red_Y;
84 XYZ.red_Z = int_red_Z;
85 XYZ.green_X = int_green_X;
86 XYZ.green_Y = int_green_Y;
87 XYZ.green_Z = int_green_Z;
88 XYZ.blue_X = int_blue_X;
89 XYZ
[all...]
H A Dfx_png.c1132 png_xy_from_XYZ(png_xy *xy, const png_XYZ *XYZ) argument
1136 d = XYZ->red_X + XYZ->red_Y + XYZ->red_Z;
1137 if (!png_muldiv(&xy->redx, XYZ->red_X, PNG_FP_1, d)) return 1;
1138 if (!png_muldiv(&xy->redy, XYZ->red_Y, PNG_FP_1, d)) return 1;
1140 whiteX = XYZ->red_X;
1141 whiteY = XYZ->red_Y;
1143 d = XYZ->green_X + XYZ
1167 png_XYZ_from_xy(png_XYZ *XYZ, const png_xy *xy) argument
1427 png_XYZ_normalize(png_XYZ *XYZ) argument
1490 png_colorspace_check_xy(png_XYZ *XYZ, const png_xy *xy) argument
1514 png_colorspace_check_XYZ(png_xy *xy, png_XYZ *XYZ) argument
1540 png_colorspace_set_xy_and_XYZ(png_const_structrp png_ptr, png_colorspacerp colorspace, const png_xy *xy, const png_XYZ *XYZ, int preferred) argument
1595 png_XYZ XYZ; local
1627 png_XYZ XYZ = *XYZ_in; local
[all...]

Completed in 402 milliseconds