HomeSort by relevance Sort by last modified time
    Searched refs:allocate (Results 1 - 25 of 1200) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
freemain.c 5 void* allocate(long size);
8 if (context) return allocate(size);
  /external/valgrind/main/none/tests/linux/
mremap.stderr.exp 2 mremap(grow, nomove, constrained): Cannot allocate memory
  /external/replicaisland/src/com/replica/replicaisland/
TObjectPool.java 35 public T allocate() { method in class:TObjectPool
36 T object = (T)super.allocate();
VectorPool.java 42 public Vector2 allocate(Vector2 source) { method in class:VectorPool
43 Vector2 entry = super.allocate();
  /hardware/qcom/display/msm8960/libgralloc/
alloc_controller.h 41 /* Allocate using a suitable method
44 virtual int allocate(alloc_data& data, int usage) = 0;
60 virtual int allocate(alloc_data& data, int usage);
  /hardware/qcom/display/msm8974/libgralloc/
alloc_controller.h 41 /* Allocate using a suitable method
44 virtual int allocate(alloc_data& data, int usage) = 0;
60 virtual int allocate(alloc_data& data, int usage);
  /hardware/qcom/display/msm8x26/libgralloc/
alloc_controller.h 41 /* Allocate using a suitable method
44 virtual int allocate(alloc_data& data, int usage) = 0;
60 virtual int allocate(alloc_data& data, int usage);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/allocator.traits/allocator.traits.members/
allocate.pass.cpp 15 // 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);
allocate_hint.pass.cpp 15 // 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);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.members/
allocate_size.pass.cpp 15 // pointer allocate(size_type n);
30 assert(a.allocate(10) == (int*)10);
37 assert(a.allocate(10) == (int*)10);
44 assert(a.allocate(10) == (int*)10);
allocate_size_hint.pass.cpp 15 // pointer allocate(size_type n, const_void_pointer hint);
30 assert(a.allocate(10, (const void*)0) == (int*)10);
37 assert(a.allocate(10, (const void*)10) == (int*)10);
44 assert(a.allocate(10, (const void*)20) == (int*)10);
52 assert(a.allocate(10, (const void*)0) == (int*)0);
59 assert(a.allocate(10, (const void*)10) == (int*)10);
66 assert(a.allocate(10, (const void*)20) == (int*)20);
  /external/compiler-rt/lib/asan/
asan_preinit.cc 30 __declspec(allocate(".CRT$XIB")) void (*__asan_preinit)() = __asan_init;
  /external/stlport/test/compiler/
eh.cc 18 //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);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/
HeapCharBufferTest.java 25 buf = CharBuffer.allocate(BUFFER_LENGTH);
38 CharBuffer.allocate(-1);
HeapDoubleBufferTest.java 23 buf = DoubleBuffer.allocate(BUFFER_LENGTH);
36 DoubleBuffer.allocate(-1);
HeapFloatBufferTest.java 23 buf = FloatBuffer.allocate(BUFFER_LENGTH);
36 FloatBuffer.allocate(-1);
HeapIntBufferTest.java 23 buf = IntBuffer.allocate(BUFFER_LENGTH);
36 IntBuffer.allocate(-1);
HeapLongBufferTest.java 23 buf = LongBuffer.allocate(BUFFER_LENGTH);
36 LongBuffer.allocate(-1);
HeapShortBufferTest.java 23 buf = ShortBuffer.allocate(BUFFER_LENGTH);
36 ShortBuffer.allocate(-1);
  /frameworks/compile/mclinker/unittests/
LinearAllocatorTest.cpp 43 Data* pointer = m_pTestee->allocate(10);
49 TEST_F( LinearAllocatorTest, allocate ) {
50 Data* pointer = m_pTestee->allocate();
57 Data* pointer = m_pTestee->allocate(CHUNK_SIZE+1);
64 Data* pointer = m_pTestee->allocate();
73 Data* pointer = m_pTestee->allocate();
84 Data* pointer = m_pTestee->allocate(10);
93 Data* pointer = m_pTestee->allocate(10);
105 Data* pointer = m_pTestee->allocate();
122 Data* pointer = m_pTestee->allocate(10)
    [all...]
RTLinearAllocatorTest.cpp 44 Data* pointer = m_pTestee->allocate(10);
50 TEST_F(RTLinearAllocatorTest, allocate ) {
51 Data* pointer = m_pTestee->allocate();
58 Data* pointer = m_pTestee->allocate(CHUNK_SIZE+1);
65 Data* pointer = m_pTestee->allocate();
74 Data* pointer = m_pTestee->allocate();
85 Data* pointer = m_pTestee->allocate(10);
94 Data* pointer = m_pTestee->allocate(10);
106 Data* pointer = m_pTestee->allocate();
123 Data* pointer = m_pTestee->allocate(10)
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
SSLEngineTest.java 393 ByteBuffer bbd = ByteBuffer.allocate(100);
411 ByteBuffer[] bbA = { ByteBuffer.allocate(100), ByteBuffer.allocate(10), ByteBuffer.allocate(100) };
413 ByteBuffer bb = ByteBuffer.allocate(10);
452 ByteBuffer bbR = ByteBuffer.allocate(100).asReadOnlyBuffer();
453 ByteBuffer[] bbA = { bbR, ByteBuffer.allocate(10), ByteBuffer.allocate(100) };
455 ByteBuffer bb = ByteBuffer.allocate(10);
478 ByteBuffer[] bbA = {ByteBuffer.allocate(100), ByteBuffer.allocate(10), ByteBuffer.allocate(100)}
    [all...]
  /art/test/080-oom-throw/src/
Main.java 38 static InstanceMemEater allocate() { method in class:Main.InstanceMemEater
57 InstanceMemEater memEater = InstanceMemEater.allocate();
60 lastMemEater.next = InstanceMemEater.allocate();
  /dalvik/tests/080-oom-throw/src/
Main.java 38 static InstanceMemEater allocate() { method in class:Main.InstanceMemEater
57 InstanceMemEater memEater = InstanceMemEater.allocate();
60 lastMemEater.next = InstanceMemEater.allocate();
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
autostatic.c 80 __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;

Completed in 563 milliseconds

1 2 3 4 5 6 7 8 91011>>