Home
last modified time | relevance | path

Searched refs:xz (Results 1 – 25 of 91) sorted by relevance

1234

/external/toybox/tests/
Dxzcat.test10 tar -cJf file.xz file
13 $xzcatExe file.xz > xzcatOut
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
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/
DTerrain.java57 public float getHeight(Vector2f xz); in getHeight() argument
66 public Vector3f getNormal(Vector2f xz); in getNormal() argument
74 public float getHeightmapHeight(Vector2f xz); in getHeightmapHeight() argument
94 public void setHeight(List<Vector2f> xz, List<Float> height); in setHeight() argument
111 public void adjustHeight(List<Vector2f> xz, List<Float> height); in adjustHeight() argument
/external/lzma/C/
DXzEnc.c389 static SRes Xz_Compress(CXzStream *xz, in Xz_Compress() argument
397 xz->flags = XZ_CHECK_CRC32; in Xz_Compress()
400 RINOK(Xz_WriteHeader(xz->flags, outStream)); in Xz_Compress()
433 SeqCheckInStream_Init(&checkInStream, XzFlags_GetCheckType(xz->flags)); in Xz_Compress()
462 RINOK(WriteBytes(&seqSizeOutStream.p, buf, padSize + XzFlags_GetCheckSize(xz->flags))); in Xz_Compress()
463 … RINOK(Xz_AddIndexRecord(xz, block.unpackSize, seqSizeOutStream.processed - padSize, &g_Alloc)); in Xz_Compress()
466 return Xz_WriteFooter(xz, outStream); in Xz_Compress()
474 CXzStream xz; in Xz_Encode() local
476 Xz_Construct(&xz); in Xz_Encode()
480 res = Xz_Compress(&xz, &lzmaf, outStream, inStream, in Xz_Encode()
[all …]
/external/jmonkeyengine/engine/src/core-effects/Common/MatDefs/Water/
DWater15.frag138 texC = (surfacePoint.xz + eyeVecNorm.xz) * scale + m_Time * 0.03 * m_WindDirection;
172 …texC = (surfacePoint.xz + eyeVecNorm.xz * 0.1) * 0.05 + m_Time * 0.05 * m_WindDirection + sin(m_Ti…
173 …vec2 texCoord2 = (surfacePoint.xz + eyeVecNorm.xz * 0.1) * 0.05 + m_Time * 0.1 * m_WindDirection +…
209 …texC = (position.xz + eyeVecNorm.xz * 0.1) * 0.05 + m_Time * 0.05 * windDirection + sin(m_Time + …
210 …vec2 texCoord2 = (position.xz + eyeVecNorm.xz * 0.1) * 0.05 + m_Time * 0.05 * windDirection + sin(…
268 … texC = (surfacePoint.xz + eyeVecNorm.xz * biasFactor) * scale + m_Time * 0.03 * m_WindDirection;
300 texC = surfacePoint.xz * 0.8 + m_WindDirection * m_Time* 1.6;
304 texC = surfacePoint.xz * 0.4 + m_WindDirection * m_Time* 0.8;
308 texC = surfacePoint.xz * 0.2 + m_WindDirection * m_Time * 0.4;
312 texC = surfacePoint.xz * 0.1 + m_WindDirection * m_Time * 0.2;
[all …]
DWater.frag142 texC = (surfacePoint.xz + eyeVecNorm.xz) * scale + m_Time * 0.03 * m_WindDirection;
170 …texC = (surfacePoint.xz + eyeVecNorm.xz * 0.1) * 0.05 + m_Time * 0.05 * m_WindDirection + sin(m_Ti…
171 …vec2 texCoord2 = (surfacePoint.xz + eyeVecNorm.xz * 0.1) * 0.05 + m_Time * 0.1 * m_WindDirection +…
207 …texC = (position.xz + eyeVecNorm.xz * 0.1) * 0.05 + m_Time * 0.05 * windDirection + sin(m_Time + …
208 …vec2 texCoord2 = (position.xz + eyeVecNorm.xz * 0.1) * 0.05 + m_Time * 0.05 * windDirection + sin(…
267 … texC = (surfacePoint.xz + eyeVecNorm.xz * biasFactor) * scale + m_Time * 0.03 * m_WindDirection;
299 texC = surfacePoint.xz * 0.8 + m_WindDirection * m_Time* 1.6;
303 texC = surfacePoint.xz * 0.4 + m_WindDirection * m_Time* 0.8;
307 texC = surfacePoint.xz * 0.2 + m_WindDirection * m_Time * 0.4;
311 texC = surfacePoint.xz * 0.1 + m_WindDirection * m_Time * 0.2;
[all …]
/external/jmonkeyengine/engine/src/terrain/Common/MatDefs/Terrain/
DHeightBasedTerrain.frag44 terrainColor += m_regionWeight * texture2D(m_region1ColorMap, p.xz * m_region1.z);
52 terrainColor += m_regionWeight * (texture2D(m_region2ColorMap, p.xz * m_region2.z));
60 terrainColor += m_regionWeight * texture2D(m_region3ColorMap, p.xz * m_region3.z);
68 terrainColor += m_regionWeight * texture2D(m_region4ColorMap, p.xz * m_region4.z);
DTerrain.frag34 vec4 col2 = texture2D( m_Tex1, coords.xz * m_Tex1Scale );
40 col2 = texture2D( m_Tex2, coords.xz * m_Tex2Scale );
46 col2 = texture2D( m_Tex3, coords.xz * m_Tex3Scale );
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
DTerrainQuad.java995 public float getHeightmapHeight(Vector2f xz) {
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) {
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) {
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);
[all …]
/external/marisa-trie/
DMakefile.in449 dist-xz: distdir
450 tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
481 *.tar.xz*) \
482 xz -dc $(distdir).tar.xz | $(am__untar) ;;\
650 dist-lzma dist-shar dist-tarZ dist-xz dist-zip distcheck \
/external/jmonkeyengine/engine/src/core/com/jme3/math/
DQuaternion.java409 float xz = x * zs; in toRotationMatrix() local
420 result.m02 = (xz + yw); in toRotationMatrix()
424 result.m20 = (xz - yw); in toRotationMatrix()
454 float xz = x * zs; in toRotationMatrix() local
465 result.m02 = (xz + yw); in toRotationMatrix()
469 result.m20 = (xz - yw); in toRotationMatrix()
513 float xz = x * z * norm; in getRotationColumn() local
525 store.z = 2 * (xz - yw); in getRotationColumn()
533 store.x = 2 * (xz + yw); in getRotationColumn()
/external/strace/debian/
Dwatch2 opts="uversionmangle=s/-/./g" http://sf.net/strace/strace-([[:digit:].-]*)\.tar\.xz
/external/squashfs-tools/RELEASE-READMEs/
DREADME-4.245 xz
55 storable in the xz header as either 2^n or as 2^n+2^(n+1).
/external/strace/
Dmake-dist26 mv -f strace-*.tar.xz ..
D.gitignore40 /strace-*.tar.xz
/external/openfst/
DMakefile.in523 dist-xz: distdir
524 tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
557 *.tar.xz*) \
558 xz -dc $(distdir).tar.xz | $(am__untar) ;;\
741 dist-gzip dist-lzip dist-lzma dist-shar dist-tarZ dist-xz \
/external/libusb/
DMakefile.in567 dist-xz: distdir
568 tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
599 *.tar.xz*) \
600 xz -dc $(distdir).tar.xz | $(am__untar) ;;\
773 dist-gzip dist-hook dist-lzma dist-shar dist-tarZ dist-xz \
/external/libmtp/
DMakefile.in563 dist-xz: distdir
564 tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
595 *.tar.xz*) \
596 xz -dc $(distdir).tar.xz | $(am__untar) ;;\
769 dist-gzip dist-lzma dist-shar dist-tarZ dist-xz dist-zip \
/external/libcap-ng/libcap-ng-0.7/
DMakefile.in551 dist-xz: distdir
552 tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
585 *.tar.xz*) \
586 xz -dc $(distdir).tar.xz | $(am__untar) ;;\
767 dist-gzip dist-lzip dist-lzma dist-shar dist-tarZ dist-xz \
/external/opencv/cv/src/
Dcvlinefit.cpp107 float x2 = 0, y2 = 0, z2 = 0, xy = 0, yz = 0, xz = 0; in icvFitLine3D_wods() local
128 xz += x * z * w; in icvFitLine3D_wods()
148 xz += x * z; in icvFitLine3D_wods()
161 xz /= w0; in icvFitLine3D_wods()
172 dxz = xz - x0 * z0; in icvFitLine3D_wods()
/external/llvm/utils/release/
Dexport.sh47 tar cfJ $proj-$release$rc.src.tar.xz $proj-$release$rc.src
/external/elfutils/src/
DMakefile.in642 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 \
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 \
/external/libedit/
DMakefile.in619 dist-xz: distdir
620 tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
657 *.tar.xz*) \
658 xz -dc $(distdir).tar.xz | $(am__untar) ;;\
844 dist-xz dist-zip distcheck distclean distclean-generic \
/external/libexif/
DMakefile.in633 dist-xz: distdir
634 tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
667 *.tar.xz*) \
668 xz -dc $(distdir).tar.xz | $(am__untar) ;;\
840 dist-gzip dist-hook dist-lzma dist-shar dist-tarZ dist-xz \
/external/libvncserver/
DMakefile.in687 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 \

1234