Searched refs:SparseArrayBitmapPool (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Gallery2/src/com/android/photos/data/
H A DGalleryBitmapPool.java24 import com.android.photos.data.SparseArrayBitmapPool.Node;
38 // SparseArrayBitmapPool instances to back the GalleryBitmapPool, which affords
54 private SparseArrayBitmapPool [] mPools;
58 mPools = new SparseArrayBitmapPool[3];
59 mPools[POOL_INDEX_SQUARE] = new SparseArrayBitmapPool(capacityBytes / 3, mSharedNodePool);
60 mPools[POOL_INDEX_PHOTO] = new SparseArrayBitmapPool(capacityBytes / 3, mSharedNodePool);
61 mPools[POOL_INDEX_MISC] = new SparseArrayBitmapPool(capacityBytes / 3, mSharedNodePool);
71 private SparseArrayBitmapPool getPoolForDimensions(int width, int height) {
118 for (SparseArrayBitmapPool p : mPools) {
128 SparseArrayBitmapPool poo
[all...]
H A DSparseArrayBitmapPool.java30 public class SparseArrayBitmapPool { class
58 public SparseArrayBitmapPool(int capacityBytes, Pool<Node> nodePool) { method in class:SparseArrayBitmapPool

Completed in 156 milliseconds