Lines Matching refs:arrayCache
16 * An ArrayCache wrapper that remembers what has been allocated
21 public class ResettableArrayCache extends ArrayCache {
22 private final ArrayCache arrayCache;
24 // Lists of arrays that have been allocated from the arrayCache.
29 * Creates a new ResettableArrayCache based on the given ArrayCache.
31 public ResettableArrayCache(ArrayCache arrayCache) {
32 this.arrayCache = arrayCache;
37 if (arrayCache == ArrayCache.getDummyCache()) {
47 byte[] array = arrayCache.getByteArray(size, fillWithZeros);
68 arrayCache.putArray(array);
73 int[] array = arrayCache.getIntArray(size, fillWithZeros);
92 arrayCache.putArray(array);
97 * Puts all allocated arrays back to the underlying ArrayCache
107 arrayCache.putArray(byteArrays.get(i));
114 arrayCache.putArray(intArrays.get(i));