HomeSort by relevance Sort by last modified time
    Searched refs:allocate (Results 1 - 25 of 1320) 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/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/compiler-rt/lib/asan/
asan_win_dynamic_runtime_thunk.cc 66 __declspec(allocate(".CRT$XTW")) void* before_global_dtors = 0;
67 __declspec(allocate(".CRT$XTY")) void* after_global_dtors = 0;
81 __declspec(allocate(".CRT$XID"))
96 __declspec(allocate(".CRT$XIZ")) int (*__asan_seh_interceptor)() = SetSEHFilter;
  /external/deqp/framework/randomshaders/
rsgNameAllocator.hpp 41 std::string allocate (void);
  /external/libcxx/test/std/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/msm8909/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/msm8994/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);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
greg9.s 1 % Check that we can allocate max number of GREGs.
2 % A bit cheesy: we allocate anonymous GREGs with no handle. This isn't
  /external/clang/test/CodeGenCXX/
sections.cpp 37 __declspec(allocate("read_flag_section")) int unreferenced = 0;
38 extern __declspec(allocate("read_flag_section")) int referenced = 42;
43 __declspec(allocate("no_section_attributes")) int implicitly_read_write = 42;
47 __declspec(allocate("long_section")) long long_var = 42;
51 __declspec(allocate("short_section")) short short_var = 42;
  /external/libcxx/test/std/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 313 ByteBuffer bbd = ByteBuffer.allocate(100);
329 ByteBuffer[] bbA = { ByteBuffer.allocate(100), ByteBuffer.allocate(10), ByteBuffer.allocate(100) };
331 ByteBuffer bb = ByteBuffer.allocate(10);
365 ByteBuffer bbR = ByteBuffer.allocate(100).asReadOnlyBuffer();
366 ByteBuffer[] bbA = { bbR, ByteBuffer.allocate(10), ByteBuffer.allocate(100) };
368 ByteBuffer bb = ByteBuffer.allocate(10);
387 ByteBuffer[] bbA = {ByteBuffer.allocate(100), ByteBuffer.allocate(10), ByteBuffer.allocate(100)}
    [all...]
  /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);

Completed in 2012 milliseconds

1 2 3 4 5 6 7 8 91011>>