Home
last modified time | relevance | path

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

/device/generic/vulkan-cereal/base/
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()
/device/generic/goldfish-opengl/android-emu/android/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;
/device/generic/vulkan-cereal/stream-servers/glestranslator/GLcommon/
DGLEScontext.cpp1151 int maxElements = findMaxIndex(count,indices_type,indices) + 1; in convertIndirect() local
1154 int size = attribSize * maxElements; in convertIndirect()