Home
last modified time | relevance | path

Searched refs:filterProps (Results 1 – 5 of 5) sorted by relevance

/external/lzma/Java/Tukaani/src/org/tukaani/xz/
DBlockInputStream.java71 byte[][] filterProps = new byte[filterCount][]; in BlockInputStream()
109 filterProps[i] = new byte[(int)filterPropsSize]; in BlockInputStream()
110 bufStream.read(filterProps[i]); in BlockInputStream()
167 filters[i] = new LZMA2Decoder(filterProps[i]); in BlockInputStream()
170 filters[i] = new DeltaDecoder(filterProps[i]); in BlockInputStream()
173 filters[i] = new BCJDecoder(filterIDs[i], filterProps[i]); in BlockInputStream()
DBlockOutputStream.java55 byte[] filterProps = filters[i].getFilterProps(); in BlockOutputStream()
56 EncoderUtil.encodeVLI(bufStream, filterProps.length); in BlockOutputStream()
57 bufStream.write(filterProps); in BlockOutputStream()
/external/lzma/C/
DXzEnc.h26 const CXzFilterProps *filterProps; member
DXzEnc.c386 p->filterProps = 0; in XzProps_Init()
413 const CXzFilterProps *fp = props->filterProps; in Xz_Compress()
/external/lzma/CPP/7zip/Archive/
DXzHandler.cpp897 xzProps.filterProps = (_filterId != 0 ? &filter : NULL); in UpdateItems()