Searched defs:allocator (Results 1 - 25 of 226) sorted by relevance

12345678910

/external/v8/test/cctest/
H A Dtest-bit-vector.cc38 v8::base::AccountingAllocator allocator; local
39 Zone zone(&allocator);
H A Dtest-ast.cc41 v8::base::AccountingAllocator allocator; local
42 Zone zone(&allocator);
/external/clang/test/CodeCompletion/
H A Dtemplates.cpp3 class allocator { class in namespace:std
8 template<typename T, typename Alloc = std::allocator<T> >
21 // CHECK-CC1: allocator<<#typename T#>>
/external/libchrome/base/allocator/
H A Dallocator_extension.h14 namespace allocator { namespace in namespace:base
19 // Request that the allocator release any free memory it knows about to the
25 // allocator implementation.
29 // These settings allow specifying a callback used to implement the allocator
31 // once. These will typically called in an allocator-specific initialization
44 } // namespace allocator
H A Dallocator_extension.cc5 #include "base/allocator/allocator_extension.h"
10 namespace allocator { namespace in namespace:base
39 } // namespace allocator
/external/clang/test/SemaCXX/
H A DPR9902.cpp24 struct allocator {}; struct
28 allocator_traits<allocator<char>>::rebind_alloc<int> a;
/external/google-breakpad/src/common/
H A Dmemory_unittest.cc40 PageAllocator allocator; local
44 PageAllocator allocator; local
47 uint8_t *p = reinterpret_cast<uint8_t*>(allocator.Alloc(i));
54 PageAllocator allocator; local
56 uint8_t *p = reinterpret_cast<uint8_t*>(allocator.Alloc(10000));
59 uint8_t *p = reinterpret_cast<uint8_t*>(allocator.Alloc(i));
/external/ImageMagick/Magick++/lib/Magick++/
H A DBlobRef.h37 Blob::Allocator allocator; // Memory allocation system in use member in class:Magick::BlobRef
/external/avahi/avahi-glib/
H A Dglib-malloc.c43 static AvahiAllocator allocator; local
47 allocator.malloc = malloc_glue;
48 allocator.free = g_free;
49 allocator.realloc = realloc_glue;
50 allocator.calloc = calloc_glue;
54 return &allocator;
/external/clang/test/SemaTemplate/
H A Dexception-spec-crash.cpp9 class allocator;
12 class allocator<char> {}; class
29 basic_string<allocator<char> > vectorFoo_;
/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/Joints/
H A Db2Joint.cpp37 b2Joint* b2Joint::Create(const b2JointDef* def, b2BlockAllocator* allocator) argument
45 void* mem = allocator->Allocate(sizeof(b2DistanceJoint));
52 void* mem = allocator->Allocate(sizeof(b2MouseJoint));
59 void* mem = allocator->Allocate(sizeof(b2PrismaticJoint));
66 void* mem = allocator->Allocate(sizeof(b2RevoluteJoint));
73 void* mem = allocator->Allocate(sizeof(b2PulleyJoint));
80 void* mem = allocator->Allocate(sizeof(b2GearJoint));
87 void* mem = allocator->Allocate(sizeof(b2WheelJoint));
94 void* mem = allocator->Allocate(sizeof(b2WeldJoint));
101 void* mem = allocator
128 Destroy(b2Joint* joint, b2BlockAllocator* allocator) argument
[all...]
/external/llvm/unittests/ADT/
H A DIntervalMapTest.cpp21 UUMap::Allocator allocator; local
22 UUMap map(allocator);
55 UUMap::Allocator allocator; local
56 UUMap map(allocator);
142 UUMap::Allocator allocator; local
143 UUMap map(allocator);
212 UUMap::Allocator allocator; local
213 UUMap map(allocator);
326 UUMap::Allocator allocator; local
327 UUMap map(allocator);
469 UUMap::Allocator allocator; local
545 UUMap::Allocator allocator; local
569 UUMap::Allocator allocator; local
613 UUMap::Allocator allocator; local
[all...]
/external/skia/src/pathops/
H A DSkOpTAllocator.h16 static T* Allocate(SkChunkAlloc* allocator) { argument
17 void* ptr = allocator->allocThrow(sizeof(T));
22 static T* AllocateArray(SkChunkAlloc* allocator, int count) { argument
23 void* ptr = allocator->allocThrow(sizeof(T) * count);
28 static T* New(SkChunkAlloc* allocator) { argument
29 return new (Allocate(allocator)) T();
/external/webrtc/webrtc/p2p/base/
H A Dp2ptransport.cc23 P2PTransport::P2PTransport(const std::string& name, PortAllocator* allocator) argument
24 : Transport(name, allocator) {}
/external/clang/test/CodeGenCXX/
H A Dlpad-linetable.cpp14 class allocator class in namespace:std
19 { typedef allocator<_Tp1> other; };
20 ~allocator() throw() { }
37 template<typename _Tp, typename _Alloc = std::allocator<_Tp> >
/external/deqp/external/vulkancts/modules/vulkan/draw/
H A DvktDrawBufferObjectUtil.cpp54 vk::Allocator &allocator,
60 ret->bindMemory(allocator.allocate(bufferRequirements, memoryRequirement));
51 createAndAlloc(const vk::DeviceInterface& vk, vk::VkDevice device, const vk::VkBufferCreateInfo &createInfo, vk::Allocator &allocator, vk::MemoryRequirement memoryRequirement) argument
/external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
H A DvktDynamicStateBufferObjectUtil.cpp54 vk::Allocator &allocator,
60 ret->bindMemory(allocator.allocate(bufferRequirements, memoryRequirement));
51 createAndAlloc(const vk::DeviceInterface& vk, vk::VkDevice device, const vk::VkBufferCreateInfo &createInfo, vk::Allocator &allocator, vk::MemoryRequirement memoryRequirement) argument
/external/deqp/external/vulkancts/modules/vulkan/query_pool/
H A DvktQueryPoolBufferObjectUtil.cpp54 vk::Allocator &allocator,
60 ret->bindMemory(allocator.allocate(bufferRequirements, memoryRequirement));
51 createAndAlloc(const vk::DeviceInterface& vk, vk::VkDevice device, const vk::VkBufferCreateInfo &createInfo, vk::Allocator &allocator, vk::MemoryRequirement memoryRequirement) argument
/external/gemmlowp/test/
H A Dtest_allocator.cc16 #include "../internal/allocator.h"
43 Allocator allocator; local
45 // Test allocating increasingly large sizes on the same allocator,
48 test_allocator(&allocator, i);
/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/Contacts/
H A Db2ChainAndCircleContact.cpp28 b2Contact* b2ChainAndCircleContact::Create(b2Fixture* fixtureA, int32 indexA, b2Fixture* fixtureB, int32 indexB, b2BlockAllocator* allocator) argument
30 void* mem = allocator->Allocate(sizeof(b2ChainAndCircleContact));
34 void b2ChainAndCircleContact::Destroy(b2Contact* contact, b2BlockAllocator* allocator) argument
37 allocator->Free(contact, sizeof(b2ChainAndCircleContact));
H A Db2ChainAndPolygonContact.cpp28 b2Contact* b2ChainAndPolygonContact::Create(b2Fixture* fixtureA, int32 indexA, b2Fixture* fixtureB, int32 indexB, b2BlockAllocator* allocator) argument
30 void* mem = allocator->Allocate(sizeof(b2ChainAndPolygonContact));
34 void b2ChainAndPolygonContact::Destroy(b2Contact* contact, b2BlockAllocator* allocator) argument
37 allocator->Free(contact, sizeof(b2ChainAndPolygonContact));
H A Db2CircleContact.cpp29 b2Contact* b2CircleContact::Create(b2Fixture* fixtureA, int32, b2Fixture* fixtureB, int32, b2BlockAllocator* allocator) argument
31 void* mem = allocator->Allocate(sizeof(b2CircleContact));
35 void b2CircleContact::Destroy(b2Contact* contact, b2BlockAllocator* allocator) argument
38 allocator->Free(contact, sizeof(b2CircleContact));
H A Db2EdgeAndCircleContact.cpp26 b2Contact* b2EdgeAndCircleContact::Create(b2Fixture* fixtureA, int32, b2Fixture* fixtureB, int32, b2BlockAllocator* allocator) argument
28 void* mem = allocator->Allocate(sizeof(b2EdgeAndCircleContact));
32 void b2EdgeAndCircleContact::Destroy(b2Contact* contact, b2BlockAllocator* allocator) argument
35 allocator->Free(contact, sizeof(b2EdgeAndCircleContact));
H A Db2EdgeAndPolygonContact.cpp26 b2Contact* b2EdgeAndPolygonContact::Create(b2Fixture* fixtureA, int32, b2Fixture* fixtureB, int32, b2BlockAllocator* allocator) argument
28 void* mem = allocator->Allocate(sizeof(b2EdgeAndPolygonContact));
32 void b2EdgeAndPolygonContact::Destroy(b2Contact* contact, b2BlockAllocator* allocator) argument
35 allocator->Free(contact, sizeof(b2EdgeAndPolygonContact));
H A Db2PolygonAndCircleContact.cpp26 b2Contact* b2PolygonAndCircleContact::Create(b2Fixture* fixtureA, int32, b2Fixture* fixtureB, int32, b2BlockAllocator* allocator) argument
28 void* mem = allocator->Allocate(sizeof(b2PolygonAndCircleContact));
32 void b2PolygonAndCircleContact::Destroy(b2Contact* contact, b2BlockAllocator* allocator) argument
35 allocator->Free(contact, sizeof(b2PolygonAndCircleContact));

Completed in 2109 milliseconds

12345678910