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

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/v8/test/cctest/
test-code-stubs-ia32.cc 48 // Allocate an executable page of memory.
50 byte* buffer = static_cast<byte*>(OS::Allocate(Assembler::kMinimalBufferSize,
  /external/chromium_org/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/clang/include/clang/AST/
CommentSema.h 84 T *Mem = Allocator.Allocate<T>(Size);
  /external/clang/include/clang/Analysis/Support/
BumpVector.h 222 // Allocate the memory from the BumpPtrAllocator.
223 T *NewElts = C.getAllocator().template Allocate<T>(NewCapacity);
  /external/clang/include/clang/Lex/
MacroInfo.h 184 ArgumentList = PPAllocator.Allocate<IdentifierInfo*>(NumArgs);
  /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 108 void *p = allocator()->Allocate(&thr->alloc_cache, sz, align);
  /external/llvm/include/llvm/ADT/
ScopedHashTable.h 65 ScopedHashTableVal *New = Allocator.template Allocate<ScopedHashTableVal>();
  /external/llvm/lib/CodeGen/
MachineFunction.cpp 117 /// does already exist, allocate one.
169 /// CreateMachineInstr - Allocate a new MachineInstr. Use this instead
175 return new (InstructionRecycler.Allocate<MachineInstr>(Allocator))
185 return new (InstructionRecycler.Allocate<MachineInstr>(Allocator))
205 /// CreateMachineBasicBlock - Allocate a new MachineBasicBlock. Use this
210 return new (BasicBlockRecycler.Allocate<MachineBasicBlock>(Allocator))
244 return Allocator.Allocate<MachineMemOperand *>(Num);
256 // Allocate a new array and populate it with the load information.
288 // Allocate a new array and populate it with the store information.
494 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...]
  /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/chromium_org/media/cdm/ppapi/
cdm_wrapper.cc 270 cdm::Buffer* Allocate(int32_t capacity);
298 cdm::Buffer* PpbBufferAllocator::Allocate(int32_t capacity) {
527 virtual cdm::Buffer* Allocate(int32_t capacity) OVERRIDE;
894 cdm::Buffer* CdmWrapper::Allocate(int32_t capacity) {
895 return allocator_.Allocate(capacity);
    [all...]
clear_key_cdm.cc 304 host_->Allocate(buffer->data_size()));
521 audio_frames->SetFrameBuffer(host_->Allocate(kHeaderSize + frame_size));
ffmpeg_cdm_audio_decoder.cc 368 host_->Allocate(serialized_audio_frames_.size()));
370 LOG(ERROR) << "DecodeBuffer() cdm::Host::Allocate failed.";
ffmpeg_cdm_video_decoder.cc 277 cdm_video_frame->SetFrameBuffer(host_->Allocate(space_required));
279 LOG(ERROR) << "CopyAvFrameTo() cdm::Host::Allocate failed.";
  /external/chromium_org/v8/src/arm/
codegen-arm.cc 67 byte* buffer = static_cast<byte*>(OS::Allocate(1 * KB, &actual_size, true));
125 byte* buffer = static_cast<byte*>(OS::Allocate(1 * KB, &actual_size, true));
283 byte* buffer = static_cast<byte*>(OS::Allocate(1 * KB, &actual_size, true));
450 // Allocate new FixedDoubleArray.
454 __ Allocate(lr, r6, r7, r9, &gc_required, DOUBLE_ALIGNMENT);
577 // Allocate new FixedArray.
580 __ Allocate(r0, r6, r7, r9, &gc_required, NO_ALLOCATION_FLAGS);
  /external/chromium_org/v8/src/
heap.cc     [all...]
platform-freebsd.cc 112 void* OS::Allocate(const size_t requested,
120 LOG(ISOLATE, StringEvent("OS::Allocate", "mmap failed"));
spaces-inl.h 289 object = free_list_.Allocate(size_in_bytes);
  /external/chromium_org/v8/src/ia32/
codegen-ia32.cc 62 // Allocate buffer in executable space.
63 byte* buffer = static_cast<byte*>(OS::Allocate(1 * KB,
109 byte* buffer = static_cast<byte*>(OS::Allocate(1 * KB, &actual_size, true));
145 // Allocate buffer in executable space.
146 byte* buffer = static_cast<byte*>(OS::Allocate(1 * KB,
258 // Allocate buffer in executable space.
259 byte* buffer = static_cast<byte*>(OS::Allocate(1 * KB, &actual_size, true));
707 // Allocate new FixedDoubleArray.
712 __ Allocate(FixedDoubleArray::kHeaderSize, times_8, edi,
847 // Allocate new FixedArray
    [all...]
  /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/chromium_org/apps/app_host/
binaries_installer.cc 198 if (temp_ap_value.Allocate(L"2.0-dev-multi-apphost") == NULL) {
199 LOG(ERROR) << "Unexpected error in ScopedBstr::Allocate.";
  /external/chromium_org/content/browser/loader/
async_resource_handler.cc 226 char* memory = buffer_->Allocate(&allocation_size_);

Completed in 1770 milliseconds

1 2 3 4 5 6 78 91011>>