Searched defs:BytesBuffer (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DBytesBufferPool.java30 public static class BytesBuffer { class in class:BytesBufferPool
35 private BytesBuffer(int capacity) { method in class:BytesBufferPool.BytesBuffer
66 private final ArrayList<BytesBuffer> mList;
69 mList = new ArrayList<BytesBuffer>(poolSize);
74 public synchronized BytesBuffer get() {
76 return n > 0 ? mList.remove(n - 1) : new BytesBuffer(mBufferSize);
79 public synchronized void recycle(BytesBuffer buffer) {

Completed in 81 milliseconds