HomeSort by relevance Sort by last modified time
    Searched defs:Allocate (Results 76 - 100 of 108) sorted by null

1 2 34 5

  /external/compiler-rt/lib/asan/
asan_allocator2.cc 297 void *Allocate(uptr size) {
298 return allocator.Allocate(cache_, size, 1, false);
313 static void *Allocate(uptr size, uptr alignment, StackTrace *stack,
346 Report("WARNING: AddressSanitizer failed to allocate %p bytes\n",
355 allocated = allocator.Allocate(cache, needed_size, 8, false);
359 allocated = allocator.Allocate(cache, needed_size, 8, false);
519 void *new_ptr = Allocate(new_size, 8, stack, FROM_MALLOC, true);
625 return Allocate(size, alignment, stack, alloc_type, true);
635 return Allocate(size, 8, stack, FROM_MALLOC, true);
640 void *ptr = Allocate(nmemb * size, 8, stack, FROM_MALLOC, false)
    [all...]
  /external/openfst/src/include/fst/
cache.h 50 // S *Allocate(StateId s);
67 S *Allocate(StateId s) {
157 cache_first_state_ = allocator_->Allocate(cache_first_state_id_);
167 S *copied_state = allocator_->Allocate(s);
484 C *allocator_; // used to allocate new states
508 cache_first_state_ = allocator_->Allocate(s);
514 // With Default allocator, the Free and Allocate will reuse the same S*.
517 cache_first_state_ = allocator_->Allocate(s);
525 state = allocator_->Allocate(s);
  /external/v8/src/
platform-cygwin.cc 152 void* OS::Allocate(const size_t requested,
159 LOG(ISOLATE, StringEvent("OS::Allocate", "mmap failed"));
260 // Allocate enough room to be able to store a full file name.
platform-freebsd.cc 167 void* OS::Allocate(const size_t requested,
175 LOG(ISOLATE, StringEvent("OS::Allocate", "mmap failed"));
platform-macos.cc 150 void* OS::Allocate(const size_t requested,
162 LOG(Isolate::Current(), StringEvent("OS::Allocate", "mmap failed"));
platform-solaris.cc 179 void* OS::Allocate(const size_t requested,
187 LOG(ISOLATE, StringEvent("OS::Allocate", "mmap failed"));
serialize.cc 595 Address Deserializer::Allocate(int space_index, Space* space, int size) {
739 Address address = Allocate(space_number, space, size);
    [all...]
lithium-allocator.cc     [all...]
platform-linux.cc 360 void* OS::Allocate(const size_t requested,
369 StringEvent("OS::Allocate", "mmap failed"));
481 // Allocate enough room to be able to store a full file name.
    [all...]
platform-openbsd.cc 185 void* OS::Allocate(const size_t requested,
194 StringEvent("OS::Allocate", "mmap failed"));
283 // Allocate enough room to be able to store a full file name.
spaces.cc 511 // Allocate executable memory either from code range or from the
928 // Sometimes we allocate memory from free list but don't
    [all...]
  /art/runtime/gc/
heap.cc 173 // Allocate the large object space.
190 // Allocate the card table.
577 obj = Allocate(self, large_object_space_, byte_count, &bytes_allocated);
584 obj = Allocate(self, alloc_space_, byte_count, &bytes_allocated);
585 // Ensure that we did not allocate into a zygote space.
616 oss << "Failed to allocate a " << byte_count << " byte allocation with " << total_bytes_free
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
heap-checker.cc 312 static void* Allocate(size_t n) {
429 // that can mmap/mremap/sbrk-allocate memory regions for stacks
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
heap-checker.cc 312 static void* Allocate(size_t n) {
429 // that can mmap/mremap/sbrk-allocate memory regions for stacks
    [all...]
  /external/chromium_org/v8/src/
d8.cc     [all...]
lithium-allocator.cc     [all...]
spaces.cc 632 // Allocate executable memory either from code range or from the
    [all...]
platform-win32.cc 870 // rounding up in OS::Allocate expects that.
901 // The address range used to randomize RWX allocations in OS::Allocate
939 void* OS::Allocate(const size_t requested,
953 LOG(ISOLATE, StringEvent("OS::Allocate", "VirtualAlloc failed"));
    [all...]
  /external/chromium_org/v8/src/ia32/
macro-assembler-ia32.cc     [all...]
  /external/chromium_org/v8/tools/gcmole/
gcmole.cc 400 static Environment* Allocate(const Environment& env) {
474 out = Environment::Allocate(*a_env);
486 out = Environment::Allocate(*b_env);
496 e = Environment::Allocate(Environment());
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.h 100 // For small size classes we allocate batches separately.
547 b = (Batch*)c->Allocate(this, SizeClassMap::ClassID(sizeof(Batch)));
603 // One Region is used to allocate chunks of a single size class.
800 b = (Batch*)c->Allocate(this, SizeClassMap::ClassID(sizeof(Batch)));
842 void *Allocate(SizeClassAllocator *allocator, uptr class_id) {
913 b = (Batch*)Allocate(allocator, SizeClassMap::ClassID(sizeof(Batch)));
928 // This class can (de)allocate only large chunks of memory using mmap/unmap.
939 void *Allocate(AllocatorStats *stat, uptr size, uptr alignment) {
    [all...]
  /external/v8/tools/gcmole/
gcmole.cc 400 static Environment* Allocate(const Environment& env) {
474 out = Environment::Allocate(*a_env);
486 out = Environment::Allocate(*b_env);
496 e = Environment::Allocate(Environment());
    [all...]
  /external/chromium_org/v8/src/x64/
macro-assembler-x64.cc 726 // Allocate HandleScope in callee-save registers.
    [all...]
  /external/clang/include/clang/AST/
ASTContext.h 464 void *Allocate(size_t Size, unsigned Align = 8) const {
465 return BumpAlloc.Allocate(Size, Align);
    [all...]
  /external/protobuf/src/google/protobuf/
descriptor.cc 373 // Allocate an object which will be reclaimed when the pool is
377 template<typename Type> Type* Allocate();
379 // Allocate an array of objects which will be reclaimed when the
383 // Allocate a string which will be destroyed when the pool is destroyed.
387 // Allocate a protocol message object. Some older versions of GCC have
393 // Allocate a FileDescriptorTables object.
414 // Allocate some bytes which will be reclaimed when the pool is
706 Type* DescriptorPool::Tables::Allocate() {
    [all...]

Completed in 1357 milliseconds

1 2 34 5