Searched refs:xz (Results 1 - 25 of 30) sorted by relevance

12

/external/toybox/tests/
H A Dxzcat.test10 tar -cJf file.xz file
13 $xzcatExe file.xz > xzcatOut
14 testing "xzcat - decompresses a single file" "xzcat file.xz > Tempfile && echo "yes"; diff Tempfile xzcatOut && echo "yes"; rm -rf file* xzcatOut Tempfile" "yes\nyes\n" "" ""
20 tar -cJf file1.xz file1
21 tar -cJf file2.xz file2
22 tar -cJf file3.xz file3
25 $xzcatExe file1.xz file2.xz file3.xz > xzcatOut
26 testing "xzcat - decompresses multiple files" "xzcat file1.xz file
[all...]
/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/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/strace/
H A Dmake-dist26 mv -f strace-*.tar.xz ..
/external/llvm/utils/release/
H A Dexport.sh47 tar cfJ $proj-$release$rc.src.tar.xz $proj-$release$rc.src
/external/libunwind/tests/
H A Drun-coredump-unwind26 xz "$mini_debuginfo"
27 mini_debuginfo="${mini_debuginfo}.xz"
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
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...]
H A DTerrainGrid.java453 public void adjustHeight(List<Vector2f> xz, List<Float> height) { argument
455 for (Vector2f vect : xz) {
459 super.adjustHeight(xz, height);
/external/lzma/xz-embedded/
H A Dxz_private.h14 # include <linux/xz.h>
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DQuaternion.java409 float xz = x * zs;
420 result.m02 = (xz + yw);
424 result.m20 = (xz - yw);
454 float xz = x * zs;
465 result.m02 = (xz + yw);
469 result.m20 = (xz - yw);
513 float xz = x * z * norm;
525 store.z = 2 * (xz - yw);
533 store.x = 2 * (xz + yw);
/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/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/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/util/
H A DConverter.java154 float xz = oldQuaternion.getX() * zs;
165 newMatrix.m02 = (xz + yw);
169 newMatrix.m20 = (xz - yw);
/external/elfutils/src/
H A DMakefile642 dist-xz: distdir
643 tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
680 *.tar.xz*) \
681 xz -dc $(distdir).tar.xz | $(am__untar) ;;\
867 dist-gzip dist-lzip dist-shar dist-tarZ dist-xz dist-zip \
H A Delfutils.spec26 BuildRequires: xz-devel
213 - libdwfl: Handle LZMA .ko.xz compressed kernel modules.
/external/libvncserver/
H A DMakefile687 dist-xz: distdir
688 tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
721 *.tar.xz*) \
722 xz -dc $(distdir).tar.xz | $(am__untar) ;;\
909 dist-gzip dist-lzip dist-lzma dist-shar dist-tarZ dist-xz \
/external/chromium-trace/trace-viewer/tracing/third_party/gl-matrix/src/gl-matrix/
H A Dmat4.js843 xz = x * z2,
853 out[2] = xz - wy;
859 out[8] = xz + wy;
897 xz = x * z2,
910 out[2] = (xz - wy) * sx;
916 out[8] = (xz + wy) * sz;
957 xz = x * z2,
975 out[2] = (xz - wy) * sx;
981 out[8] = (xz + wy) * sz;
/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/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/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/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11spikysphere/
H A Dd3d11spikysphere.hlsl.ds.h103 mul r2.xz, r0.zzwz, l(-1.000000, 0.000000, 1.000000, 0.000000)
/external/chromium-trace/trace-viewer/tracing/third_party/gl-matrix/dist/
H A Dgl-matrix.js2228 xz = x * z2,
2238 out[2] = xz - wy;
2244 out[8] = xz + wy;
2282 xz = x * z2,
2295 out[2] = (xz - wy) * sx;
2301 out[8] = (xz + wy) * sz;
2342 xz = x * z2,
2360 out[2] = (xz - wy) * sx;
2366 out[8] = (xz + wy) * sz;
/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 2873 milliseconds

12