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.h120 size_t maxElements = (1ULL << indexBits); in add() local
121 if (mLiveEntries == maxElements) return INVALID_ENTITY_HANDLE; in add()
128 if (maxElements < neededCapacity) return INVALID_ENTITY_HANDLE; in add()
132 if (nextCapacity > maxElements) nextCapacity = maxElements; in add()
174 size_t maxElements = (1ULL << indexBits); in addFixed() local
175 if (mLiveEntries == maxElements) return INVALID_ENTITY_HANDLE; in addFixed()
183 if (maxElements < neededCapacity) return INVALID_ENTITY_HANDLE; in addFixed()
187 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.cpp1174 int maxElements = findMaxIndex(count,indices_type,indices) + 1; in convertIndirect() local
1177 int size = attribSize * maxElements; in convertIndirect()