HomeSort by relevance Sort by last modified time
    Searched refs:allocate (Results 51 - 75 of 1315) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/
debug_allocator.h 87 allocate(size_type __n) function in class:debug_allocator
89 pointer __res = _M_allocator.allocate(__n + _M_extra);
96 allocate(size_type __n, const void* __hint) function in class:debug_allocator
98 pointer __res = _M_allocator.allocate(__n + _M_extra, __hint);
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/
debug_allocator.h 87 allocate(size_type __n) function in class:debug_allocator
89 pointer __res = _M_allocator.allocate(__n + _M_extra);
96 allocate(size_type __n, const void* __hint) function in class:debug_allocator
98 pointer __res = _M_allocator.allocate(__n + _M_extra, __hint);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/
debug_allocator.h 87 allocate(size_type __n) function in class:debug_allocator
89 pointer __res = _M_allocator.allocate(__n + _M_extra);
96 allocate(size_type __n, const void* __hint) function in class:debug_allocator
98 pointer __res = _M_allocator.allocate(__n + _M_extra, __hint);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/
debug_allocator.h 89 allocate(size_type __n) function in class:debug_allocator
91 pointer __res = _M_allocator.allocate(__n + _M_extra);
98 allocate(size_type __n, const void* __hint) function in class:debug_allocator
100 pointer __res = _M_allocator.allocate(__n + _M_extra, __hint);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
debug_allocator.h 89 allocate(size_type __n) function in class:debug_allocator
91 pointer __res = _M_allocator.allocate(__n + _M_extra);
98 allocate(size_type __n, const void* __hint) function in class:debug_allocator
100 pointer __res = _M_allocator.allocate(__n + _M_extra, __hint);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/
debug_allocator.h 89 allocate(size_type __n) function in class:debug_allocator
91 pointer __res = _M_allocator.allocate(__n + _M_extra);
98 allocate(size_type __n, const void* __hint) function in class:debug_allocator
100 pointer __res = _M_allocator.allocate(__n + _M_extra, __hint);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
debug_allocator.h 89 allocate(size_type __n) function in class:debug_allocator
91 pointer __res = _M_allocator.allocate(__n + _M_extra);
98 allocate(size_type __n, const void* __hint) function in class:debug_allocator
100 pointer __res = _M_allocator.allocate(__n + _M_extra, __hint);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/
debug_allocator.h 88 allocate(size_type __n) function in class:debug_allocator
90 pointer __res = _M_allocator.allocate(__n + _M_extra);
97 allocate(size_type __n, const void* __hint) function in class:debug_allocator
99 pointer __res = _M_allocator.allocate(__n + _M_extra, __hint);
  /external/replicaisland/src/com/replica/replicaisland/
DrawableFactory.java 45 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();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
ASCIICharsetEncoderTest.java 85 ByteBuffer out = ByteBuffer.allocate(10);
91 out = ByteBuffer.allocate(10);
127 ByteBuffer bb = ByteBuffer.allocate(0x10);
140 ByteBuffer out = ByteBuffer.allocate(0x10);
162 ByteBuffer out = ByteBuffer.allocate(0x10);
170 ByteBuffer out = ByteBuffer.allocate(0x10);
177 ByteBuffer out = ByteBuffer.allocate(0x10);
189 ByteBuffer out = ByteBuffer.allocate(0x10);
196 ByteBuffer out = ByteBuffer.allocate(0x10);
204 ByteBuffer out = ByteBuffer.allocate(0x10)
    [all...]
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
SSLEngineTest.java 95 ByteBuffer bb = ByteBuffer.allocate(10);
123 ByteBuffer[] bbA = { null, ByteBuffer.allocate(10), null };
125 ByteBuffer bb = ByteBuffer.allocate(10);
138 bbA[0] = ByteBuffer.allocate(100);
139 bbA[2] = ByteBuffer.allocate(20);
155 ByteBuffer bbs = ByteBuffer.allocate(100);
156 ByteBuffer bbd = ByteBuffer.allocate(10);
185 ByteBuffer bb = ByteBuffer.allocate(10);
188 SSLEngineResult res = e.wrap(bb, ByteBuffer.allocate(10));
202 ByteBuffer bb = ByteBuffer.allocate(10)
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
PoolAlloc.h 16 // allocate a large number of small requests for heap memory, with the
143 // Call allocate() to actually acquire memory. Returns 0 if no memory
146 void* allocate(size_t numBytes);
204 size_t currentPageOffset; // next offset in top of inUseList to allocate from
207 tAllocStack stack; // stack of where to allocate from, to partition pool
264 // libCStd on some platforms have a different allocate/deallocate interface.
267 void* allocate(size_type n) { function in class:pool_allocator
268 return getAllocator().allocate(n);
270 void* allocate(size_type n, const void*) { function in class:pool_allocator
271 return getAllocator().allocate(n)
275 pointer allocate(size_type n) { function in class:pool_allocator
278 pointer allocate(size_type n, const void*) { function in class:pool_allocator
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
PODArena.h 51 virtual void* allocate(size_t size) = 0;
59 // fastFree to allocate chunks of storage.
67 virtual void* allocate(size_t size) OVERRIDE { return fastMalloc(size); }
129 ptr = m_current->allocate(roundedSize);
136 ptr = m_current->allocate(roundedSize);
159 m_base = static_cast<uint8_t*>(m_allocator->allocate(size));
171 void* allocate(size_t size) function in class:WebCore::FINAL::FINAL
  /external/valgrind/main/memcheck/tests/
mempool.c 99 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);
  /bionic/libc/arch-x86/bionic/
__set_tls.c 37 __LIBC_HIDDEN__ void __init_user_desc(struct user_desc* result, bool allocate, void* base_addr) {
38 if (allocate) {
  /external/compiler-rt/test/asan/TestCases/
current_allocated_bytes.cc 13 void* allocate(void *arg) { function
32 pthread_create(&thr[j], 0, (j < 2) ? allocate : check_stats, 0));
  /external/libcxx/test/utilities/memory/default.allocator/allocator.members/
allocate.pass.cpp 13 // pointer allocate(size_type n, allocator<void>::const_pointer hint=0);
50 A* ap = a.allocate(3);
57 A* ap2 = a.allocate(3, (const void*)5);
  /frameworks/compile/mclinker/lib/MC/
ContextFactory.cpp 29 result = UniqueGCFactoryBase<sys::fs::Path, LDContext, 0>::allocate();
38 LDContext* result = allocate();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/default.allocator/allocator.members/
allocate.pass.cpp 13 // pointer allocate(size_type n, allocator<void>::const_pointer hint=0);
50 A* ap = a.allocate(3);
57 A* ap2 = a.allocate(3, (const void*)5);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/ext/pb_ds/detail/cc_hash_table_map_/
entry_list_fn_imps.hpp 60 entry_pointer p_e = s_entry_allocator.allocate(1);
73 entry_pointer p_e = s_entry_allocator.allocate(1);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/cc_hash_table_map_/
entry_list_fn_imps.hpp 60 entry_pointer p_e = s_entry_allocator.allocate(1);
73 entry_pointer p_e = s_entry_allocator.allocate(1);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/cc_hash_table_map_/
entry_list_fn_imps.hpp 60 entry_pointer p_e = s_entry_allocator.allocate(1);
73 entry_pointer p_e = s_entry_allocator.allocate(1);
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/cc_hash_table_map_/
entry_list_fn_imps.hpp 60 entry_pointer p_e = s_entry_allocator.allocate(1);
73 entry_pointer p_e = s_entry_allocator.allocate(1);
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/cc_hash_table_map_/
entry_list_fn_imps.hpp 60 entry_pointer p_e = s_entry_allocator.allocate(1);
73 entry_pointer p_e = s_entry_allocator.allocate(1);
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/cc_hash_table_map_/
entry_list_fn_imps.hpp 60 entry_pointer p_e = s_entry_allocator.allocate(1);
73 entry_pointer p_e = s_entry_allocator.allocate(1);

Completed in 2822 milliseconds

1 23 4 5 6 7 8 91011>>