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

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/v8/test/cctest/
test-weakmaps.cc 49 Object* table_obj = ObjectHashTable::Allocate(heap, 1)->ToObjectChecked();
test-weaksets.cc 49 Object* table_obj = ObjectHashTable::Allocate(heap, 1)->ToObjectChecked();
  /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/clang/include/clang/AST/
ASTContext.h 464 void *Allocate(size_t Size, unsigned Align = 8) const {
465 return BumpAlloc.Allocate(Size, Align);
    [all...]
  /external/clang/lib/AST/
DeclTemplate.cpp 64 void *Mem = C.Allocate(Size, Align);
146 // If we never found a common pointer, allocate one now.
563 void *Mem = C.Allocate(Size);
638 void *Mem = C.Allocate(sizeof(TemplateTemplateParmDecl) +
671 void *Mem = Context.Allocate(Size);
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common.h 97 void *Allocate(uptr size);
  /external/llvm/include/llvm/ADT/
StringMap.h 153 // in. Allocate a new item with space for the string at the end and a null
161 static_cast<StringMapEntry*>(Allocator.Allocate(AllocSize,Alignment));
  /external/llvm/include/llvm/CodeGen/
MachineFunction.h 103 // Pool-allocate MachineFunction-lifetime and IR objects.
185 /// does already exist, allocate one.
238 // This should be just `new (Allocator.Allocate<Ty>()) Ty(*this)', but
240 Ty *Loc = static_cast<Ty*>(Allocator.Allocate(sizeof(Ty),
371 /// CreateMachineInstr - Allocate a new MachineInstr. Use this instead
390 /// CreateMachineBasicBlock - Allocate a new MachineBasicBlock. Use this
399 /// getMachineMemOperand - Allocate a new MachineMemOperand.
408 /// getMachineMemOperand - Allocate a new MachineMemOperand by copying
417 /// Allocate an array of MachineOperands. This is only intended for use by
420 return OperandRecycler.allocate(Cap, Allocator)
    [all...]
  /external/llvm/include/llvm/Support/
YAMLParser.h 143 return Alloc.Allocate(Size, Alignment);
485 /// @brief Used to allocate nodes to. All are destroyed without calling their
  /external/llvm/lib/Support/
FoldingSet.cpp 176 unsigned *New = Allocator.Allocate<unsigned>(Bits.size());
  /external/v8/src/
platform.h 179 // Allocate/Free memory used by JS heap. Pages are readable/writable, but
182 static void* Allocate(const size_t requested,
200 // Get the Alignment guaranteed by Allocate().
204 // has been allocated by Allocate(). This method may conservatively
spaces-inl.h 272 object = free_list_.Allocate(size_in_bytes);
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...]
  /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/content/browser/renderer_host/java/
java_bound_object.cc 58 static NPObject* Allocate(NPP npp, NPClass* np_class);
71 JavaNPObject::Allocate,
83 NPObject* JavaNPObject::Allocate(NPP npp, NPClass* np_class) {
783 // allocate function directly, and we don't use it, so it's ok to be 0.
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
debugallocation.cc 481 static MallocBlock* Allocate(size_t size, int type) {
681 // We don't want to allocate or deallocate memory here, so we use
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
debugallocation.cc 483 static MallocBlock* Allocate(size_t size, int type) {
685 // We don't want to allocate or deallocate memory here, so we use
    [all...]
  /external/chromium_org/v8/src/ia32/
macro-assembler-ia32.cc     [all...]
macro-assembler-ia32.h 588 // Allocate an object in new space or old pointer space. If the given space
598 void Allocate(int object_size,
605 void Allocate(int header_size,
615 void Allocate(Register object_size,
628 // Allocate a heap number in new space with undefined value. The
637 // Allocate a sequential string. All the header fields of the string object
657 // Allocate a raw cons string object. Only the map field of the result is
668 // Allocate a raw sliced string object. Only the map field of the result is
    [all...]
builtins-ia32.cc 162 // Try to allocate the object without transitioning into C code. If any of
194 Label allocate; local
199 __ j(not_zero, &allocate);
211 __ bind(&allocate);
214 // Now allocate the JSObject on the heap.
219 __ Allocate(edi, ebx, edi, no_reg, &rt_call, NO_ALLOCATION_FLAGS);
261 // Allocate and initialize a FixedArray if it is.
282 __ Allocate(FixedArray::kHeaderSize,
338 // Allocate the new receiver object using the runtime call.
    [all...]
  /external/chromium_org/v8/src/mips/
codegen-mips.cc 67 byte* buffer = static_cast<byte*>(OS::Allocate(1 * KB, &actual_size, true));
205 // Allocate new FixedDoubleArray.
208 __ Allocate(scratch, t2, t3, t5, &gc_required, DOUBLE_ALIGNMENT);
334 // Allocate new FixedArray.
337 __ Allocate(a0, t2, t3, t5, &gc_required, NO_ALLOCATION_FLAGS);
  /external/v8/src/ia32/
codegen-ia32.cc 62 // Allocate buffer in executable space.
63 byte* buffer = static_cast<byte*>(OS::Allocate(1 * KB,
107 // Allocate buffer in executable space.
108 byte* buffer = static_cast<byte*>(OS::Allocate(1 * KB,
145 // Allocate buffer in executable space.
146 byte* buffer = static_cast<byte*>(OS::Allocate(1 * KB,
397 // Allocate new FixedDoubleArray.
530 // Allocate new FixedArray.
  /external/clang/lib/Lex/
PPDirectives.cpp 43 MIChain = BP.Allocate<MacroInfoChain>();
66 BP.Allocate<DeserializedMacroInfoChain>();
80 DefMacroDirective *MD = BP.Allocate<DefMacroDirective>();
87 UndefMacroDirective *MD = BP.Allocate<UndefMacroDirective>();
95 VisibilityMacroDirective *MD = BP.Allocate<VisibilityMacroDirective>();
    [all...]
  /external/chromium_org/v8/src/arm/
macro-assembler-arm.cc     [all...]
  /external/chromium_org/v8/src/x64/
builtins-x64.cc 164 // Try to allocate the object without transitioning into C code. If any of
199 Label allocate; local
204 __ j(not_zero, &allocate);
216 __ bind(&allocate);
219 // Now allocate the JSObject on the heap.
223 __ Allocate(rdi,
269 // Allocate and initialize a FixedArray if it is.
290 __ Allocate(FixedArray::kHeaderSize,
346 // Allocate the new receiver object using the runtime call.
    [all...]

Completed in 567 milliseconds

1 2 3 4 5 6 7 891011>>