Home
last modified time | relevance | path

Searched refs:maxElements (Results 1 – 3 of 3) sorted by relevance

/hardware/google/aemu/base/include/aemu/base/containers/
DEntityManager.h132 size_t maxElements = (1ULL << indexBits); in add() local
133 if (mLiveEntries == maxElements) return INVALID_ENTITY_HANDLE; in add()
140 if (maxElements < neededCapacity) return INVALID_ENTITY_HANDLE; in add()
144 if (nextCapacity > maxElements) nextCapacity = maxElements; in add()
186 size_t maxElements = (1ULL << indexBits); in addFixed() local
187 if (mLiveEntries == maxElements) return INVALID_ENTITY_HANDLE; in addFixed()
195 if (maxElements < neededCapacity) return INVALID_ENTITY_HANDLE; in addFixed()
199 if (nextCapacity > maxElements) nextCapacity = maxElements; in addFixed()
/hardware/google/gfxstream/guest/android-emu/aemu/base/containers/
DEntityManager.h147 uint64_t maxElements = (1ULL << indexBits);
148 if (mLiveEntries == maxElements) return INVALID_ENTITY_HANDLE;
155 if (maxElements < neededCapacity) return INVALID_ENTITY_HANDLE;
159 if (nextCapacity > maxElements) nextCapacity = maxElements;
201 uint64_t maxElements = (1ULL << indexBits);
202 if (mLiveEntries == maxElements) return INVALID_ENTITY_HANDLE;
210 if (maxElements < neededCapacity) return INVALID_ENTITY_HANDLE;
214 if (nextCapacity > maxElements) nextCapacity = maxElements;
/hardware/google/gfxstream/host/gl/glestranslator/GLcommon/
DGLEScontext.cpp1168 int maxElements = findMaxIndex(count,indices_type,indices) + 1; in convertIndirect() local
1171 int size = attribSize * maxElements; in convertIndirect()