HomeSort by relevance Sort by last modified time
    Searched refs:KeyPool (Results 1 - 2 of 2) sorted by null

  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
AttributeStrategy.java 11 private final KeyPool keyPool = new KeyPool();
15 final Key key = keyPool.get(bitmap.getWidth(), bitmap.getHeight(), bitmap.getConfig());
22 final Key key = keyPool.get(width, height, config);
61 static class KeyPool extends BaseKeyPool<Key> {
76 private final KeyPool pool;
82 public Key(KeyPool pool) {
SizeStrategy.java 18 private final KeyPool keyPool = new KeyPool();
25 final Key key = keyPool.get(size);
36 Key key = keyPool.get(size);
40 keyPool.offer(key);
41 key = keyPool.get(possibleSize);
124 static class KeyPool extends BaseKeyPool<Key> {
140 private final KeyPool pool;
143 Key(KeyPool pool)
    [all...]

Completed in 534 milliseconds