Home
last modified time | relevance | path

Searched refs:ArrayCache (Results 1 – 25 of 71) sorted by relevance

123

/aosp_15_r20/external/xz-java/src/org/tukaani/xz/
H A DArrayCache.java67 public class ArrayCache { class
71 private static final ArrayCache dummyCache = new ArrayCache();
77 private static volatile ArrayCache defaultCache = dummyCache;
83 public static ArrayCache getDummyCache() { in getDummyCache()
93 public static ArrayCache getDefaultCache() { in getDefaultCache()
104 public static void setDefaultCache(ArrayCache arrayCache) { in setDefaultCache()
117 public ArrayCache() {} in ArrayCache() method in ArrayCache
H A DLZMAInputStream.java51 private ArrayCache arrayCache;
219 public LZMAInputStream(InputStream in, ArrayCache arrayCache) in LZMAInputStream()
256 this(in, memoryLimit, ArrayCache.getDefaultCache()); in LZMAInputStream()
297 ArrayCache arrayCache) throws IOException { in LZMAInputStream()
373 ArrayCache.getDefaultCache()); in LZMAInputStream()
412 ArrayCache.getDefaultCache()); in LZMAInputStream()
457 ArrayCache arrayCache) in LZMAInputStream()
500 ArrayCache.getDefaultCache()); in LZMAInputStream()
546 ArrayCache arrayCache) in LZMAInputStream()
554 ArrayCache arrayCache) in initialize()
[all …]
H A DSingleXZInputStream.java44 private final ArrayCache arrayCache;
127 public SingleXZInputStream(InputStream in, ArrayCache arrayCache) in SingleXZInputStream()
203 ArrayCache arrayCache) throws IOException { in SingleXZInputStream()
261 this(in, memoryLimit, verifyCheck, ArrayCache.getDefaultCache()); in SingleXZInputStream()
305 boolean verifyCheck, ArrayCache arrayCache) in SingleXZInputStream()
311 byte[] streamHeader, ArrayCache arrayCache) in SingleXZInputStream()
H A DLZMAOutputStream.java27 private final ArrayCache arrayCache;
46 ArrayCache arrayCache) in LZMAOutputStream()
130 this(out, options, inputSize, ArrayCache.getDefaultCache()); in LZMAOutputStream()
156 long inputSize, ArrayCache arrayCache) in LZMAOutputStream()
182 this(out, options, useEndMarker, ArrayCache.getDefaultCache()); in LZMAOutputStream()
208 boolean useEndMarker, ArrayCache arrayCache) in LZMAOutputStream()
H A DXZOutputStream.java55 private final ArrayCache arrayCache;
121 ArrayCache arrayCache) in XZOutputStream()
177 int checkType, ArrayCache arrayCache) in XZOutputStream()
226 ArrayCache arrayCache) in XZOutputStream()
251 this(out, filterOptions, checkType, ArrayCache.getDefaultCache()); in XZOutputStream()
277 int checkType, ArrayCache arrayCache) in XZOutputStream()
H A DXZInputStream.java64 private final ArrayCache arrayCache;
134 public XZInputStream(InputStream in, ArrayCache arrayCache) in XZInputStream()
207 ArrayCache arrayCache) throws IOException { in XZInputStream()
264 this(in, memoryLimit, verifyCheck, ArrayCache.getDefaultCache()); in XZInputStream()
306 ArrayCache arrayCache) throws IOException { in XZInputStream()
H A DFilterOptions.java65 return getOutputStream(out, ArrayCache.getDefaultCache()); in getOutputStream()
77 FinishableOutputStream out, ArrayCache arrayCache); in getOutputStream()
91 return getInputStream(in, ArrayCache.getDefaultCache()); in getInputStream()
99 InputStream in, ArrayCache arrayCache) throws IOException; in getInputStream()
H A DResettableArrayCache.java21 public class ResettableArrayCache extends ArrayCache {
22 private final ArrayCache arrayCache;
31 public ResettableArrayCache(ArrayCache arrayCache) { in ResettableArrayCache()
37 if (arrayCache == ArrayCache.getDummyCache()) { in ResettableArrayCache()
H A DSeekableXZInputStream.java95 private final ArrayCache arrayCache;
265 public SeekableXZInputStream(SeekableInputStream in, ArrayCache arrayCache) in SeekableXZInputStream()
350 ArrayCache arrayCache) in SeekableXZInputStream()
413 this(in, memoryLimit, verifyCheck, ArrayCache.getDefaultCache()); in SeekableXZInputStream()
463 boolean verifyCheck, ArrayCache arrayCache) in SeekableXZInputStream()
H A DLZMA2InputStream.java47 private final ArrayCache arrayCache;
140 this(in, dictSize, presetDict, ArrayCache.getDefaultCache()); in LZMA2InputStream()
165 ArrayCache arrayCache) { in LZMA2InputStream()
H A DSPARCOptions.java26 ArrayCache arrayCache) { in getOutputStream()
30 public InputStream getInputStream(InputStream in, ArrayCache arrayCache) { in getInputStream()
H A DARMOptions.java26 ArrayCache arrayCache) { in getOutputStream()
30 public InputStream getInputStream(InputStream in, ArrayCache arrayCache) { in getInputStream()
H A DIA64Options.java26 ArrayCache arrayCache) { in getOutputStream()
30 public InputStream getInputStream(InputStream in, ArrayCache arrayCache) { in getInputStream()
H A DPowerPCOptions.java26 ArrayCache arrayCache) { in getOutputStream()
30 public InputStream getInputStream(InputStream in, ArrayCache arrayCache) { in getInputStream()
H A DX86Options.java26 ArrayCache arrayCache) { in getOutputStream()
30 public InputStream getInputStream(InputStream in, ArrayCache arrayCache) { in getInputStream()
H A DARMThumbOptions.java26 ArrayCache arrayCache) { in getOutputStream()
30 public InputStream getInputStream(InputStream in, ArrayCache arrayCache) { in getInputStream()
H A DDeltaOptions.java79 ArrayCache arrayCache) { in getOutputStream()
87 public InputStream getInputStream(InputStream in, ArrayCache arrayCache) { in getInputStream()
H A DUncompressedLZMA2OutputStream.java16 private final ArrayCache arrayCache;
36 ArrayCache arrayCache) { in UncompressedLZMA2OutputStream()
/aosp_15_r20/external/xz-java/src/org/tukaani/xz/rangecoder/
H A DRangeEncoderToBuffer.java15 import org.tukaani.xz.ArrayCache;
21 public RangeEncoderToBuffer(int bufSize, ArrayCache arrayCache) { in RangeEncoderToBuffer()
26 public void putArraysToCache(ArrayCache arrayCache) { in putArraysToCache()
H A DRangeDecoderFromBuffer.java15 import org.tukaani.xz.ArrayCache;
24 public RangeDecoderFromBuffer(int inputSizeMax, ArrayCache arrayCache) { in RangeDecoderFromBuffer()
31 public void putArraysToCache(ArrayCache arrayCache) { in putArraysToCache()
/aosp_15_r20/external/xz-java/src/org/tukaani/xz/lz/
H A DLZEncoder.java15 import org.tukaani.xz.ArrayCache;
123 ArrayCache arrayCache) { in getInstance()
141 int niceLen, int matchLenMax, ArrayCache arrayCache) { in LZEncoder()
153 public void putArraysToCache(ArrayCache arrayCache) { in putArraysToCache()
H A DHash234.java13 import org.tukaani.xz.ArrayCache;
53 Hash234(int dictSize, ArrayCache arrayCache) { in Hash234()
62 void putArraysToCache(ArrayCache arrayCache) { in putArraysToCache()
H A DLZDecoder.java15 import org.tukaani.xz.ArrayCache;
28 public LZDecoder(int dictSize, byte[] presetDict, ArrayCache arrayCache) { in LZDecoder()
40 public void putArraysToCache(ArrayCache arrayCache) { in putArraysToCache()
H A DHC4.java13 import org.tukaani.xz.ArrayCache;
38 ArrayCache arrayCache) { in HC4()
60 public void putArraysToCache(ArrayCache arrayCache) { in putArraysToCache()
H A DBT4.java13 import org.tukaani.xz.ArrayCache;
31 ArrayCache arrayCache) { in BT4()
49 public void putArraysToCache(ArrayCache arrayCache) { in putArraysToCache()

123