Searched defs:allocate (Results 1 - 25 of 110) sorted by relevance

12345

/external/clang/test/SemaCXX/
H A DPR12778.cpp4 void* allocate(int __n) { function
/external/chromium_org/third_party/skia/src/gpu/gl/debug/
H A DGrBufferObj.cpp11 void GrBufferObj::allocate(GrGLsizeiptr size, const GrGLchar *dataPtr) { function in class:GrBufferObj
/external/skia/src/gpu/gl/debug/
H A DGrBufferObj.cpp11 void GrBufferObj::allocate(GrGLsizeiptr size, const GrGLchar *dataPtr) { function in class:GrBufferObj
/external/libcxx/test/utilities/memory/allocator.traits/allocator.traits.members/
H A Dallocate.pass.cpp15 // static pointer allocate(allocator_type& a, size_type n);
27 value_type* allocate(std::size_t n) function in struct:A
37 assert(std::allocator_traits<A<int> >::allocate(a, 10) == (int*)0xDEADBEEF);
H A Dallocate_hint.pass.cpp15 // static pointer allocate(allocator_type& a, size_type n, const_void_pointer hint);
27 value_type* allocate(std::size_t n) function in struct:A
39 value_type* allocate(std::size_t n) function in struct:B
44 value_type* allocate(std::size_t n, const void* p) function in struct:B
56 assert(std::allocator_traits<A<int> >::allocate(a, 10, nullptr) == (int*)0xDEADBEEF);
59 assert(std::allocator_traits<B<int> >::allocate(b, 11, nullptr) == (int*)0xFEADBEEF);
/external/replicaisland/src/com/replica/replicaisland/
H A DTObjectPool.java35 public T allocate() { method in class:TObjectPool
36 T object = (T)super.allocate();
H A DVectorPool.java42 public Vector2 allocate(Vector2 source) { method in class:VectorPool
43 Vector2 entry = super.allocate();
H A DObjectPool.java46 protected Object allocate() { method in class:ObjectPool
H A DDrawableFactory.java45 return mBitmapPool.allocate();
49 return mTiledBackgroundVertexGridPool.allocate();
53 return mScrollableBitmapPool.allocate();
91 public DrawableBitmap allocate() { method in class:DrawableFactory.DrawableBitmapPool
92 DrawableBitmap result = super.allocate();
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DHandleAllocator.cpp8 // to allocate GL handles.
32 GLuint HandleAllocator::allocate() function in class:gl::HandleAllocator
/external/compiler-rt/test/asan/TestCases/
H A Dcurrent_allocated_bytes.cc13 void* allocate(void *arg) { function
32 pthread_create(&thr[j], 0, (j < 2) ? allocate : check_stats, 0));
/external/deqp/framework/randomshaders/
H A DrsgNameAllocator.cpp54 std::string NameAllocator::allocate (void) function in class:rsg::NameAllocator
/external/stlport/stlport/stl/
H A D_alloc.c38 void * _STLP_CALL __debug_alloc<_Alloc>::allocate(size_t __n) { function in class:_Alloc
45 __alloc_header *__result = (__alloc_header *)__allocator_type::allocate(__real_n);
H A D_iostream_string.h63 _CharT* allocate(size_type __n, const void* __ptr = 0) { function in class:__iostring_allocator
65 return _Base::allocate(__n, __ptr);
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dstandalone_malloc_test.cc26 bool allocate = (i % 5) <= 2; // 60% malloc, 40% free local
28 allocate = i % 2; // then switch to 50% malloc, 50% free
29 if (allocate) {
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringImplCF.cpp54 static void* allocate(CFIndex size, CFOptionFlags, void*) function in namespace:WTF::StringWrapperCFAllocator
83 underlyingString->deref(); // Balanced by call to ref in allocate above.
97 underlyingString->deref(); // Balanced by call to ref in allocate above.
115 CFAllocatorContext context = { 0, 0, retain, release, copyDescription, allocate, reallocate, deallocate, preferredSize };
147 // CoreFoundation might not have to allocate anything, we clear currentString in case we did not execute allocate().
/external/chromium_org/third_party/skia/src/gpu/
H A DGrMemoryPool.cpp39 void* GrMemoryPool::allocate(size_t size) { function in class:GrMemoryPool
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dstl_allocator.h81 pointer allocate(size_type n, const void* = 0) { function in class:STL_Allocator
82 RAW_DCHECK((n * sizeof(T)) / sizeof(T) == n, "n is too big to allocate");
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dstl_allocator.h81 pointer allocate(size_type n, const void* = 0) { function in class:STL_Allocator
82 RAW_DCHECK((n * sizeof(T)) / sizeof(T) == n, "n is too big to allocate");
/external/jsoncpp/src/lib_json/
H A Djson_batchallocator.h26 * returned by allocate.
54 /// allocate space for an array of objectPerAllocation object.
56 AllocatedType *allocate() function in class:Json::BatchAllocator
70 if ( !currentBatch_ ) // no free batch found, allocate a new one
/external/libcxx/test/containers/
H A Dstack_allocator.h39 pointer allocate(size_type n, const void* = 0) function in class:stack_allocator
/external/llvm/include/llvm/Support/
H A DArrayRecycler.h120 /// Return an existing recycled array, or allocate one from Allocator if
124 T *allocate(Capacity Cap, AllocatorType &Allocator) { function in class:llvm::ArrayRecycler
134 /// Cap must be the same capacity that was given to allocate().
/external/skia/src/gpu/
H A DGrMemoryPool.cpp39 void* GrMemoryPool::allocate(size_t size) { function in class:GrMemoryPool
/external/valgrind/main/memcheck/tests/
H A Dmempool.c99 char *allocate(pool *p, int size) function
121 x1 = allocate(p, 10);
122 x2 = allocate(p, 20);
124 x3 = allocate(p, 10);
125 x4 = allocate(p, 20);
141 x5 = allocate(p, 10);
/external/chromium_org/base/containers/
H A Dstack_container.h19 // from which to allocate memory and overflows onto the heap. This stack buffer
34 // the container will allocate a small array which will "use up" the stack
106 pointer allocate(size_type n, void* hint = 0) { function in class:base::StackAllocator
112 return std::allocator<T>::allocate(n, hint);

Completed in 2681 milliseconds

12345