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

1 2 34 5 6 7 8

  /external/clang/include/clang/Lex/
MacroInfo.h 167 ArgumentList = PPAllocator.Allocate<IdentifierInfo*>(NumArgs);
  /external/clang/lib/AST/
DeclTemplate.cpp 64 void *Mem = C.Allocate(Size, Align);
146 // If we never found a common pointer, allocate one now.
547 void *Mem = C.Allocate(Size);
622 void *Mem = C.Allocate(sizeof(TemplateTemplateParmDecl) +
655 void *Mem = Context.Allocate(Size);
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common.h 96 void *Allocate(uptr size);
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_thread_registry_test.cc 26 void *mem = tctx_allocator.Allocate(sizeof(TCTX));
  /external/compiler-rt/lib/tsan/rtl/
tsan_mman.cc 104 void *p = allocator()->Allocate(&thr->alloc_cache, sz, align);
  /external/llvm/include/llvm/ADT/
ScopedHashTable.h 65 ScopedHashTableVal *New = Allocator.template Allocate<ScopedHashTableVal>();
StringMap.h 145 // in. Allocate a new item with space for the string at the end and a null
153 static_cast<StringMapEntry*>(Allocator.Allocate(AllocSize,Alignment));
  /external/llvm/lib/CodeGen/
MachineFunction.cpp 111 /// does already exist, allocate one.
163 /// CreateMachineInstr - Allocate a new MachineInstr. Use this instead
169 return new (InstructionRecycler.Allocate<MachineInstr>(Allocator))
179 return new (InstructionRecycler.Allocate<MachineInstr>(Allocator))
199 /// CreateMachineBasicBlock - Allocate a new MachineBasicBlock. Use this
204 return new (BasicBlockRecycler.Allocate<MachineBasicBlock>(Allocator))
238 return Allocator.Allocate<MachineMemOperand *>(Num);
250 // Allocate a new array and populate it with the load information.
282 // Allocate a new array and populate it with the store information.
484 assert(Size != 0 && "Cannot allocate zero size stack objects!")
    [all...]
  /external/v8/src/
platform-nullos.cc 235 void* OS::Allocate(const size_t requested,
heap.cc     [all...]
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/test/mjsunit/
string-slices.js 77 var w = Math.random() * 42; // Allocate something new in new-space.
93 var w = Math.random() * 42; // Allocate something new in new-space.
  /external/libffi/src/s390/
sysv.S 55 ahi %r15,-96-48 # Allocate stack
257 aghi %r15,-160-80 # Allocate stack
  /external/openfst/src/include/fst/
const-fst.h 176 states_region_ = MappedFile::Allocate(nstates_ * sizeof(*states_));
177 arcs_region_ = MappedFile::Allocate(narcs_ * sizeof(*arcs_));
  /external/clang/include/clang/AST/
ASTContext.h 454 void *Allocate(unsigned Size, unsigned Align = 8) const {
455 return BumpAlloc.Allocate(Size, Align);
    [all...]
  /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/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/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/include/clang/Basic/
OnDiskHashTable.h 181 insert(Buckets, NumBuckets, new (BA.Allocate<Item>()) Item(key, data,
  /external/clang/include/clang/Sema/
Overload.h 799 .Allocate<ImplicitConversionSequence>(NumConversions);
  /external/clang/lib/Basic/
IdentifierTable.cpp 503 (MultiKeywordSelector*)SelTabImpl.Allocator.Allocate(Size,

Completed in 1496 milliseconds

1 2 34 5 6 7 8