Lines Matching refs:allocatedCount

338     uint16_t     allocatedCount;  /* Number of objects allocated (obviously by the owning thread) */  member in rml::internal::LocalBlockFields
357 if (allocatedCount > 0) return false; in empty()
395 MALLOC_ASSERT(allocatedCount>0, msg); in checkFreePrecond()
406 MALLOC_ASSERT(allocatedCount <= (slabSize-sizeof(Block))/objectSize in checkFreePrecond()
1340 isFull = (allocatedCount*objectSize > threshold) ? true : false; in adjustFullness()
1367 MALLOC_ASSERT( allocatedCount == 0, ASSERT_TEXT ); in restoreBumpPtr()
1378 allocatedCount--; in freeOwnObject()
1379 MALLOC_ASSERT( allocatedCount < (slabSize-sizeof(Block))/objectSize, ASSERT_TEXT ); in freeOwnObject()
1475 MALLOC_ASSERT( allocatedCount <= (slabSize-sizeof(Block))/objectSize, ASSERT_TEXT ); in privatizePublicFreeList()
1477 allocatedCount--; in privatizePublicFreeList()
1481 allocatedCount--; in privatizePublicFreeList()
1482 MALLOC_ASSERT( allocatedCount < (slabSize-sizeof(Block))/objectSize, ASSERT_TEXT ); in privatizePublicFreeList()
1569 allocatedCount = 0; in cleanBlockHeader()
1714 MALLOC_ASSERT( allocatedCount==0, ASSERT_TEXT ); in reset()
1892 firstStartupBlock->allocatedCount++; in allocate()
1910 && allocatedCount>0, ASSERT_TEXT); in free()
1914 if (0 == --allocatedCount) { in free()
2115 MALLOC_ASSERT( allocatedCount < (slabSize-sizeof(Block))/objectSize, ASSERT_TEXT ); in allocateFromFreeList()
2116 allocatedCount++; in allocateFromFreeList()
2130 MALLOC_ASSERT( allocatedCount < (slabSize-sizeof(Block))/objectSize, ASSERT_TEXT ); in allocateFromBumpPtr()
2131 allocatedCount++; in allocateFromBumpPtr()