Home | History | Annotate | Download | only in compiler

Lines Matching refs:PoolIndex

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);
53 OS_SetTLSValue(PoolIndex, poolAllocator);