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

  /external/chromium_org/third_party/WebKit/Source/wtf/
PartitionAlloc.cpp 62 root->seedPage.numAllocatedSlots = 0;
102 if (page->numAllocatedSlots)
202 page->numAllocatedSlots = 1;
258 next->numAllocatedSlots++;
265 ASSERT(next->numAllocatedSlots == partitionBucketSlots(bucket));
266 next->numAllocatedSlots = -next->numAllocatedSlots;
304 if (LIKELY(page->numAllocatedSlots == 0)) {
321 page->numAllocatedSlots = -page->numAllocatedSlots - 2
    [all...]
PartitionAlloc.h 129 int numAllocatedSlots; // Deliberately signed.
196 page->numAllocatedSlots++;
240 --page->numAllocatedSlots;
241 if (UNLIKELY(page->numAllocatedSlots <= 0))
PartitionAllocTest.cpp 92 EXPECT_EQ(numSlots, static_cast<size_t>(bucket->currPage->numAllocatedSlots));
102 EXPECT_EQ(numSlots, static_cast<size_t>(abs(page->numAllocatedSlots)));
110 EXPECT_EQ(0, page->numAllocatedSlots);
203 EXPECT_EQ(0, page->numAllocatedSlots);
215 EXPECT_EQ(0, page->numAllocatedSlots);
216 EXPECT_EQ(0, page2->numAllocatedSlots);
291 EXPECT_EQ(numToFillFreeListPage, freePageBucket->currPage->numAllocatedSlots);
303 EXPECT_EQ(1, freePageBucket->currPage->numAllocatedSlots);
316 EXPECT_EQ(2, freePageBucket->currPage->numAllocatedSlots);

Completed in 71 milliseconds