Searched defs:xyz (Results 1 - 7 of 7) sorted by relevance

/external/clang/test/SemaCXX/
H A Daddress-of.cpp35 void (*xyz)(void) = &xpto; variable
/external/clang/test/Parser/
H A Ddeclarators.c48 struct xyz { int y; }; struct
50 xyz b; // expected-error {{must use 'struct' tag to refer to type 'xyz'}}
54 // We should recover 'b' by parsing it with a valid type of "struct xyz", which
59 struct xyz test8() { return a; } // a should be be marked invalid, no diag.
/external/deqp/framework/common/
H A DtcuVector.hpp136 VecAccess<T, Size, 3> xyz (void) { DE_ASSERT(Size >= 3); return VecAccess<T, Size, 3>(*this, 0, 1, 2); } function in class:tcu::Vector
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmsplugin.c236 cmsEncodedXYZNumber xyz; local
240 if (io ->Read(io, &xyz, sizeof(cmsEncodedXYZNumber), 1) != 1) return FALSE;
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
351 xyz.X = _cmsAdjustEndianess32(_cmsDoubleTo15Fixed16(XYZ->X));
352 xyz.Y = _cmsAdjustEndianess32(_cmsDoubleTo15Fixed16(XYZ->Y));
353 xyz.Z = _cmsAdjustEndianess32(_cmsDoubleTo15Fixed16(XYZ->Z));
355 return io -> Write(io, sizeof(cmsEncodedXYZNumber), &xyz);
[all...]
H A Dcmspcs.c134 void CMSEXPORT cmsXYZ2Lab(const cmsCIEXYZ* WhitePoint, cmsCIELab* Lab, const cmsCIEXYZ* xyz) argument
141 fx = f(xyz->X / WhitePoint->X);
142 fy = f(xyz->Y / WhitePoint->Y);
143 fz = f(xyz->Z / WhitePoint->Z);
152 void CMSEXPORT cmsLab2XYZ(const cmsCIEXYZ* WhitePoint, cmsCIEXYZ* xyz, const cmsCIELab* Lab) argument
163 xyz -> X = f_1(x) * WhitePoint -> X;
164 xyz -> Y = f_1(y) * WhitePoint -> Y;
165 xyz -> Z = f_1(z) * WhitePoint -> Z;
367 cmsCIEXYZ xyz; local
369 xyz
[all...]
H A Dcmstypes.c290 cmsCIEXYZ* xyz; local
293 xyz = (cmsCIEXYZ*) _cmsMallocZero(self ->ContextID, sizeof(cmsCIEXYZ));
294 if (xyz == NULL) return NULL;
296 if (!_cmsReadXYZNumber(io, xyz)) {
297 _cmsFree(self ->ContextID, xyz);
302 return (void*) xyz;
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DlibGLESv2.cpp4471 GLfloat xyz[3] = {x, y, z}; local
4473 glUniform3fv(location, 1, xyz);
4495 GLint xyz[3] = {x, y, z}; local
4497 glUniform3iv(location, 1, xyz);
6538 const GLuint xyz[] = { v0, v1, v2 }; local
6539 glUniform3uiv(location, 1, xyz);

Completed in 282 milliseconds