HomeSort by relevance Sort by last modified time
    Searched refs:allocate (Results 1 - 25 of 1315) 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/clang/test/SemaCXX/
PR12778.cpp 4 void* allocate(int __n) { function
  /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();
  /external/deqp/framework/randomshaders/
rsgNameAllocator.hpp 41 std::string allocate (void);
  /external/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);
  /hardware/qcom/display/msm8084/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/msm8226/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/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);
  /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);
  /external/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);
  /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);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
SSLEngineTest.java 312 ByteBuffer bbd = ByteBuffer.allocate(100);
328 ByteBuffer[] bbA = { ByteBuffer.allocate(100), ByteBuffer.allocate(10), ByteBuffer.allocate(100) };
330 ByteBuffer bb = ByteBuffer.allocate(10);
364 ByteBuffer bbR = ByteBuffer.allocate(100).asReadOnlyBuffer();
365 ByteBuffer[] bbA = { bbR, ByteBuffer.allocate(10), ByteBuffer.allocate(100) };
367 ByteBuffer bb = ByteBuffer.allocate(10);
386 ByteBuffer[] bbA = {ByteBuffer.allocate(100), ByteBuffer.allocate(10), ByteBuffer.allocate(100)}
    [all...]
  /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/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);

Completed in 422 milliseconds

1 2 3 4 5 6 7 8 91011>>