OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mFreeList
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Gallery3D/src/com/cooliris/media/
Pool.java
20
private final E[]
mFreeList
;
24
mFreeList
= objects;
30
if (index >= 0 && index <
mFreeList
.length) {
31
E object =
mFreeList
[index];
32
mFreeList
[index] = null;
40
if (index >= 0 && index <
mFreeList
.length) {
41
mFreeList
[index] = object;
ConcurrentPool.java
23
private AtomicReferenceArray<E>
mFreeList
;
27
mFreeList
= new AtomicReferenceArray<E>(objects);
33
E object =
mFreeList
.get(index);
34
mFreeList
.set(index, null);
40
while (!
mFreeList
.compareAndSet(index, null, object)) {
Completed in 128 milliseconds