HomeSort by relevance Sort by last modified time
    Searched defs:Allocate (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Common/
b2StackAllocator.cpp 36 void* b2StackAllocator::Allocate(int32 size)
  /external/clang/test/CXX/temp/temp.spec/temp.inst/
p11.cpp 9 void Allocate(unsigned Alignment
13 void f1(A<int> x) { x.Allocate(); }
  /external/skia/src/pathops/
SkOpTAllocator.h 16 static T* Allocate(SkChunkAlloc* allocator) {
29 return new (Allocate(allocator)) T();
  /external/v8/src/base/
accounting-allocator.cc 16 void* AccountingAllocator::Allocate(size_t bytes) {
  /external/clang/test/Index/
index-file.cpp 4 template < typename T > *Allocate() { }
  /external/dng_sdk/source/
dng_ref_counted_block.cpp 40 Allocate (size);
55 void dng_ref_counted_block::Allocate (uint32 size)
172 Allocate ((uint32)possiblySharedHeader->fSize);
dng_string_list.cpp 46 void dng_string_list::Allocate (uint32 minSize)
92 Allocate (fCount + 1);
dng_memory.cpp 40 Allocate (size);
52 Allocate (count, elementSize);
67 void dng_memory_data::Allocate (uint32 size)
90 void dng_memory_data::Allocate (uint32 count, std::size_t elementSize)
100 // Compute required number of bytes and allocate memory.
106 Allocate(numBytes);
131 dng_memory_block * result = allocator.Allocate (size);
218 dng_memory_block * dng_memory_allocator::Allocate (uint32 size)
dng_host.cpp 90 dng_memory_block * dng_host::Allocate (uint32 logicalSize)
93 return Allocator ().Allocate (logicalSize);
  /external/google-breakpad/src/client/mac/handler/
protected_memory_allocator.cc 62 char *ProtectedMemoryAllocator::Allocate(vm_size_t bytes) {
  /external/google-breakpad/src/client/
minidump_file_writer-inl.h 45 inline bool TypedMDRVA<MDType>::Allocate() {
47 return UntypedMDRVA::Allocate(minidump_size<MDType>::size());
51 inline bool TypedMDRVA<MDType>::Allocate(size_t additional) {
53 return UntypedMDRVA::Allocate(minidump_size<MDType>::size() + additional);
60 return UntypedMDRVA::Allocate(minidump_size<MDType>::size() * count);
68 return UntypedMDRVA::Allocate(minidump_size<MDType>::size() + count * length);
minidump_file_writer.cc 171 // Allocate the string buffer
209 if (!mem.Allocate(size))
220 MDRVA MinidumpFileWriter::Allocate(size_t size) {
270 bool UntypedMDRVA::Allocate(size_t size) {
273 position_ = writer_->Allocate(size_);
  /system/core/libion/tests/
allocate_test.cpp 24 class Allocate : public IonAllHeapsTest {
27 TEST_F(Allocate, Allocate)
42 TEST_F(Allocate, AllocateCached)
57 TEST_F(Allocate, AllocateCachedNeedsSync)
72 TEST_F(Allocate, RepeatedAllocate)
91 TEST_F(Allocate, Zeroed)
138 TEST_F(Allocate, Large)
  /external/compiler-rt/test/asan/TestCases/Posix/
new_array_cookie_with_new_from_class.cc 12 void *operator new(size_t s) { return Allocate(s); }
13 void *operator new[] (size_t s) { return Allocate(s); }
16 static void *Allocate(size_t s) {
  /external/drm_hwcomposer/
drmframebuffer.h 55 bool Allocate(uint32_t w, uint32_t h) {
  /external/llvm/include/llvm/Support/
RecyclingAllocator.h 40 /// Allocate - Return a pointer to storage for an object of type
44 SubClass *Allocate() { return Base.template Allocate<SubClass>(Allocator); }
46 T *Allocate() { return Base.Allocate(Allocator); }
67 return Allocator.Allocate();
Recycler.h 82 SubClass *Allocate(AllocatorType &Allocator) {
88 : static_cast<SubClass *>(Allocator.Allocate(Size, Align));
92 T *Allocate(AllocatorType &Allocator) {
93 return Allocate<T>(Allocator);
  /external/opencv/
WLNonFileByteStream.cpp 33 void WLNonFileByteStream::Allocate(int data_size)
54 Allocate(data_size);
  /external/v8/samples/
hello-world.cc 16 virtual void* Allocate(size_t length) {
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.cc 74 return internal_allocator()->Allocate(&internal_allocator_cache, size, 8,
77 return internal_allocator()->Allocate(cache, size, 8, false);
114 void *LowLevelAllocator::Allocate(uptr size) {
  /external/llvm/unittests/Support/
AllocatorTest.cpp 20 int *a = (int*)Alloc.Allocate(sizeof(int), 1);
21 int *b = (int*)Alloc.Allocate(sizeof(int) * 10, 1);
22 int *c = (int*)Alloc.Allocate(sizeof(int), 1);
49 // Allocate enough bytes to create three slabs.
52 Alloc.Allocate(3000, 1);
54 Alloc.Allocate(3000, 1);
56 Alloc.Allocate(3000, 1);
60 // Allocate enough bytes to create two slabs, reset the allocator, and do it
65 // Allocate something larger than the SizeThreshold=4096.
66 (void)Alloc.Allocate(5000, 1)
    [all...]
  /external/v8/src/ast/
modules.h 38 void Allocate(int index) {
  /external/v8/test/fuzzer/
fuzzer-support.cc 32 virtual void* Allocate(size_t length) {
  /external/v8/test/unittests/compiler/
zone-pool-unittest.cc 33 size_t Allocate(Zone* zone) {
71 before_stats += Allocate(scopes[i]->zone()); // Add some stuff.
80 before_deletion += Allocate(scopes[i]->zone()); // Add some stuff.
99 after_deletion += Allocate(scopes[i]->zone()); // Add some stuff.
130 size_t bytes = Allocate(outer_scope.zone());
139 size_t bytes = Allocate(inner_scope.zone());
  /art/compiler/optimizing/
optimizing_cfi_test.cc 126 virtual uint8_t* Allocate(size_t size) {

Completed in 546 milliseconds

1 2 3 4