allocator 81 Source/platform/PODArena.h static PassRefPtr<PODArena> create(PassRefPtr<Allocator> allocator) allocator 83 Source/platform/PODArena.h return adoptRef(new PODArena(allocator)); allocator 112 Source/platform/PODArena.h explicit PODArena(PassRefPtr<Allocator> allocator) allocator 113 Source/platform/PODArena.h : m_allocator(allocator) allocator 154 Source/platform/PODArena.h Chunk(Allocator* allocator, size_t size) allocator 155 Source/platform/PODArena.h : m_allocator(allocator) allocator 67 Source/platform/PODArenaTest.cpp RefPtr<TrackedAllocator> allocator = TrackedAllocator::create(); allocator 68 Source/platform/PODArenaTest.cpp RefPtr<PODArena> arena = PODArena::create(allocator); allocator 72 Source/platform/PODArenaTest.cpp EXPECT_GT(allocator->numRegions(), 1); allocator 78 Source/platform/PODArenaTest.cpp RefPtr<TrackedAllocator> allocator = TrackedAllocator::create(); allocator 80 Source/platform/PODArenaTest.cpp RefPtr<PODArena> arena = PODArena::create(allocator); allocator 83 Source/platform/PODArenaTest.cpp EXPECT_GT(allocator->numRegions(), 0); allocator 85 Source/platform/PODArenaTest.cpp EXPECT_TRUE(allocator->isEmpty()); allocator 42 Source/platform/PODFreeListArena.h static PassRefPtr<PODFreeListArena> create(PassRefPtr<PODArena::Allocator> allocator) allocator 44 Source/platform/PODFreeListArena.h return adoptRef(new PODFreeListArena(allocator)); allocator 88 Source/platform/PODFreeListArena.h explicit PODFreeListArena(PassRefPtr<PODArena::Allocator> allocator) allocator 89 Source/platform/PODFreeListArena.h : m_arena(PODArena::create(allocator)), m_freeList(0) { } allocator 75 Source/platform/PODFreeListArenaTest.cpp RefPtr<TrackedAllocator> allocator = TrackedAllocator::create(); allocator 76 Source/platform/PODFreeListArenaTest.cpp RefPtr<PODFreeListArena<TestClass1> > arena = PODFreeListArena<TestClass1>::create(allocator); allocator 80 Source/platform/PODFreeListArenaTest.cpp EXPECT_GT(allocator->numRegions(), 1); allocator 86 Source/platform/PODFreeListArenaTest.cpp RefPtr<TrackedAllocator> allocator = TrackedAllocator::create(); allocator 88 Source/platform/PODFreeListArenaTest.cpp RefPtr<PODFreeListArena<TestClass1> > arena = PODFreeListArena<TestClass1>::create(allocator); allocator 91 Source/platform/PODFreeListArenaTest.cpp EXPECT_GT(allocator->numRegions(), 0); allocator 93 Source/platform/PODFreeListArenaTest.cpp EXPECT_TRUE(allocator->isEmpty()); allocator 45 Source/platform/PODRedBlackTreeTest.cpp RefPtr<TrackedAllocator> allocator = TrackedAllocator::create(); allocator 48 Source/platform/PODRedBlackTreeTest.cpp RefPtr<PODIntegerArena> arena = PODIntegerArena::create(allocator); allocator 53 Source/platform/PODRedBlackTreeTest.cpp EXPECT_GT(allocator->numRegions(), 1); allocator 55 Source/platform/PODRedBlackTreeTest.cpp EXPECT_EQ(allocator->numRegions(), 0); allocator 95 Source/platform/graphics/ImageFrameGenerator.h SkBitmap::Allocator* allocator() const { return m_discardableAllocator.get(); } allocator 96 Source/platform/graphics/ImageFrameGenerator.h void setAllocator(PassOwnPtr<SkBitmap::Allocator> allocator) { m_discardableAllocator = allocator; } allocator 109 Source/platform/graphics/ImageFrameGeneratorTest.cpp SkBitmap::Allocator* allocator() const { return m_generator->allocator(); } allocator 110 Source/platform/graphics/ImageFrameGeneratorTest.cpp void setAllocator(PassOwnPtr<SkBitmap::Allocator> allocator) allocator 112 Source/platform/graphics/ImageFrameGeneratorTest.cpp m_generator->setAllocator(allocator); allocator 325 Source/platform/graphics/ImageFrameGeneratorTest.cpp if (i >= static_cast<MockAllocator*>(allocator())->m_callCount) { allocator 241 Source/platform/image-decoders/ImageDecoder.h virtual void setMemoryAllocator(SkBitmap::Allocator* allocator) allocator 249 Source/platform/image-decoders/ImageDecoder.h m_frameBufferCache[0].setMemoryAllocator(allocator); allocator 60 Source/platform/image-decoders/ImageFrame.cpp setMemoryAllocator(other.allocator()); allocator 121 Source/platform/image-decoders/ImageFrame.h SkBitmap::Allocator* allocator() const { return m_allocator; } allocator 141 Source/platform/image-decoders/ImageFrame.h void setMemoryAllocator(SkBitmap::Allocator* allocator) { m_allocator = allocator; } allocator 275 Source/wtf/ListHashSet.h void* operator new(size_t, NodeAllocator* allocator) allocator 277 Source/wtf/ListHashSet.h return allocator->allocate(); allocator 279 Source/wtf/ListHashSet.h void destroy(NodeAllocator* allocator) allocator 282 Source/wtf/ListHashSet.h allocator->deallocate(this); allocator 528 Source/wtf/ListHashSet.h template<typename T, typename U, typename V> static void translate(T*& location, const U& key, const V& allocator) allocator 530 Source/wtf/ListHashSet.h location = new (allocator) T(key); allocator 54 Source/wtf/PartitionAllocTest.cpp static SizeSpecificPartitionAllocator<kTestMaxAllocation> allocator; allocator 70 Source/wtf/PartitionAllocTest.cpp allocator.init(); allocator 78 Source/wtf/PartitionAllocTest.cpp EXPECT_TRUE(allocator.shutdown()); allocator 86 Source/wtf/PartitionAllocTest.cpp WTF::PartitionBucket* bucket = &allocator.root()->buckets()[bucketIdx]; allocator 92 Source/wtf/PartitionAllocTest.cpp void* ptr = partitionAlloc(allocator.root(), size); allocator 126 Source/wtf/PartitionAllocTest.cpp WTF::PartitionBucket* bucket = &allocator.root()->buckets()[bucketIdx]; allocator 130 Source/wtf/PartitionAllocTest.cpp void* ptr = partitionAlloc(allocator.root(), size); allocator 155 Source/wtf/PartitionAllocTest.cpp WTF::PartitionBucket* bucket = &allocator.root()->buckets()[kTestBucketIndex]; allocator 162 Source/wtf/PartitionAllocTest.cpp void* ptr = partitionAlloc(allocator.root(), kTestAllocSize); allocator 179 Source/wtf/PartitionAllocTest.cpp void* leakedPtr = partitionAlloc(allocator.root(), kTestAllocSize); allocator 183 Source/wtf/PartitionAllocTest.cpp EXPECT_FALSE(allocator.shutdown()); allocator 192 Source/wtf/PartitionAllocTest.cpp char* ptr1 = reinterpret_cast<char*>(partitionAlloc(allocator.root(), kTestAllocSize)); allocator 193 Source/wtf/PartitionAllocTest.cpp char* ptr2 = reinterpret_cast<char*>(partitionAlloc(allocator.root(), kTestAllocSize)); allocator 201 Source/wtf/PartitionAllocTest.cpp ptr2 = reinterpret_cast<char*>(partitionAlloc(allocator.root(), kTestAllocSize)); allocator 206 Source/wtf/PartitionAllocTest.cpp ptr1 = reinterpret_cast<char*>(partitionAlloc(allocator.root(), kTestAllocSize)); allocator 211 Source/wtf/PartitionAllocTest.cpp char* ptr3 = reinterpret_cast<char*>(partitionAlloc(allocator.root(), kTestAllocSize)); allocator 227 Source/wtf/PartitionAllocTest.cpp WTF::PartitionBucket* bucket = &allocator.root()->buckets()[kTestBucketIndex]; allocator 269 Source/wtf/PartitionAllocTest.cpp WTF::PartitionBucket* bucket = &allocator.root()->buckets()[kTestBucketIndex]; allocator 282 Source/wtf/PartitionAllocTest.cpp (void) partitionAlloc(allocator.root(), kTestAllocSize); allocator 298 Source/wtf/PartitionAllocTest.cpp char* newPtr = reinterpret_cast<char*>(partitionAlloc(allocator.root(), kTestAllocSize)); allocator 308 Source/wtf/PartitionAllocTest.cpp newPtr = reinterpret_cast<char*>(partitionAlloc(allocator.root(), kTestAllocSize)); allocator 318 Source/wtf/PartitionAllocTest.cpp ptr = reinterpret_cast<char*>(partitionAlloc(allocator.root(), kTestAllocSize)); allocator 329 Source/wtf/PartitionAllocTest.cpp WTF::PartitionBucket* bucket = &allocator.root()->buckets()[kTestBucketIndex]; allocator 720 Source/wtf/PartitionAllocTest.cpp size_t bigSize = allocator.root()->maxAllocation - kExtraAllocSize; allocator 723 Source/wtf/PartitionAllocTest.cpp WTF::PartitionBucket* bucket = &allocator.root()->buckets()[bucketIdx]; allocator 726 Source/wtf/PartitionAllocTest.cpp void* ptr = partitionAlloc(allocator.root(), bigSize); allocator 739 Source/wtf/PartitionAllocTest.cpp void* ptr2 = partitionAlloc(allocator.root(), bigSize); allocator 745 Source/wtf/PartitionAllocTest.cpp void* ptr3 = partitionAlloc(allocator.root(), bigSize); allocator 751 Source/wtf/PartitionAllocTest.cpp void* ptr4 = partitionAlloc(allocator.root(), bigSize); allocator 757 Source/wtf/PartitionAllocTest.cpp void* ptr5 = partitionAlloc(allocator.root(), bigSize); allocator 765 Source/wtf/PartitionAllocTest.cpp ptr = partitionAlloc(allocator.root(), bigSize); allocator 766 Source/wtf/PartitionAllocTest.cpp void* ptr6 = partitionAlloc(allocator.root(), bigSize); allocator 782 Source/wtf/PartitionAllocTest.cpp bucket = &allocator.root()->buckets()[bucketIdx]; allocator 785 Source/wtf/PartitionAllocTest.cpp ptr = partitionAlloc(allocator.root(), mediumSize); allocator 798 Source/wtf/PartitionAllocTest.cpp bucket = &allocator.root()->buckets()[bucketIdx]; allocator 801 Source/wtf/PartitionAllocTest.cpp ptr = partitionAlloc(allocator.root(), smallSize); allocator 815 Source/wtf/PartitionAllocTest.cpp bucket = &allocator.root()->buckets()[bucketIdx]; allocator 818 Source/wtf/PartitionAllocTest.cpp ptr = partitionAlloc(allocator.root(), verySmallSize); allocator 860 Source/wtf/PartitionAllocTest.cpp WTF::PartitionBucket* bucket = &allocator.root()->buckets()[kTestBucketIndex]; allocator 865 Source/wtf/PartitionAllocTest.cpp void* ptr = partitionAlloc(allocator.root(), kTestAllocSize); allocator 880 Source/wtf/PartitionAllocTest.cpp (void) partitionAlloc(allocator.root(), kTestAllocSize); allocator 881 Source/wtf/PartitionAllocTest.cpp (void) partitionAlloc(allocator.root(), kTestAllocSize); allocator 900 Source/wtf/PartitionAllocTest.cpp bucket = &allocator.root()->buckets()[size >> WTF::kBucketShift]; allocator 983 Source/wtf/PartitionAllocTest.cpp size_t bigSize = allocator.root()->maxAllocation - kExtraAllocSize; allocator 985 Source/wtf/PartitionAllocTest.cpp WTF::PartitionBucket* bucket = &allocator.root()->buckets()[bucketIdx]; allocator 987 Source/wtf/PartitionAllocTest.cpp void* ptr = partitionAlloc(allocator.root(), bigSize); allocator 1006 Source/wtf/PartitionAllocTest.cpp ptr = partitionAlloc(allocator.root(), bigSize); allocator 1013 Source/wtf/PartitionAllocTest.cpp ptr = partitionAlloc(allocator.root(), bigSize); allocator 121 Source/wtf/text/StringImplCF.cpp static CFAllocatorRef allocator = create(); allocator 122 Source/wtf/text/StringImplCF.cpp return allocator; allocator 136 Source/wtf/text/StringImplCF.cpp CFAllocatorRef allocator = StringWrapperCFAllocator::allocator(); allocator 144 Source/wtf/text/StringImplCF.cpp string = CFStringCreateWithBytesNoCopy(allocator, reinterpret_cast<const UInt8*>(characters8()), m_length, kCFStringEncodingISOLatin1, false, kCFAllocatorNull); allocator 146 Source/wtf/text/StringImplCF.cpp string = CFStringCreateWithCharactersNoCopy(allocator, reinterpret_cast<const UniChar*>(characters16()), m_length, kCFAllocatorNull); allocator 34 public/web/WebMemoryUsageInfo.h WebMemoryUsageInfo(const WebString& allocator, size_t allocated) allocator 35 public/web/WebMemoryUsageInfo.h : allocatorName(allocator)