HomeSort by relevance Sort by last modified time
    Searched refs:chunk_ (Results 1 - 25 of 40) sorted by null

1 2

  /external/v8/src/crankshaft/
lithium-allocator-inl.h 35 bool LAllocator::IsGapAt(int index) { return chunk_->IsGapAt(index); }
39 return chunk_->instructions()->at(index);
44 return chunk_->GetGapAt(index);
lithium-codegen.h 35 LPlatformChunk* chunk() const { return chunk_; }
74 LPlatformChunk* const chunk_; member in class:v8::internal::BASE_EMBEDDED
lithium-codegen.cc 51 : chunk_(static_cast<LPlatformChunk*>(chunk)),
170 if (!chunk_->GetLabel(i)->HasReplacement()) return i;
190 chunk_->AddDeprecationDependency(map);
196 chunk_->AddStabilityDependency(map);
lithium.h 718 chunk_(NULL),
732 LPlatformChunk* chunk() const { return chunk_; }
768 LPlatformChunk* chunk_; member in class:v8::internal::BASE_EMBEDDED
788 chunk_(chunk) { }
792 LChunk* chunk_; member in class:v8::internal::LPhase
lithium-allocator.cc 517 chunk_(NULL),
665 int index = chunk_->NearestGapPos(last_instruction);
800 chunk_->AddGapMove(gap_index, first_output, output_copy);
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
webm_video_source.h 82 chunk_(0),
138 if (chunk_ >= chunks_) {
161 chunk_ = 0;
164 ASSERT_FALSE(nestegg_packet_data(pkt_, chunk_, &buf_, &buf_sz_))
166 chunk_++;
181 unsigned int chunk_; member in class:libvpx_test::WebMVideoSource
  /external/libchrome/base/trace_event/
trace_buffer.h 35 return &chunk_[index];
39 return &chunk_[index];
55 TraceEvent chunk_[kTraceBufferChunkSize];
trace_buffer.cc 299 chunk_[i].Reset();
308 return &chunk_[*event_index];
315 cloned_chunk->chunk_[i].CopyFrom(chunk_[i]);
327 sizeof(*this) - sizeof(chunk_));
340 chunk_[i].EstimateTraceMemoryOverhead(cached_overhead_estimate_.get());
trace_log.cc 215 if (!chunk_ || handle.chunk_seq != chunk_->seq() ||
220 return chunk_->GetEventAt(handle.event_index);
242 scoped_ptr<TraceBufferChunk> chunk_;
283 if (chunk_ && chunk_->IsFull()) {
286 chunk_.reset();
288 if (!chunk_) {
290 chunk_ = trace_log_->logged_events_->GetChunk(&chunk_index_);
293 if (!chunk_)
    [all...]
  /external/v8/src/heap/
slot-set.h 263 chunk_ = new Chunk(nullptr, kInitialBufferSize);
267 Chunk* chunk = chunk_;
278 if (!chunk_->AddSlot(slot)) {
279 chunk_ = new Chunk(chunk_, NextCapacity(chunk_->capacity));
280 bool added = chunk_->AddSlot(slot);
299 Chunk* chunk = chunk_;
351 Chunk* chunk_;
mark-compact.h 324 explicit MarkBitCellIterator(MemoryChunk* chunk) : chunk_(chunk) {
326 chunk_->AddressToMarkbitIndex(chunk_->area_end())));
327 cell_base_ = chunk_->area_start();
329 Bitmap::CellAlignIndex(chunk_->AddressToMarkbitIndex(cell_base_)));
330 cells_ = chunk_->markbits()->cells();
339 chunk_->AddressToMarkbitIndex(cell_base_))));
345 chunk_->AddressToMarkbitIndex(cell_base_))));
363 MemoryChunk* chunk_; member in class:v8::internal::BASE_EMBEDDED
382 : chunk_(chunk)
393 MemoryChunk* chunk_; member in class:v8::internal::BASE_EMBEDDED
    [all...]
  /external/compiler-rt/lib/asan/
asan_allocator.h 51 explicit AsanChunkView(AsanChunk *chunk) : chunk_(chunk) {}
59 bool Eq(const AsanChunkView &c) const { return chunk_ == c.chunk_; }
86 AsanChunk *const chunk_; member in class:__asan::AsanChunkView
asan_allocator.cc 656 return chunk_ && chunk_->chunk_state != CHUNK_AVAILABLE;
658 uptr AsanChunkView::Beg() { return chunk_->Beg(); }
660 uptr AsanChunkView::UsedSize() { return chunk_->UsedSize(); }
661 uptr AsanChunkView::AllocTid() { return chunk_->alloc_tid; }
662 uptr AsanChunkView::FreeTid() { return chunk_->free_tid; }
672 return GetStackTraceFromId(chunk_->alloc_context_id);
676 return GetStackTraceFromId(chunk_->free_context_id);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
iter_fold_impl.hpp 138 > chunk_; typedef in struct:boost::mpl::aux::iter_fold_impl
142 , typename chunk_::iterator
144 , typename chunk_::state
fold_impl.hpp 138 > chunk_; typedef in struct:boost::mpl::aux::fold_impl
142 , typename chunk_::iterator
144 , typename chunk_::state
  /external/v8/src/crankshaft/mips64/
lithium-codegen-mips64.cc 376 HConstant* constant = chunk_->LookupConstant(const_op);
378 Representation r = chunk_->LookupLiteralRepresentation(const_op);
415 HConstant* constant = chunk_->LookupConstant(const_op);
417 Representation r = chunk_->LookupLiteralRepresentation(const_op);
440 HConstant* constant = chunk_->LookupConstant(op);
441 DCHECK(chunk_->LookupLiteralRepresentation(op).IsSmiOrTagged());
447 return chunk_->LookupLiteralRepresentation(op).IsSmiOrInteger32();
452 return chunk_->LookupLiteralRepresentation(op).IsSmi();
458 HConstant* constant = chunk_->LookupConstant(op);
465 HConstant* constant = chunk_->LookupConstant(op)
    [all...]
  /external/v8/src/crankshaft/mips/
lithium-codegen-mips.cc 393 HConstant* constant = chunk_->LookupConstant(const_op);
395 Representation r = chunk_->LookupLiteralRepresentation(const_op);
432 HConstant* constant = chunk_->LookupConstant(const_op);
434 Representation r = chunk_->LookupLiteralRepresentation(const_op);
457 HConstant* constant = chunk_->LookupConstant(op);
458 DCHECK(chunk_->LookupLiteralRepresentation(op).IsSmiOrTagged());
464 return chunk_->LookupLiteralRepresentation(op).IsSmiOrInteger32();
469 return chunk_->LookupLiteralRepresentation(op).IsSmi();
480 HConstant* constant = chunk_->LookupConstant(op);
489 HConstant* constant = chunk_->LookupConstant(op)
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-codegen-x64.cc 425 return chunk_->LookupLiteralRepresentation(op).IsSmiOrInteger32();
430 return chunk_->LookupLiteralRepresentation(op).IsExternal();
436 chunk_->IsDehoistedKey(chunk_->LookupConstant(op));
441 return chunk_->LookupLiteralRepresentation(op).IsSmi();
452 HConstant* constant = chunk_->LookupConstant(op);
461 HConstant* constant = chunk_->LookupConstant(op);
467 HConstant* constant = chunk_->LookupConstant(op);
474 HConstant* constant = chunk_->LookupConstant(op);
481 HConstant* constant = chunk_->LookupConstant(op)
    [all...]
  /external/v8/src/crankshaft/arm/
lithium-codegen-arm.cc 397 HConstant* constant = chunk_->LookupConstant(const_op);
399 Representation r = chunk_->LookupLiteralRepresentation(const_op);
433 HConstant* constant = chunk_->LookupConstant(const_op);
435 Representation r = chunk_->LookupLiteralRepresentation(const_op);
460 HConstant* constant = chunk_->LookupConstant(op);
461 DCHECK(chunk_->LookupLiteralRepresentation(op).IsSmiOrTagged());
467 return chunk_->LookupLiteralRepresentation(op).IsSmiOrInteger32();
472 return chunk_->LookupLiteralRepresentation(op).IsSmi();
483 HConstant* constant = chunk_->LookupConstant(op);
492 HConstant* constant = chunk_->LookupConstant(op)
    [all...]
  /external/v8/src/crankshaft/s390/
lithium-codegen-s390.cc 371 HConstant* constant = chunk_->LookupConstant(const_op);
373 Representation r = chunk_->LookupLiteralRepresentation(const_op);
396 HConstant* constant = chunk_->LookupConstant(const_op);
411 HConstant* constant = chunk_->LookupConstant(op);
412 DCHECK(chunk_->LookupLiteralRepresentation(op).IsSmiOrTagged());
417 return chunk_->LookupLiteralRepresentation(op).IsSmiOrInteger32();
421 return chunk_->LookupLiteralRepresentation(op).IsSmi();
430 HConstant* constant = chunk_->LookupConstant(op);
438 HConstant* constant = chunk_->LookupConstant(op);
443 HConstant* constant = chunk_->LookupConstant(op)
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-codegen-ia32.cc 410 HConstant* constant = chunk_->LookupConstant(op);
423 HConstant* constant = chunk_->LookupConstant(op);
424 DCHECK(chunk_->LookupLiteralRepresentation(op).IsSmiOrTagged());
430 HConstant* constant = chunk_->LookupConstant(op);
437 HConstant* constant = chunk_->LookupConstant(op);
444 return chunk_->LookupLiteralRepresentation(op).IsSmiOrInteger32();
449 return chunk_->LookupLiteralRepresentation(op).IsSmi();
625 chunk_->LookupConstant(LConstantOperand::cast(context));
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-codegen-ppc.cc 389 HConstant* constant = chunk_->LookupConstant(const_op);
391 Representation r = chunk_->LookupLiteralRepresentation(const_op);
415 HConstant* constant = chunk_->LookupConstant(const_op);
432 HConstant* constant = chunk_->LookupConstant(op);
433 DCHECK(chunk_->LookupLiteralRepresentation(op).IsSmiOrTagged());
439 return chunk_->LookupLiteralRepresentation(op).IsSmiOrInteger32();
444 return chunk_->LookupLiteralRepresentation(op).IsSmi();
455 HConstant* constant = chunk_->LookupConstant(op);
464 HConstant* constant = chunk_->LookupConstant(op);
470 HConstant* constant = chunk_->LookupConstant(op)
    [all...]
  /external/v8/src/crankshaft/x87/
lithium-codegen-x87.cc 678 HConstant* constant = chunk_->LookupConstant(op);
691 HConstant* constant = chunk_->LookupConstant(op);
692 DCHECK(chunk_->LookupLiteralRepresentation(op).IsSmiOrTagged());
698 HConstant* constant = chunk_->LookupConstant(op);
705 HConstant* constant = chunk_->LookupConstant(op);
712 return chunk_->LookupLiteralRepresentation(op).IsSmiOrInteger32();
717 return chunk_->LookupLiteralRepresentation(op).IsSmi();
895 chunk_->LookupConstant(LConstantOperand::cast(context));
    [all...]
lithium-x87.cc 423 chunk_ = new(zone()) LPlatformChunk(info(), graph());
424 LPhase phase("L_Building chunk", chunk_);
431 chunk_->GetNextSpillIndex(GENERAL_REGISTERS);
443 return chunk_;
498 ? chunk_->DefineConstantOperand(HConstant::cast(value))
505 ? chunk_->DefineConstantOperand(HConstant::cast(value))
513 ? chunk_->DefineConstantOperand(HConstant::cast(value))
520 ? chunk_->DefineConstantOperand(HConstant::cast(value))
527 ? chunk_->DefineConstantOperand(HConstant::cast(value))
533 return chunk_->DefineConstantOperand(HConstant::cast(value))
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-codegen-arm64.cc 428 chunk_->LookupConstant(LConstantOperand::cast(context));
    [all...]

Completed in 714 milliseconds

1 2