HomeSort by relevance Sort by last modified time
    Searched refs:Allocate (Results 251 - 275 of 371) sorted by null

<<1112131415

  /external/chromium_org/v8/src/x64/
builtins-x64.cc 152 // Try to allocate the object without transitioning into C code. If any of
187 Label allocate; local
192 __ j(not_zero, &allocate);
204 __ bind(&allocate);
207 // Now allocate the JSObject on the heap.
211 __ Allocate(rdi,
257 // Allocate and initialize a FixedArray if it is.
278 __ Allocate(FixedArray::kHeaderSize,
334 // Allocate the new receiver object using the runtime call.
    [all...]
  /external/clang/lib/Basic/
SourceManager.cpp 447 Entry = ContentCacheAlloc.Allocate<ContentCache>(1, EntryAlign);
479 ContentCache *Entry = ContentCacheAlloc.Allocate<ContentCache>(1, EntryAlign);
    [all...]
FileManager.cpp 571 char *Mem = static_cast<char *>(CanonicalNameStorage.Allocate(Len, 1));
  /art/runtime/gc/
heap.h 206 // For the alloc space, sets the maximum number of bytes that the heap is allowed to allocate
433 template <class T> mirror::Object* Allocate(Thread* self, T* space, size_t num_bytes, size_t* bytes_allocated)
437 // Handles Allocate()'s slow allocation path with GC involved after
444 // Try to allocate a number of bytes, this function never does any GCs.
450 // Try to allocate a number of bytes, this function never does any GCs. DlMallocSpace-specialized version.
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/image_editor/
exif_encoder.js 188 // Allocate the largest theoretically possible size.
522 * Allocate the space for 'width' bytes for the value that will be set later.
  /external/chromium_org/content/browser/renderer_host/
backing_store_gtk.cc 589 if (!output->Allocate(width, height, true) ||
  /external/chromium_org/skia/ext/
platform_canvas_unittest.cc 407 EXPECT_TRUE(platform_bitmap->Allocate(kWidth, kHeight, /*is_opaque=*/false));
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8Binding.cpp 101 virtual void* Allocate(size_t size) OVERRIDE
  /external/chromium_org/v8/src/
scopeinfo.cc 46 // Make sure we allocate the correct amount.
539 Handle<ModuleInfo> info = Allocate(isolate, interface->Length());
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CallEvent.h 931 void *allocate() { function in class:clang::ento::CallEventManager
933 return Alloc.Allocate<FunctionCall>();
940 return new (allocate()) T(A, St, LCtx);
945 return new (allocate()) T(A1, A2, St, LCtx);
951 return new (allocate()) T(A1, A2, A3, St, LCtx);
958 return new (allocate()) T(A1, A2, A3, A4, St, LCtx);
    [all...]
  /external/clang/lib/AST/
NestedNameSpecifier.cpp 630 void *Mem = Context.Allocate(BufferSize, llvm::alignOf<void *>());
  /external/clang/lib/Analysis/
AnalysisDeclContext.cpp 505 DeclVec *BV = (DeclVec*) A.Allocate<DeclVec>();
  /external/clang/lib/Format/
Format.cpp     [all...]
  /external/clang/lib/Lex/
PTHLexer.cpp 524 // Get the number of IdentifierInfos and pre-allocate the identifier cache.
527 // Pre-allocate the persistent ID -> IdentifierInfo* cache. We use calloc()
535 InvalidPTH(Diags, "Could not allocate memory for processing PTH file");
558 // Allocate the object.
560 Alloc.Allocate<std::pair<IdentifierInfo,const unsigned char*> >();
  /external/libffi/src/mips/
n32.S 68 # Allocate at least 4 words in the argstack
o32.S 64 # Allocate at least 4 words in the argstack
  /external/llvm/include/llvm/CodeGen/
SlotIndexes.h 362 ileAllocator.Allocate(sizeof(IndexListEntry),
  /external/llvm/lib/CodeGen/
ExecutionDepsFix.cpp 202 new(Allocator.Allocate()) DomainValue :
  /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-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"));
  /external/chromium_org/chrome_frame/
chrome_active_document.cc 757 url_.Allocate(UTF8ToWide(new_navigation_info.url.spec()).c_str());
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
tcmalloc.cc     [all...]
  /external/chromium_org/v8/src/arm/
macro-assembler-arm.h 736 // Allocate an object in new space or old pointer space. The object_size is
743 void Allocate(int object_size,
750 void Allocate(Register object_size,
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 470 Entry = Alloc.Allocate<PDFileEntry>();
475 // Allocate persistent storage for the file name.
476 char *FileName_cstr = (char*) Alloc.Allocate(FileName.size(), 1);
    [all...]

Completed in 1747 milliseconds

<<1112131415