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

<<111213141516

  /external/chromium_org/v8/test/mjsunit/
large-object-allocation.js 28 // Allocate a very large object that is guaranteed to overflow the
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp 188 char *StrPtr = DebugInfoNames.Allocate<char>(NS.size());
218 char *StrPtr = DebugInfoNames.Allocate<char>(OS.tell());
227 char *StrPtr = DebugInfoNames.Allocate<char>(SName.size());
263 char *StrPtr = DebugInfoNames.Allocate<char>(Length);
336 char *CompDirnamePtr = DebugInfoNames.Allocate<char>(CWD.size());
362 char *FilenamePtr = DebugInfoNames.Allocate<char>(MainFileName.length());
368 char *SplitDwarfPtr = DebugInfoNames.Allocate<char>(SplitDwarfFile.length());
    [all...]
  /external/llvm/lib/IR/
Type.cpp 371 Allocate(sizeof(FunctionType) + sizeof(Type*) * (Params.size() + 1),
434 Type **Elts = getContext().pImpl->TypeAllocator.Allocate<Type*>(NumElements);
  /external/v8/test/mjsunit/
large-object-allocation.js 28 // Allocate a very large object that is guaranteed to overflow the
  /external/chromium_org/v8/src/arm/
builtins-arm.cc 214 __ Allocate(JSValue::kSize,
384 // Try to allocate the object without transitioning into C code. If any of
414 Label allocate; local
422 __ b(ne, &allocate);
433 __ bind(&allocate);
436 // Now allocate the JSObject on the heap.
440 __ Allocate(r3, r4, r5, r6, &rt_call, SIZE_IN_WORDS);
515 __ Allocate(
581 // Allocate the new receiver object using the runtime call.
    [all...]
  /external/chromium_org/v8/src/mips/
builtins-mips.cc 222 __ Allocate(JSValue::kSize,
402 // Try to allocate the object without transitioning into C code. If any of
430 Label allocate; local
438 __ Branch(&allocate, ne, t0, Operand(zero_reg));
449 __ bind(&allocate);
452 // Now allocate the JSObject on the heap.
456 __ Allocate(a3, t4, t5, t6, &rt_call, SIZE_IN_WORDS);
535 __ Allocate(
604 // Allocate the new receiver object using the runtime call.
    [all...]
  /external/chromium_org/v8/src/
serialize.cc 912 Address address = Allocate(space_number, size);
    [all...]
platform-linux.cc 355 void* OS::Allocate(const size_t requested,
364 StringEvent("OS::Allocate", "mmap failed"));
446 // Allocate enough room to be able to store a full file name.
scopeinfo.cc 48 // Make sure we allocate the correct amount.
540 Handle<ModuleInfo> info = Allocate(isolate, interface->Length());
  /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/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/content/browser/renderer_host/media/
video_capture_manager.cc 295 video_capture_device->Allocate(params_as_capability_copy,
  /external/chromium_org/media/video/capture/win/
video_capture_device_win.cc 342 void VideoCaptureDeviceWin::Allocate(
  /external/chromium_org/skia/ext/
platform_canvas_unittest.cc 409 EXPECT_TRUE(platform_bitmap->Allocate(kWidth, kHeight, /*is_opaque=*/false));
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8Binding.cpp 106 virtual void* Allocate(size_t size) OVERRIDE
  /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

Completed in 3363 milliseconds

<<111213141516