Searched defs:xz (Results 1 - 12 of 12) sorted by last modified time

/external/pdfium/third_party/freetype/src/base/
H A Dftcalc.c715 FT_Pos xz, yz; local
723 xz = FT_MulDiv( vector->x, matrix->xx, val ) +
729 vector->x = xz;
H A Dftoutln.c694 FT_Pos xz, yz; local
700 xz = FT_MulFix( vector->x, matrix->xx ) +
706 vector->x = xz;
/external/opencv/cv/src/
H A Dcvlinefit.cpp107 float x2 = 0, y2 = 0, z2 = 0, xy = 0, yz = 0, xz = 0; local
128 xz += x * z * w;
148 xz += x * z;
161 xz /= w0;
172 dxz = xz - x0 * z0;
/external/lzma/C/
H A DXzEnc.c389 static SRes Xz_Compress(CXzStream *xz, argument
397 xz->flags = XZ_CHECK_CRC32;
400 RINOK(Xz_WriteHeader(xz->flags, outStream));
433 SeqCheckInStream_Init(&checkInStream, XzFlags_GetCheckType(xz->flags));
462 RINOK(WriteBytes(&seqSizeOutStream.p, buf, padSize + XzFlags_GetCheckSize(xz->flags)));
463 RINOK(Xz_AddIndexRecord(xz, block.unpackSize, seqSizeOutStream.processed - padSize, &g_Alloc));
466 return Xz_WriteFooter(xz, outStream);
474 CXzStream xz; local
476 Xz_Construct(&xz);
480 res = Xz_Compress(&xz,
490 CXzStream xz; local
[all...]
/external/libxml2/
H A Dxzlib.c220 xzFile xz; local
225 xz = xz_open(path, fd, mode);
227 return xz;
444 /* look for the xz magic header bytes */
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/
H A DTerrain.java54 * @param xz the X-Z world coordinate
57 public float getHeight(Vector2f xz); argument
63 * @param xz the X-Z world coordinate
66 public Vector3f getNormal(Vector2f xz); argument
71 * @param xz world coordinate
74 public float getHeightmapHeight(Vector2f xz); argument
88 * Each xz coordinate entry matches to a height entry, 1 for 1. So the
91 * @param xz a list of coordinates where the hight will be set
92 * @param height the heights that match the xz coordinates
94 public void setHeight(List<Vector2f> xz, Lis argument
111 adjustHeight(List<Vector2f> xz, List<Float> height) argument
[all...]
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
H A DTerrainGrid.java453 public void adjustHeight(List<Vector2f> xz, List<Float> height) { argument
455 for (Vector2f vect : xz) {
459 super.adjustHeight(xz, height);
H A DTerrainQuad.java995 public float getHeightmapHeight(Vector2f xz) { argument
998 int x = Math.round((xz.x / getWorldScale().x) + halfSize);
999 int z = Math.round((xz.y / getWorldScale().z) + halfSize);
1098 public float getHeight(Vector2f xz) { argument
1100 float x = (float)(((xz.x - getWorldTranslation().x) / getWorldScale().x) + (float)totalSize / 2f);
1101 float z = (float)(((xz.y - getWorldTranslation().z) / getWorldScale().z) + (float)totalSize / 2f);
1138 public Vector3f getNormal(Vector2f xz) { argument
1140 float x = (float)(((xz.x - getWorldTranslation().x) / getWorldScale().x) + (float)totalSize / 2f);
1141 float z = (float)(((xz.y - getWorldTranslation().z) / getWorldScale().z) + (float)totalSize / 2f);
1142 Vector3f normal = getNormal(x, z, xz);
1147 getNormal(float x, float z, Vector2f xz) argument
1170 setHeight(Vector2f xz, float height) argument
1179 adjustHeight(Vector2f xz, float delta) argument
1188 setHeight(List<Vector2f> xz, List<Float> height) argument
1192 adjustHeight(List<Vector2f> xz, List<Float> height) argument
1196 setHeight(List<Vector2f> xz, List<Float> height, boolean overrideHeight) argument
[all...]
/external/jmonkeyengine/engine/src/bullet-native/
H A DjmeBulletUtil.cpp234 float xz = x * zs; local
243 out->setValue(1.0 - (yy + zz), (xy - zw), (xz + yw),
245 (xz - yw), (yz + xw), 1.0 - (xx + yy));
/external/freetype/src/base/
H A Dftcalc.c769 FT_Pos xz, yz; local
777 xz = FT_MulDiv( vector->x, matrix->xx, val ) +
783 vector->x = xz;
H A Dftoutln.c687 FT_Pos xz, yz; local
693 xz = FT_MulFix( vector->x, matrix->xx ) +
699 vector->x = xz;
/external/deqp/framework/common/
H A DtcuVector.hpp130 VecAccess<T, Size, 2> xz (void) { DE_ASSERT(Size >= 2); return VecAccess<T, Size, 2>(*this, 0, 2); } function in class:tcu::Vector

Completed in 1572 milliseconds