OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SparseArrayBitmapPool
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Gallery2/src/com/android/photos/data/
GalleryBitmapPool.java
24
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
pool = getPoolForDimensions(width, height)
[
all
...]
SparseArrayBitmapPool.java
30
public class
SparseArrayBitmapPool
{
58
public
SparseArrayBitmapPool
(int capacityBytes, Pool<Node> nodePool) {
Completed in 187 milliseconds