Searched refs:allocate (Results 1 - 25 of 266) sorted by relevance

1234567891011

/external/clang/test/Sema/
H A Dfreemain.c5 void* allocate(long size);
8 if (context) return allocate(size);
/external/valgrind/main/none/tests/linux/
H A Dmremap.stderr.exp2 mremap(grow, nomove, constrained): Cannot allocate memory
/external/chromium-trace/trace-viewer/src/base/
H A Dguid.js11 allocate: function() {
/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 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/lib/asan/
H A Dasan_preinit.cc30 __declspec(allocate(".CRT$XIB")) void (*__asan_preinit)() = __asan_init;
/external/stlport/test/compiler/
H A Deh.cc18 //Lets try to allocate almost 4096 Go (on most of the platforms) of memory:
19 BigStructAllocType::pointer pbigStruct = bigStructAlloc.allocate(1024 * 1024 * 1024);
36 BigStruct *bs = all.allocate(1024*1024*1024);
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dautostatic.c80 __declspec(allocate(".CRT$XCU")) static int (*msc_ctor)(void) = on_process_init;
81 __declspec(allocate(".CRT$XPU")) static int (*msc_dtor)(void) = on_process_exit;
/external/llvm/unittests/Support/
H A DArrayRecyclerTest.cpp56 Object *A1 = DUT.allocate(Cap, Allocator);
60 Object *A2 = DUT.allocate(Cap, Allocator);
64 Object *A3 = DUT.allocate(Cap, Allocator);
84 Object *A2x = DUT.allocate(Cap, Allocator);
93 Object *A3x = DUT.allocate(Cap, Allocator);
95 Object *A1x = DUT.allocate(Cap, Allocator);
97 Object *A2y = DUT.allocate(Cap, Allocator);
101 Object *A4 = DUT.allocate(Cap, Allocator);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_sf.h101 void brw_emit_tri_setup( struct brw_sf_compile *c, bool allocate );
102 void brw_emit_line_setup( struct brw_sf_compile *c, bool allocate );
103 void brw_emit_point_setup( struct brw_sf_compile *c, bool allocate );
104 void brw_emit_point_sprite_setup( struct brw_sf_compile *c, bool allocate );
/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/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_sf.h101 void brw_emit_tri_setup( struct brw_sf_compile *c, bool allocate );
102 void brw_emit_line_setup( struct brw_sf_compile *c, bool allocate );
103 void brw_emit_point_setup( struct brw_sf_compile *c, bool allocate );
104 void brw_emit_point_sprite_setup( struct brw_sf_compile *c, bool allocate );
/external/skia/src/gpu/gl/debug/
H A DGrBufferObj.cpp11 void GrBufferObj::allocate(GrGLsizeiptr size, const GrGLchar *dataPtr) { function in class:GrBufferObj
/external/chromium_org/v8/src/
H A Dhydrogen-escape-analysis.cc71 HAllocate* allocate = HAllocate::cast(instr); local
72 if (!allocate->size()->IsInteger32Constant()) continue;
73 int size_in_bytes = allocate->size()->GetInteger32Constant();
168 void HEscapeAnalysisPhase::AnalyzeDataFlow(HInstruction* allocate) { argument
169 HBasicBlock* allocate_block = allocate->block();
190 if (instr != allocate) continue;
191 state = NewStateForAllocation(allocate);
197 if (load->object() != allocate) continue;
210 if (store->object() != allocate) continue;
231 if (instr->OperandAt(i) != allocate) continu
301 HAllocate* allocate = HAllocate::cast(captured_.at(i)); local
[all...]
/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
H A DSSLEngineTest.java96 ByteBuffer bb = ByteBuffer.allocate(10);
124 ByteBuffer[] bbA = { null, ByteBuffer.allocate(10), null };
126 ByteBuffer bb = ByteBuffer.allocate(10);
139 bbA[0] = ByteBuffer.allocate(100);
140 bbA[2] = ByteBuffer.allocate(20);
156 ByteBuffer bbs = ByteBuffer.allocate(100);
157 ByteBuffer bbd = ByteBuffer.allocate(10);
187 ByteBuffer bb = ByteBuffer.allocate(10);
190 SSLEngineResult res = e.wrap(bb, ByteBuffer.allocate(10));
204 ByteBuffer bb = ByteBuffer.allocate(1
[all...]
/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/third_party/WebKit/Source/platform/testing/
H A DArenaTestHelpers.h47 virtual void* allocate(size_t size) function in class:WebCore::ArenaTestHelpers::TrackedAllocator
49 void* result = PODArena::FastMallocAllocator::allocate(size);
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DHandleAllocator.h8 // allocate GL handles.
31 GLuint allocate();
H A DHandleAllocator.cpp9 // to allocate GL handles.
33 GLuint HandleAllocator::allocate() function in class:gl::HandleAllocator
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DAbstractBoxParser.java65 ByteBuffer bb = ByteBuffer.allocate(8);
81 ByteBuffer bb = ByteBuffer.allocate(16);
98 header = ByteBuffer.allocate(16);
103 header = ByteBuffer.allocate(24);
108 header = ByteBuffer.allocate(32);
/external/stlport/stlport/stl/
H A D_alloc.h67 static void* _STLP_CALL allocate(size_t __n)
92 static void* _STLP_CALL allocate(size_t __n) { return __stl_new(__n); } function in class:__new_alloc
133 static void* _STLP_CALL allocate(size_t);
157 static void* _STLP_CALL allocate(size_t& __n) function in class:__node_alloc
301 _Tp* allocate(size_type __n, const void* = 0) { function in class:allocator
307 _Tp* __ret = __REINTERPRET_CAST(_Tp*, __sgi_alloc::allocate(__buf_size));
348 _Tp* __ret = __REINTERPRET_CAST(_Tp*, __sgi_alloc::allocate(__buf_size));
525 _Tp* allocate(size_type __n, size_type& __allocated_n) { function in class:_STLP_alloc_proxy
531 return allocate(__n, __allocated_n, _STLportAlloc());
534 // Unified interface to perform allocate()/deallocat
538 _Tp* allocate(size_type __n) function in class:_STLP_alloc_proxy
543 _Tp* allocate(size_type __n, size_type& __allocated_n, const __true_type& /*STLport allocator*/) function in class:_STLP_alloc_proxy
547 _Tp* allocate(size_type __n) function in class:_STLP_alloc_proxy
550 _Tp* allocate(size_type __n, size_type& __allocated_n, const __true_type& /*STLport allocator*/) function in class:_STLP_alloc_proxy
554 _Tp* allocate(size_type __n, size_type& __allocated_n, const __false_type& /*STLport allocator*/) function in class:_STLP_alloc_proxy
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DPODArena.h51 virtual void* allocate(size_t size) = 0;
59 // fastFree to allocate chunks of storage.
67 virtual void* allocate(size_t size) { return fastMalloc(size); } function in class:WebCore::FINAL::FastMallocAllocator
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/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/angle/src/compiler/
H A DPoolAlloc.h16 // 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(
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...]

Completed in 1223 milliseconds

1234567891011