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

  /device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/
Pool.c 117 Internal Function. Allocate a pool by specified PoolIndex.
120 @param PoolIndex Index which indicate the Pool size.
130 IN UINTN PoolIndex,
141 ASSERT (PoolIndex <= MAX_POOL_INDEX);
144 if (PoolIndex == MAX_POOL_INDEX) {
150 } else if (!IsListEmpty (&mSmmPoolLists[SmmPoolType][PoolIndex])) {
151 Hdr = BASE_CR (GetFirstNode (&mSmmPoolLists[SmmPoolType][PoolIndex]), FREE_POOL_HEADER, Link);
154 Status = InternalAllocPoolByIndex (PoolType, PoolIndex + 1, &Hdr);
159 InsertHeadList (&mSmmPoolLists[SmmPoolType][PoolIndex], &Hdr->Link);
165 Hdr->Header.Size = MIN_POOL_SIZE << PoolIndex;
    [all...]
  /external/swiftshader/src/OpenGL/compiler/
PoolAlloc.cpp 26 OS_TLSIndex PoolIndex = OS_INVALID_TLS_INDEX;
30 assert(PoolIndex == OS_INVALID_TLS_INDEX);
32 PoolIndex = OS_AllocTLSIndex();
33 return PoolIndex != OS_INVALID_TLS_INDEX;
38 assert(PoolIndex != OS_INVALID_TLS_INDEX);
40 OS_FreeTLSIndex(PoolIndex);
41 PoolIndex = OS_INVALID_TLS_INDEX;
46 assert(PoolIndex != OS_INVALID_TLS_INDEX);
47 return static_cast<TPoolAllocator*>(OS_GetTLSValue(PoolIndex));
52 assert(PoolIndex != OS_INVALID_TLS_INDEX)
    [all...]
  /external/deqp-deps/glslang/glslang/MachineIndependent/
PoolAlloc.cpp 44 OS_TLSIndex PoolIndex;
49 return *static_cast<TPoolAllocator*>(OS_GetTLSValue(PoolIndex));
55 OS_SetTLSValue(PoolIndex, poolAllocator);
62 if ((PoolIndex = OS_AllocTLSIndex()) == OS_INVALID_TLS_INDEX)

Completed in 415 milliseconds