Home | History | Annotate | Download | only in xz

Lines Matching refs:arrayCache

46     private final ArrayCache arrayCache;
139 this(in, dictSize, presetDict, ArrayCache.getDefaultCache());
147 * except that this also takes the <code>arrayCache</code> argument.
159 * @param arrayCache cache to be used for allocating large arrays
164 ArrayCache arrayCache) {
170 this.arrayCache = arrayCache;
172 this.rc = new RangeDecoderFromBuffer(COMPRESSED_SIZE_MAX, arrayCache);
173 this.lz = new LZDecoder(getDictSize(dictSize), presetDict, arrayCache);
375 lz.putArraysToCache(arrayCache);
378 rc.putArraysToCache(arrayCache);