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

1 2 3

  /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.27/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"
  /art/test/624-checker-stringops/src/
Main.java 24 static final String XYZ = "XYZ";
41 int k = ABC.length() + XYZ.length(); // does LoadString before loops
49 k += ABC.indexOf(XYZ);
52 k += ABC.indexOf(XYZ, 2);
72 int k = ABC.length() + XYZ.length(); // does LoadString before loops
80 int d = ABC.indexOf(XYZ);
83 int d = ABC.indexOf(XYZ, 2);
297 indexOfExceptions(null, XYZ);
306 expectEquals(598, indexOfExceptions(ABC, XYZ));
    [all...]
  /external/pdfium/third_party/lcms/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 222 cmsBool CMSEXPORT _cmsReadXYZNumber(cmsIOHANDLER* io, cmsCIEXYZ* XYZ)
224 cmsEncodedXYZNumber xyz; local
228 if (io ->Read(io, &xyz, sizeof(cmsEncodedXYZNumber), 1) != 1) return FALSE;
230 if (XYZ != NULL) {
232 XYZ->X = _cms15Fixed16toDouble(_cmsAdjustEndianess32(xyz.X));
233 XYZ->Y = _cms15Fixed16toDouble(_cmsAdjustEndianess32(xyz.Y));
234 XYZ->Z = _cms15Fixed16toDouble(_cmsAdjustEndianess32(xyz.Z))
332 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
142 // Standard XYZ to Lab. it can handle negative XZY numbers in some cases
143 void CMSEXPORT cmsXYZ2Lab(const cmsCIEXYZ* WhitePoint, cmsCIELab* Lab, const cmsCIEXYZ* xyz)
150 fx = f(xyz->X / WhitePoint->X);
151 fy = f(xyz->Y / WhitePoint->Y);
152 fz = f(xyz->Z / WhitePoint->Z);
160 // Standard XYZ to Lab. It can return negative XYZ in some case
376 cmsCIEXYZ xyz; local
    [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/libpng16/
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/tensorflow/tensorflow/contrib/reduce_slice_ops/kernels/
reduce_slice_ops.cc 37 struct XYZ { \
39 XYZ() = default; \
40 XYZ(Index x, Index y, Index z) : x(x), y(y), z(z) {} \
42 inline static XYZ global_index_to_xyz(Index global, XYZ size) { \
43 XYZ ret; \
71 XYZ xyz = global_index_to_xyz(global, XYZ(dim1, dim2, dim3)); \
72 Index x = xyz.x;
    [all...]
  /frameworks/native/libs/ui/include/ui/
ColorSpace.h 49 * Creates a named color space with the specified RGB->XYZ
66 * Creates a named color space with the specified RGB->XYZ
82 * Creates a named color space with the specified RGB->XYZ
98 * and white point. The RGB<>XYZ conversion matrices are
116 * and white point. The RGB<>XYZ conversion matrices are
133 * and white point. The RGB<>XYZ conversion matrices are
166 * Converts the supplied XYZ value to RGB. The returned value
170 constexpr float3 xyzToRGB(const float3& xyz) const noexcept {
171 return apply(fromLinear(mXYZtoRGB * xyz), mClamper);
175 * Converts the supplied RGB value to XYZ. The input RGB valu
    [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
817 XYZtoRGB24(float xyz[3], uint8 rgb[3])
821 r = 2.690*xyz[0] + -1.276*xyz[1] + -0.414*xyz[2];
822 g = -1.022*xyz[0] + 1.978*xyz[1] + 0.044*xyz[2]
1025 float* xyz = (float*) op; local
1061 float xyz[3]; local
1073 float* xyz = (float*) op; local
1166 float* xyz = (float*) op; local
1199 float xyz[3]; local
1211 float* xyz = (float*) op; local
    [all...]
  /prebuilts/go/darwin-x86/test/bench/go1/
regexp_test.go 48 medium = "[XYZ]ABCDEFGHIJKLMNOPQRSTUVWXYZ$"
  /prebuilts/go/linux-x86/test/bench/go1/
regexp_test.go 48 medium = "[XYZ]ABCDEFGHIJKLMNOPQRSTUVWXYZ$"
  /art/test/031-class-attributes/src/
ClassAttrs.java 250 static class MemberClass<XYZ> {
251 public MemberClass<XYZ> mWha;
253 public MemberClass(MemberClass<XYZ> memb) {
257 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/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
fetch_jit.h 70 XYZ = 0x7,
  /toolchain/binutils/binutils-2.27/
djunpack.bat 12 Rem djunpack gdb-XYZ.tar
14 Rem where XYZ is the version number. If the argument includes leading
  /external/skia/src/core/
SkColorSpace.cpp 22 // First, we need to convert xy values (primaries) to XYZ.
34 SkVector3 XYZ;
35 XYZ.fX = primariesInv[0] * wXYZ.fX + primariesInv[1] * wXYZ.fY + primariesInv[2] * wXYZ.fZ;
36 XYZ.fY = primariesInv[3] * wXYZ.fX + primariesInv[4] * wXYZ.fY + primariesInv[5] * wXYZ.fZ;
37 XYZ.fZ = primariesInv[6] * wXYZ.fX + primariesInv[7] * wXYZ.fY + primariesInv[8] * wXYZ.fZ;
39 toXYZ.setAll(XYZ.fX, 0.0f, 0.0f,
40 0.0f, XYZ.fY, 0.0f,
41 0.0f, 0.0f, XYZ.fZ);
338 // Profile data is mandatory for A2B0 color spaces, so we must be XYZ.
523 // Profiles are mandatory for A2B0 color spaces, so these must be XYZ
    [all...]
  /external/skqp/src/core/
SkColorSpace.cpp 22 // First, we need to convert xy values (primaries) to XYZ.
34 SkVector3 XYZ;
35 XYZ.fX = primariesInv[0] * wXYZ.fX + primariesInv[1] * wXYZ.fY + primariesInv[2] * wXYZ.fZ;
36 XYZ.fY = primariesInv[3] * wXYZ.fX + primariesInv[4] * wXYZ.fY + primariesInv[5] * wXYZ.fZ;
37 XYZ.fZ = primariesInv[6] * wXYZ.fX + primariesInv[7] * wXYZ.fY + primariesInv[8] * wXYZ.fZ;
39 toXYZ.setAll(XYZ.fX, 0.0f, 0.0f,
40 0.0f, XYZ.fY, 0.0f,
41 0.0f, 0.0f, XYZ.fZ);
338 // Profile data is mandatory for A2B0 color spaces, so we must be XYZ.
523 // Profiles are mandatory for A2B0 color spaces, so these must be XYZ
    [all...]

Completed in 528 milliseconds

1 2 3