HomeSort by relevance Sort by last modified time
    Searched refs:XYZ (Results 1 - 25 of 42) sorted by null

1 2

  /external/clang/test/Analysis/diagnostics/
undef-value-param.c 30 void initArray(int x, double XYZ[3]) {
34 XYZ[0] = 1;
35 XYZ[1] = 1;
36 XYZ[2] = 1;
39 double XYZ[3];
40 initArray(x, XYZ); //expected-note {{Calling 'initArray'}}
42 return 1 * XYZ[1]; //expected-warning {{The right operand of '*' is a garbage value}}
    [all...]
  /external/clang/test/CodeGenCXX/
2007-04-10-PackedUnion.cpp 14 typedef void (*XYZ)();
21 XYZ bg;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
swym-op.l 13 10 001c FD12D687 SWYM XYZ
18 15 XYZ IS 1234567
29 \*ABS\*:000000000012d687 XYZ
swym-op.s 10 SWYM XYZ
15 XYZ IS 1234567
  /external/clang/test/Preprocessor/
macro_paste_bad.c 3 #define XYZ x ## +
4 XYZ // expected-error {{pasting formed 'x+', an invalid preprocessing token}}
  /external/ImageMagick/tests/
cli-colorspace.tap 100 test_color XYZ sRGB && echo "ok" || echo "not ok"
101 test_color XYZ RGB sRGB && echo "ok" || echo "not ok"
102 test_color RGB XYZ sRGB && echo "ok" || echo "not ok"
105 test_color XYZ LAB sRGB && echo "ok" || echo "not ok"
106 test_color LAB XYZ sRGB && echo "ok" || echo "not ok"
  /external/pdfium/third_party/lcms2-2.6/src/
cmscam02.c 35 cmsFloat64Number XYZ[3];
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[1] * 0.0136) + (clr.XYZ[2] * 0.9834)
    [all...]
cmsplugin.c 234 cmsBool CMSEXPORT _cmsReadXYZNumber(cmsIOHANDLER* io, cmsCIEXYZ* XYZ)
236 cmsEncodedXYZNumber xyz; local
240 if (io ->Read(io, &xyz, sizeof(cmsEncodedXYZNumber), 1) != 1) return FALSE;
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))
346 cmsEncodedXYZNumber xyz; local
    [all...]
cmspcs.c 29 // 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
134 void CMSEXPORT cmsXYZ2Lab(const cmsCIEXYZ* WhitePoint, cmsCIELab* Lab, const cmsCIEXYZ* xyz)
141 fx = f(xyz->X / WhitePoint->X);
142 fy = f(xyz->Y / WhitePoint->Y);
143 fz = f(xyz->Z / WhitePoint->Z);
151 // Standard XYZ to Lab. It can return negative XYZ in some case
367 cmsCIEXYZ xyz; local
    [all...]
cmspack.c 827 // This is a conversion of XYZ double to 16 bits
837 cmsCIEXYZ XYZ;
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;
868 XYZ.X = Pt[0];
869 XYZ.Y = Pt[Stride]
    [all...]
cmslut.c 942 cmsCIEXYZ XYZ;
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
    [all...]
  /external/libpng/
png.c     [all...]
pngset.c 76 png_XYZ XYZ;
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.blue_Y = int_blue_Y
    [all...]
  /external/pdfium/third_party/lpng_v163/
png.c     [all...]
pngset.c 75 png_XYZ XYZ;
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.blue_Y = int_blue_Y;
    [all...]
  /external/opencv3/3rdparty/libpng/
pngget.c 462 /* The XYZ APIs were added in 1.5.5 to take advantage of the code added at the
477 png_XYZ XYZ;
493 if (png_XYZ_from_xy_checked(png_ptr, &XYZ, xy))
496 *int_red_X = XYZ.redX;
498 *int_red_Y = XYZ.redY;
500 *int_red_Z = XYZ.redZ;
502 *int_green_X = XYZ.greenX;
504 *int_green_Y = XYZ.greenY;
506 *int_green_Z = XYZ.greenZ;
508 *int_blue_X = XYZ.blueX
    [all...]
png.c 854 int png_xy_from_XYZ(png_xy *xy, png_XYZ XYZ)
858 d = XYZ.redX + XYZ.redY + XYZ.redZ;
859 if (!png_muldiv(&xy->redx, XYZ.redX, PNG_FP_1, d)) return 1;
860 if (!png_muldiv(&xy->redy, XYZ.redY, PNG_FP_1, d)) return 1;
862 whiteX = XYZ.redX;
863 whiteY = XYZ.redY;
865 d = XYZ.greenX + XYZ.greenY + XYZ.greenZ
    [all...]
pngset.c 75 png_XYZ XYZ;
78 png_debug1(1, "in %s storage function", "cHRM XYZ fixed");
83 XYZ.redX = int_red_X;
84 XYZ.redY = int_red_Y;
85 XYZ.redZ = int_red_Z;
86 XYZ.greenX = int_green_X;
87 XYZ.greenY = int_green_Y;
88 XYZ.greenZ = int_green_Z;
89 XYZ.blueX = int_blue_X;
90 XYZ.blueY = int_blue_Y
    [all...]
  /external/opencv3/modules/cudev/test/
test_color_cvt.cu 118 // RGB <-> XYZ
120 CVT_COLOR_TEST(RGB, XYZ, 3, 3)
121 CVT_COLOR_TEST(BGR, XYZ, 3, 3)
123 CVT_COLOR_TEST(XYZ, RGB, 3, 3)
124 CVT_COLOR_TEST(XYZ, BGR, 3, 3)
  /external/opencv3/3rdparty/libtiff/
tif_luv.c 68 * 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
761 XYZtoRGB24(float xyz[3], uint8 rgb[3])
765 r = 2.690*xyz[0] + -1.276*xyz[1] + -0.414*xyz[2];
766 g = -1.022*xyz[0] + 1.978*xyz[1] + 0.044*xyz[2]
969 float* xyz = (float*) op; local
1005 float xyz[3]; local
1017 float* xyz = (float*) op; local
1110 float* xyz = (float*) op; local
1143 float xyz[3]; local
1155 float* xyz = (float*) op; local
    [all...]
  /external/pdfium/third_party/libtiff/
tif_luv.c 68 * 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
775 XYZtoRGB24(float xyz[3], uint8 rgb[3])
779 r = 2.690*xyz[0] + -1.276*xyz[1] + -0.414*xyz[2];
780 g = -1.022*xyz[0] + 1.978*xyz[1] + 0.044*xyz[2]
983 float* xyz = (float*) op; local
1019 float xyz[3]; local
1031 float* xyz = (float*) op; local
1124 float* xyz = (float*) op; local
1157 float xyz[3]; local
1169 float* xyz = (float*) op; local
    [all...]
  /art/test/031-class-attributes/src/
ClassAttrs.java 246 static class MemberClass<XYZ> {
247 public MemberClass<XYZ> mWha;
249 public MemberClass(MemberClass<XYZ> memb) {
253 public Class<XYZ> foo() throws NoSuchMethodException {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/
RotationOrder.java 38 public static final RotationOrder XYZ =
39 new RotationOrder("XYZ", Vector3D.PLUS_I, Vector3D.PLUS_J, Vector3D.PLUS_K);
  /external/bison/djgpp/
djunpack.bat 28 Rem djunpack bison-XYZ.tar.gz
30 Rem djunpack bison-XYZ.tar.bz2
32 Rem where XYZ is the version number. If the argument includes leading
  /external/opencv3/3rdparty/openexr/Imath/
ImathEuler.h 92 // vector is called the "ijk" vector -- not an "xyz" vector. The
157 XYZ = 0x0101, // "usual" orderings
193 Legal = XYZ | XZY | YZX | YXZ | ZXY | ZYX |
200 Default = XYZ
282 // Use this function to determine mapping from xyz to ijk
283 // - reshuffles the xyz to match the order
301 // Note that xyz here really means ijk, because
317 Order order = XYZ);

Completed in 943 milliseconds

1 2