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

12345

/external/clang/test/SemaCXX/
H A DPR12778.cpp4 void* allocate(int __n) { function
/external/skia/src/gpu/gl/debug/
H A DGrBufferObj.cpp11 void GrBufferObj::allocate(GrGLsizeiptr size, const GrGLchar *dataPtr) { function in class:GrBufferObj
/external/opencv3/modules/core/src/
H A Dstl.cpp47 char* cv::String::allocate(size_t len) function in class:cv::String
/external/libcxx/test/std/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/compiler-rt/test/asan/TestCases/Posix/
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/parameter-framework/asio/include/asio/detail/
H A Dhandler_alloc_helpers.hpp28 inline void* allocate(std::size_t s, Handler& h) function in namespace:asio_handler_alloc_helpers
H A Dthread_info_base.hpp39 static void* allocate(thread_info_base* this_thread, std::size_t size) function in class:asio::detail::thread_info_base
/external/parameter-framework/asio-1.10.6/include/asio/detail/
H A Dhandler_alloc_helpers.hpp28 inline void* allocate(std::size_t s, Handler& h) function in namespace:asio_handler_alloc_helpers
H A Dthread_info_base.hpp39 static void* allocate(thread_info_base* this_thread, std::size_t size) function in class:asio::detail::thread_info_base
/external/v8/test/mjsunit/regress/
H A Dregress-441099.js13 function allocate() { function
/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/jsoncpp/src/lib_json/
H A Djson_batchallocator.h26 * pointer returned by allocate.
51 /// allocate space for an array of objectPerAllocation object.
54 AllocatedType* allocate() { function in class:Json::BatchAllocator
66 if (!currentBatch_) // no free batch found, allocate a new one
/external/libcxx/test/std/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/opencv3/modules/flann/include/opencv2/flann/
H A Dallocator.h45 * count = number of instances to allocate.
49 T* allocate(size_t count = 1) function in namespace:cvflann
84 void* loc; /* Current location in block to next allocate memory. */
144 // use the standard C malloc to allocate memory
147 fprintf(stderr,"Failed to allocate memory.\n");
174 * count = number of instances to allocate.
178 T* allocate(size_t count = 1) function in class:cvflann::PooledAllocator
/external/pdfium/third_party/bigint/
H A DNumberlikeArray.hh63 void allocate(Index c);
101 void NumberlikeArray<Blk>::allocate(Index c) { function in class:NumberlikeArray
150 allocate(len);
/external/skia/src/gpu/
H A DGrMemoryPool.cpp41 void* GrMemoryPool::allocate(size_t size) { function in class:GrMemoryPool
/external/valgrind/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/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyUtil.h47 void *allocate(size_t Sz) { function in class:clang::threadSafety::til::MemRegionRef
69 return R.allocate(Sz);

Completed in 4209 milliseconds

12345