HomeSort by relevance Sort by last modified time
    Searched defs:XYZ (Results 1 - 11 of 11) sorted by null

  /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;
  /external/clang/test/Preprocessor/
macro_paste_bad.c 3 #define XYZ x ## +
4 XYZ // expected-error {{pasting formed 'x+', an invalid preprocessing token}}
  /external/libpng/
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...]
png.c     [all...]
  /external/pdfium/core/src/fxcodec/lcms2/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...]
cmsps2.c 38 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, see the discussion abov
    [all...]
cmsvirt.c 566 // Creates a fake XYZ identity
581 if (!SetTextTags(hProfile, L"XYZ identity built-in")) goto Error;
692 cmsCIEXYZ XYZ;
712 cmsLab2XYZ(&bchsw ->WPsrc, &XYZ, &LabOut);
713 cmsXYZ2Lab(&bchsw ->WPdest, &LabOut, &XYZ);
    [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...]
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...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
icm.h 82 struct XYZCOLOR XYZ;
141 #define SPACE_XYZ 'XYZ '

Completed in 291 milliseconds