/external/elfutils/tests/ |
run-dwarf-getstring.sh | 89 __normal_iterator<char*,std::basic_string<char, std::char_traits<char>, std::allocator<char> > >
|
/external/jemalloc/include/jemalloc/ |
jemalloc_mangle.sh | 9 * so that it is possible to use jemalloc in conjunction with another allocator
|
/external/libcxx/test/std/containers/sequences/deque/ |
types.pass.cpp | 14 // template <class T, class Allocator = allocator<T> > 19 // typedef Allocator allocator_type; 40 template <class T, class Allocator> 44 typedef std::deque<T, Allocator> C; 47 static_assert((std::is_same<typename C::value_type, typename Allocator::value_type>::value), ""); 48 static_assert((std::is_same<typename C::allocator_type, Allocator>::value), ""); 49 static_assert((std::is_same<typename C::size_type, typename Allocator::size_type>::value), ""); 50 static_assert((std::is_same<typename C::difference_type, typename Allocator::difference_type>::value), ""); 51 static_assert((std::is_same<typename C::reference, typename Allocator::reference>::value), "") [all...] |
/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Collision/Shapes/ |
b2ChainShape.cpp | 92 b2Shape* b2ChainShape::Clone(b2BlockAllocator* allocator) const 94 void* mem = allocator->Allocate(sizeof(b2ChainShape));
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/ |
b2Fixture.h | 208 // the destructor cannot access the allocator (no destructor arguments allowed by C++). 209 void Create(b2BlockAllocator* allocator, b2Body* body, const b2FixtureDef* def); 210 void Destroy(b2BlockAllocator* allocator);
|
/external/opencv3/modules/core/src/ |
cuda_gpu_mat.cpp | 53 allocator(defaultAllocator()) 79 allocator(defaultAllocator()) 106 allocator = m.allocator; 147 allocator(m.allocator) 416 GpuMat::Allocator* cv::cuda::GpuMat::defaultAllocator() 421 void cv::cuda::GpuMat::setDefaultAllocator(Allocator* allocator) 423 (void) allocator; [all...] |
/external/skia/src/core/ |
SkBlitter_PM4f.cpp | 373 SkTBlitterAllocator* allocator) { 374 SkASSERT(allocator != nullptr); 377 return allocator->createT<SkState_Shader_Blitter<State>>(device, paint, shaderContext); 383 return allocator->createT<SkState_Blitter<State>>(device, paint); 389 SkTBlitterAllocator* allocator) { 390 return create<State32>(device, paint, shaderContext, allocator); 395 SkTBlitterAllocator* allocator) { 396 return create<State64>(device, paint, shaderContext, allocator);
|
/external/v8/src/compiler/ |
zone-pool.cc | 67 ZonePool::ZonePool(base::AccountingAllocator* allocator) 68 : max_allocated_bytes_(0), total_deleted_bytes_(0), allocator_(allocator) {}
|
/external/v8/src/interpreter/ |
bytecode-register-allocator.cc | 5 #include "src/interpreter/bytecode-register-allocator.h" 156 Zone* zone, TemporaryRegisterAllocator* allocator) 157 : base_allocator_(allocator),
|
/external/v8/src/ |
string-stream.h | 32 // Normal allocator uses new[] and delete[]. 102 StringStream(StringAllocator* allocator, 104 : allocator_(allocator),
|
zone.h | 10 #include "src/base/accounting-allocator.h" 38 explicit Zone(base::AccountingAllocator* allocator); 67 base::AccountingAllocator* allocator() const { return allocator_; } function in class:v8::internal::final
|
/external/v8/test/cctest/compiler/ |
test-multiple-return.cc | 71 base::AccountingAllocator allocator; local 72 Zone zone(&allocator);
|
/external/v8/test/cctest/ |
test-liveedit.cc | 98 v8::base::AccountingAllocator allocator; local 99 Zone zone(&allocator);
|
/external/webrtc/webrtc/p2p/base/ |
dtlstransport.h | 33 PortAllocator* allocator, 35 : Base(name, allocator),
|
/frameworks/base/libs/hwui/ |
ClipArea.h | 177 WARN_UNUSED_RESULT const ClipBase* serializeClip(LinearAllocator& allocator); 178 WARN_UNUSED_RESULT const ClipBase* serializeIntersectedClip(LinearAllocator& allocator,
|
/frameworks/base/libs/hwui/tests/unit/ |
LinearAllocatorTests.cpp | 118 LinearAllocator allocator; local 119 LinearStdAllocator<void*> stdAllocator(allocator);
|
/frameworks/native/vulkan/libvulkan/ |
debug_report.h | 47 const VkAllocationCallbacks& allocator); 48 void RemoveCallback(Node* node, const VkAllocationCallbacks& allocator);
|
/hardware/qcom/camera/QCamera2/HAL/ |
QCameraChannel.h | 55 virtual int32_t addStream(QCameraAllocator& allocator, 126 int32_t addReprocStreamsFromSource(QCameraAllocator& allocator,
|
/hardware/qcom/camera/msmcobalt/QCamera2/HAL/ |
QCameraChannel.h | 55 virtual int32_t addStream(QCameraAllocator& allocator, 134 int32_t addReprocStreamsFromSource(QCameraAllocator& allocator,
|
/libcore/luni/src/test/java/libcore/util/ |
NativeAllocationRegistryTest.java | 72 NativeAllocationRegistry.Allocator allocator local 73 = new NativeAllocationRegistry.Allocator() { 79 registry.registerNativeAllocation(alloc, allocator); 167 new NativeAllocationRegistry.Allocator() { 179 new NativeAllocationRegistry.Allocator() {
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/ |
types.pass.cpp | 14 // template <class T, class Allocator = allocator<T> > 19 // typedef Allocator allocator_type; 40 template <class T, class Allocator> 44 typedef std::deque<T, Allocator> C; 47 static_assert((std::is_same<typename C::value_type, typename Allocator::value_type>::value), ""); 48 static_assert((std::is_same<typename C::allocator_type, Allocator>::value), ""); 49 static_assert((std::is_same<typename C::size_type, typename Allocator::size_type>::value), ""); 50 static_assert((std::is_same<typename C::difference_type, typename Allocator::difference_type>::value), ""); 51 static_assert((std::is_same<typename C::reference, typename Allocator::reference>::value), "") [all...] |
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/ |
stack.h | 28 /*! \tparam Allocator Allocator for allocating stack memory.
30 template <typename Allocator>
35 Stack(Allocator* allocator, size_t stackCapacity) : allocator_(allocator), ownAllocator_(0), stack_(0), stackTop_(0), stackEnd_(0), initialCapacity_(stackCapacity) {
99 Allocator::Free(stack_);
141 Allocator& GetAllocator() {
156 ownAllocator_ = allocator_ = RAPIDJSON_NEW(Allocator());
177 Allocator::Free(stack_); [all...] |
/prebuilts/misc/common/swig/include/2.0.11/std/ |
std_deque.i | 52 template<class _Tp, class _Alloc = allocator<_Tp> >
|
std_map.i | 67 class _Alloc = allocator<std::pair<const _Key, _Tp > > >
|
std_multimap.i | 45 class _Alloc = allocator<std::pair<const _Key, _Tp > > >
|