Home
last modified time | relevance | path

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

/third_party/lzma/CPP/7zip/Compress/
H A DXzDecoder.h17 CXzDecMtHandle xz; member
27 xz(NULL), in CDecoder()
37 if (xz) in ~CDecoder()
38 XzDecMt_Destroy(xz); in ~CDecoder()
41 /* Decode() can return S_OK, if there is data after good xz streams, and that data is not new xz stream.
H A DXzDecoder.cpp41 if (!xz) in Decode()
43 xz = XzDecMt_Create(&g_Alloc, &g_MidAlloc); in Decode()
44 if (!xz) in Decode()
79 SRes res = XzDecMt_Decode(xz, in Decode()
/third_party/json/
H A DMakefile218 json.tar.xz:
221 gtar --sort=name --mtime="@$(shell git log -1 --pretty=%ct)" --owner=0 --group=0 --numeric-owner --pax-option=exthdr.name=%d/PaxHeaders/%f,delete=atime,delete=ctime --create --file - json | xz --compress -9e --threads=2 - > json.tar.xz
230 release: include.zip json.tar.xz
236 gpg --armor --detach-sig json.tar.xz
239 mv $(AMALGAMATED_FILE).asc $(AMALGAMATED_FWD_FILE).asc json.tar.xz json.tar.xz.asc include.zip include.zip.asc release_files
240 cd release_files ; shasum -a 256 json.hpp include.zip json.tar.xz > hashes.txt
/third_party/node/
H A DMakefile1010 # OSX doesn't have xz installed by default, http://macpkg.sourceforge.net/
1011 HAS_XZ ?= $(shell command -v xz > /dev/null 2>&1; [ $$? -eq 0 ] && echo 1 || echo 0)
1012 # Supply SKIP_XZ=1 to explicitly skip .tar.xz creation
1019 .PHONY: check-xz
1021 check-xz:
1022 $(info SKIP_XZ=1 supplied, skipping .tar.xz creation)
1025 check-xz:
1027 check-xz:
1028 $(error No xz command, cannot continue)
1033 release-only: check-xz
[all...]
/third_party/rust/crates/bindgen/ci/
H A Dtest.sh55 wget --no-verbose $base_url/${LLVM}.tar.xz
57 tar xf ${LLVM}.tar.xz -C "${LLVM_DIRECTORY}" --strip-components=1
/third_party/libsnd/Scripts/
H A Dstatic-deps-build.mk25 ogg_tarball = $(ogg_version).tar.xz
26 vorbis_tarball = $(vorbis_version).tar.xz
27 flac_tarball = $(flac_version).tar.xz
/third_party/skia/third_party/externals/swiftshader/third_party/marl/kokoro/windows/
H A Dpresubmit.bat56 wget -q http://repo.msys2.org/mingw/x86_64/mingw-w64-x86_64-gcc-7.3.0-2-any.pkg.tar.xz
57 wget -q http://repo.msys2.org/mingw/x86_64/mingw-w64-x86_64-gcc-libs-7.3.0-2-any.pkg.tar.xz
61 c:\tools\msys64\usr\bin\bash --login -c "pacman -U --noconfirm mingw-w64-x86_64-gcc*-7.3.0-2-any.pkg.tar.xz"
/third_party/skia/third_party/externals/freetype/builds/
H A Dtoplevel.mk240 rm -f freetype-$(version).tar.xz
270 | xz -c > freetype-$(version).tar.xz
/third_party/libunwind/libunwind/tests/
H A Drun-coredump-unwind26 xz "$mini_debuginfo"
27 mini_debuginfo="${mini_debuginfo}.xz"
/third_party/lzma/C/
H A DXzEnc.c620 // xz-auto in XzProps_Normalize()
625 // if (xz-auto && lzma2-solid) - we use solid for both in XzProps_Normalize()
634 // if (xz-auto && (lzma2-auto || lzma2-fixed_) in XzProps_Normalize()
635 // we calculate block size for lzma2 and use that block size for xz, lzma2 uses single-chunk per block in XzProps_Normalize()
656 // xz-fixed in XzProps_Normalize()
657 // we can use xz::reduceSize or xz::blockSize as base for lzmaProps::reduceSize in XzProps_Normalize()
1341 CXzEncHandle xz = XzEnc_Create(&g_Alloc, &g_BigAlloc); in Xz_Encode() local
1342 if (!xz) in Xz_Encode()
1344 res = XzEnc_SetProps(xz, prop in Xz_Encode()
[all...]
/third_party/skia/third_party/externals/freetype/src/base/
H A Dftcalc.c824 FT_Pos xz, yz; in FT_Vector_Transform_Scaled() local
832 xz = ADD_LONG( FT_MulDiv( vector->x, matrix->xx, val ), in FT_Vector_Transform_Scaled()
837 vector->x = xz; in FT_Vector_Transform_Scaled()
H A Dftoutln.c686 FT_Pos xz, yz; in FT_Vector_Transform() local
692 xz = FT_MulFix( vector->x, matrix->xx ) + in FT_Vector_Transform()
698 vector->x = xz; in FT_Vector_Transform()
/third_party/jerryscript/tests/jerry/es2015/
H A Dregexp-unicode.js119 result = /\xz/.exec("xz");
121 assert (result[0] === "xz");
124 new RegExp("\\xz", "u").exec("xz");
/third_party/python/PCbuild/
H A Dget_externals.bat61 set libraries=%libraries% xz-5.2.5
/third_party/elfutils/tests/
H A Drun-debuginfod-find.sh126 env LD_LIBRARY_PATH=$ldpath DEBUGINFOD_URLS= ${abs_builddir}/../debuginfod/debuginfod $VERBOSE -F -R -d $DB -p $PORT1 -t0 -g0 --fdcache-fds 1 --fdcache-mbs 2 --fdcache-mintmp 0 -Z .tar.xz -Z .tar.bz2=bzcat -v R F Z L > vlog$PORT1 2>&1 &
319 txz=$(find Z -name \*tar.xz | wc -l)
320 wait_ready $PORT1 'scanned_files_total{source=".tar.xz archive"}' $txz
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DDateTimeGeneratorTest.java1768 "xz-RO", "xz-US", // unknown language with known regions in test_jConsistencyOddLocales()
1769 "xz", // unknown language in test_jConsistencyOddLocales()
1770 "xz-ZX", // unknown language with unknown country in test_jConsistencyOddLocales()
/third_party/lzma/CPP/7zip/Archive/
H A DXzHandler.cpp753 CXzUnpackerCPP2 xz; member
914 RINOK(DecodeBlock(xz, _handlerSpec->_seqStream, block.StreamFlags, block.PackSize, in Read()
1424 && !methodName.IsEqualTo_Ascii_NoCase("xz")) in SetProperties()
1437 "xz", "xz txz", "* .tar", 0xC,
/third_party/vk-gl-cts/framework/common/
H A DtcuVector.hpp130 VecAccess<T, Size, 2> xz (void) { DE_ASSERT(Size >= 2); return VecAccess<T, Size, 2>(*this, 0, 2); } in xz() function in tcu::Vector
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
H A DSamplerCore.cpp1127 duvdxy = Float4(dudxy.xz, dvdxy.xz); in computeLod2D()
1953 c.x = Float4(c.x.xz, c.z.xz); in sampleTexel()
/third_party/skia/third_party/externals/swiftshader/src/Shader/
H A DSamplerCore.cpp1397 duvdxy = Float4(dudxy.xz, dvdxy.xz); in computeLod()
2153 c.x = Float4(c.x.xz, c.z.xz); in sampleTexel()
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A DReactor.hpp1584 SwizzleMask2<Vector4, 0x0222> xz; member
/third_party/rust/crates/bindgen/bindgen-tests/tests/
H A Dstylo.hpp[all...]

Completed in 50 milliseconds