Searched defs:XYZ (Results 1 - 19 of 19) 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/third_party/lcms2-2.6/src/
H A Dcmscam02.c35 cmsFloat64Number XYZ[3]; member in struct:__anon15874
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.c238 cmsBool CMSEXPORT _cmsReadXYZNumber(cmsIOHANDLER* io, cmsCIEXYZ* XYZ) argument
246 if (XYZ != NULL) {
248 XYZ->X = _cms15Fixed16toDouble(_cmsAdjustEndianess32(xyz.X));
249 XYZ->Y = _cms15Fixed16toDouble(_cmsAdjustEndianess32(xyz.Y));
250 XYZ->Z = _cms15Fixed16toDouble(_cmsAdjustEndianess32(xyz.Z));
252 NormalizeXYZ(XYZ);
348 cmsBool CMSEXPORT _cmsWriteXYZNumber(cmsIOHANDLER* io, const cmsCIEXYZ* XYZ) argument
353 _cmsAssert(XYZ != NULL);
355 xyz.X = _cmsAdjustEndianess32(_cmsDoubleTo15Fixed16(XYZ->X));
356 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/skia/src/core/
H A DSkColorSpace.cpp24 // First, we need to convert xy values (primaries) to XYZ.
36 SkVector3 XYZ; local
37 XYZ.fX = primariesInv[0] * wXYZ.fX + primariesInv[1] * wXYZ.fY + primariesInv[2] * wXYZ.fZ;
38 XYZ.fY = primariesInv[3] * wXYZ.fX + primariesInv[4] * wXYZ.fY + primariesInv[5] * wXYZ.fZ;
39 XYZ.fZ = primariesInv[6] * wXYZ.fX + primariesInv[7] * wXYZ.fY + primariesInv[8] * wXYZ.fZ;
41 toXYZ.setAll(XYZ.fX, 0.0f, 0.0f,
42 0.0f, XYZ.fY, 0.0f,
43 0.0f, 0.0f, XYZ.fZ);
/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.c1198 png_xy_from_XYZ(png_xy *xy, const png_XYZ *XYZ) argument
1202 d = XYZ->red_X + XYZ->red_Y + XYZ->red_Z;
1203 if (png_muldiv(&xy->redx, XYZ->red_X, PNG_FP_1, d) == 0)
1205 if (png_muldiv(&xy->redy, XYZ->red_Y, PNG_FP_1, d) == 0)
1208 whiteX = XYZ->red_X;
1209 whiteY = XYZ->red_Y;
1211 d = XYZ->green_X + XYZ
1241 png_XYZ_from_xy(png_XYZ *XYZ, const png_xy *xy) argument
1507 png_XYZ_normalize(png_XYZ *XYZ) argument
1583 png_colorspace_check_xy(png_XYZ *XYZ, const png_xy *xy) argument
1609 png_colorspace_check_XYZ(png_xy *xy, png_XYZ *XYZ) argument
1637 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
1694 png_XYZ XYZ; local
1725 png_XYZ XYZ = *XYZ_in; local
[all...]
/external/pdfium/third_party/libpng16/
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.c1198 png_xy_from_XYZ(png_xy *xy, const png_XYZ *XYZ) argument
1202 d = XYZ->red_X + XYZ->red_Y + XYZ->red_Z;
1203 if (png_muldiv(&xy->redx, XYZ->red_X, PNG_FP_1, d) == 0)
1205 if (png_muldiv(&xy->redy, XYZ->red_Y, PNG_FP_1, d) == 0)
1208 whiteX = XYZ->red_X;
1209 whiteY = XYZ->red_Y;
1211 d = XYZ->green_X + XYZ
1241 png_XYZ_from_xy(png_XYZ *XYZ, const png_xy *xy) argument
1507 png_XYZ_normalize(png_XYZ *XYZ) argument
1583 png_colorspace_check_xy(png_XYZ *XYZ, const png_xy *xy) argument
1609 png_colorspace_check_XYZ(png_xy *xy, png_XYZ *XYZ) argument
1637 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
1694 png_XYZ XYZ; local
1725 png_XYZ XYZ = *XYZ_in; local
[all...]
/external/pdfium/third_party/libtiff/
H A Dtif_luv.c68 * for each of three CIE XYZ coordinates. The codec then takes care
72 * By definition, a CIE XYZ vector of [1 1 1] corresponds to a neutral white
74 * white point, such as D65, and an absolute color conversion to XYZ then
78 * in XYZ, then record the original white point using the TIFFTAG_WHITEPOINT
121 * SGILOGDATAFMT_FLOAT = IEEE 32-bit float XYZ values
962 LogLuv24toXYZ(uint32 p, float XYZ[3]) argument
969 XYZ[0] = XYZ[1] = XYZ[2] = 0.;
980 /* convert to XYZ */
990 LogLuv24fromXYZ(float XYZ[3], int em) argument
1103 LogLuv32toXYZ(uint32 p, float XYZ[3]) argument
1128 LogLuv32fromXYZ(float XYZ[3], int em) argument
[all...]
/external/skia/third_party/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.c1198 png_xy_from_XYZ(png_xy *xy, const png_XYZ *XYZ) argument
1202 d = XYZ->red_X + XYZ->red_Y + XYZ->red_Z;
1203 if (png_muldiv(&xy->redx, XYZ->red_X, PNG_FP_1, d) == 0)
1205 if (png_muldiv(&xy->redy, XYZ->red_Y, PNG_FP_1, d) == 0)
1208 whiteX = XYZ->red_X;
1209 whiteY = XYZ->red_Y;
1211 d = XYZ->green_X + XYZ
1241 png_XYZ_from_xy(png_XYZ *XYZ, const png_xy *xy) argument
1507 png_XYZ_normalize(png_XYZ *XYZ) argument
1583 png_colorspace_check_xy(png_XYZ *XYZ, const png_xy *xy) argument
1609 png_colorspace_check_XYZ(png_xy *xy, png_XYZ *XYZ) argument
1637 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
1694 png_XYZ XYZ; local
1725 png_XYZ XYZ = *XYZ_in; local
[all...]

Completed in 472 milliseconds