Home
last modified time | relevance | path

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

/external/xz-java/src/org/tukaani/xz/
DBlockInputStream.java72 byte[][] filterProps = new byte[filterCount][]; in BlockInputStream()
110 filterProps[i] = new byte[(int)filterPropsSize]; in BlockInputStream()
111 bufStream.read(filterProps[i]); in BlockInputStream()
168 filters[i] = new LZMA2Decoder(filterProps[i]); in BlockInputStream()
171 filters[i] = new DeltaDecoder(filterProps[i]); in BlockInputStream()
174 filters[i] = new BCJDecoder(filterIDs[i], filterProps[i]); in BlockInputStream()
DBlockOutputStream.java56 byte[] filterProps = filters[i].getFilterProps(); in BlockOutputStream()
57 EncoderUtil.encodeVLI(bufStream, filterProps.length); in BlockOutputStream()
58 bufStream.write(filterProps); in BlockOutputStream()
/external/lzma/CPP/7zip/Compress/
DXzEncoder.cpp136 xzProps.filterProps.id = prop.ulVal; in SetCoderProp()
175 xzProps.filterProps.delta = delta; in SetCoderProp()
178 xzProps.filterProps.id = id32; in SetCoderProp()
/external/lzma/C/
DXzEnc.h32 CXzFilterProps filterProps; member
DXzEnc.c484 XzFilterProps_Init(&p->filterProps); in XzProps_Init()
728 const CXzFilterProps *fp = &props->filterProps; in Xz_CompressBlock()
/external/lzma/CPP/7zip/Archive/
DXzHandler.cpp1121 CXzFilterProps &filter = xzProps.filterProps; in UpdateItems()