HomeSort by relevance Sort by last modified time
    Searched refs:slotNdx (Results 1 - 6 of 6) sorted by null

  /external/deqp/framework/delibs/depool/
dePoolHash.h 125 int slotNdx = 0; \
126 while (slotNdx < slotTableSize) \
128 if (hash->slotTable[slotNdx]) \
130 slotNdx++; \
132 DE_ASSERT(slotNdx < slotTableSize); \
133 iter->curSlotIndex = slotNdx; \
134 iter->curSlot = hash->slotTable[slotNdx]; \
217 int slotNdx; \
218 for (slotNdx = 0; slotNdx < hash->slotTableSize; slotNdx++)
    [all...]
dePoolSet.h 124 int slotNdx = 0; \
125 while (slotNdx < slotTableSize) \
127 if (hash->slotTable[slotNdx]) \
129 slotNdx++; \
131 DE_ASSERT(slotNdx < slotTableSize); \
132 iter->curSlotIndex = slotNdx; \
133 iter->curSlot = hash->slotTable[slotNdx]; \
225 int slotNdx; \
226 for (slotNdx = 0; slotNdx < set->slotTableSize; slotNdx++)
    [all...]
dePoolHashSet.h 182 int slotNdx; \
188 for (slotNdx = 0; slotNdx < hash->slotTableSize; slotNdx++) \
190 const HASHTYPENAME##Slot* slot = hash->slotTable[slotNdx]; \
  /external/deqp/framework/delibs/decpp/
deAppendList.hpp 235 const size_t slotNdx = elementNdx - (blockNdx * m_blockSize);
249 if (slotNdx+1 == m_blockSize)
267 new (&curBlock->elements[slotNdx]) ElementType(value);
  /external/deqp/external/vulkancts/framework/vulkan/
vkAllocationCallbackUtil.cpp 401 const size_t slotNdx = ptrToSlotIndex[record.data.allocation.returnedPtr];
402 if (!allocations[slotNdx].isLive)
404 allocations[slotNdx].isLive = true;
405 allocations[slotNdx].record = record;
455 const size_t slotNdx = ptrToSlotIndex[record.data.reallocation.returnedPtr];
456 if (!allocations[slotNdx].isLive)
458 allocations[slotNdx].isLive = true;
459 allocations[slotNdx].record = record;
500 const size_t slotNdx = ptrToSlotIndex[record.data.free.mem];
502 if (allocations[slotNdx].isLive
    [all...]
  /external/deqp/modules/gles3/functional/
es3fInstancedRenderingTests.cpp 480 for (int slotNdx = 0; slotNdx < numSlots; slotNdx++)
482 int curLoc = location + slotNdx;

Completed in 103 milliseconds