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

1 2 3

  /external/libvpx/libvpx/test/
webm_video_source.h 82 chunk_(0),
134 if (chunk_ >= chunks_) {
155 chunk_ = 0;
158 ASSERT_FALSE(nestegg_packet_data(pkt_, chunk_, &buf_, &buf_sz_))
160 chunk_++;
175 unsigned int chunk_; member in class:libvpx_test::WebMVideoSource
  /external/chromium_org/gpu/command_buffer/client/
mapped_memory_unittest.cc 101 chunk_.reset(new MemoryChunk(kShmId, buf, helper_.get()));
111 scoped_ptr<MemoryChunk> chunk_; member in class:gpu::MemoryChunkTest
121 EXPECT_EQ(kShmId, chunk_->shm_id());
122 EXPECT_EQ(kBufferSize, chunk_->GetLargestFreeSizeWithoutWaiting());
123 EXPECT_EQ(kBufferSize, chunk_->GetLargestFreeSizeWithWaiting());
124 EXPECT_EQ(kBufferSize, chunk_->GetSize());
125 void *pointer = chunk_->Alloc(kSize);
129 EXPECT_EQ(kBufferSize - kSize, chunk_->GetLargestFreeSizeWithoutWaiting());
130 EXPECT_EQ(kBufferSize - kSize, chunk_->GetLargestFreeSizeWithWaiting());
131 EXPECT_EQ(kBufferSize, chunk_->GetSize())
    [all...]
  /external/chromium_org/v8/src/
lithium-allocator-inl.h 48 bool LAllocator::IsGapAt(int index) { return chunk_->IsGapAt(index); }
52 return chunk_->instructions()->at(index);
57 return chunk_->GetGapAt(index);
lithium-codegen.h 55 LPlatformChunk* chunk() const { return chunk_; }
79 LPlatformChunk* const chunk_; member in class:v8::internal::BASE_EMBEDDED
mark-compact.h 967 : chunk_(chunk) {
970 chunk_->AddressToMarkbitIndex(chunk_->area_end())));
971 cell_base_ = chunk_->area_start();
974 chunk_->AddressToMarkbitIndex(cell_base_)));
975 cells_ = chunk_->markbits()->cells();
984 chunk_->AddressToMarkbitIndex(cell_base_))));
990 chunk_->AddressToMarkbitIndex(cell_base_))));
1000 MemoryChunk* chunk_; member in class:v8::internal::BASE_EMBEDDED
    [all...]
lithium-codegen.cc 60 : chunk_(static_cast<LPlatformChunk*>(chunk)),
144 if (!chunk_->GetLabel(i)->HasReplacement()) return i;
lithium-allocator.cc 548 chunk_(NULL),
697 int index = chunk_->NearestGapPos(last_instruction);
832 chunk_->AddGapMove(gap_index, first_output, output_copy);
    [all...]
  /external/compiler-rt/lib/asan/
asan_allocator.h 37 explicit AsanChunkView(AsanChunk *chunk) : chunk_(chunk) {}
38 bool IsValid() { return chunk_ != 0; }
70 AsanChunk *const chunk_; member in class:__asan::AsanChunkView
asan_allocator2.cc 221 uptr AsanChunkView::Beg() { return chunk_->Beg(); }
223 uptr AsanChunkView::UsedSize() { return chunk_->UsedSize(); }
224 uptr AsanChunkView::AllocTid() { return chunk_->alloc_tid; }
225 uptr AsanChunkView::FreeTid() { return chunk_->free_tid; }
238 GetStackTraceFromId(chunk_->alloc_context_id, stack);
240 StackTrace::UncompressStack(stack, chunk_->AllocStackBeg(),
241 chunk_->AllocStackSize());
246 GetStackTraceFromId(chunk_->free_context_id, stack);
248 StackTrace::UncompressStack(stack, chunk_->FreeStackBeg(),
249 chunk_->FreeStackSize())
    [all...]
  /external/v8/src/
lithium-allocator-inl.h 48 bool LAllocator::IsGapAt(int index) { return chunk_->IsGapAt(index); }
52 return chunk_->instructions()->at(index);
57 return chunk_->GetGapAt(index);
lithium-allocator.cc 535 chunk_(NULL),
681 int index = chunk_->NearestGapPos(last_instruction);
813 chunk_->AddGapMove(gap_index, first_output, output_copy);
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
fold_impl.hpp 138 > chunk_; typedef in struct:boost::mpl::aux::fold_impl
142 , typename chunk_::iterator
144 , typename chunk_::state
iter_fold_impl.hpp 138 > chunk_; typedef in struct:boost::mpl::aux::iter_fold_impl
142 , typename chunk_::iterator
144 , typename chunk_::state
  /external/v8/src/x64/
lithium-codegen-x64.cc 312 chunk_->LookupLiteralRepresentation(op).IsInteger32();
318 chunk_->LookupLiteralRepresentation(op).IsTagged();
323 Handle<Object> value = chunk_->LookupLiteral(op);
324 ASSERT(chunk_->LookupLiteralRepresentation(op).IsInteger32());
332 Handle<Object> value = chunk_->LookupLiteral(op);
338 Handle<Object> literal = chunk_->LookupLiteral(op);
339 ASSERT(chunk_->LookupLiteralRepresentation(op).IsTagged());
    [all...]
lithium-codegen-x64.h 49 : chunk_(chunk),
139 LChunk* chunk() const { return chunk_; }
141 HGraph* graph() const { return chunk_->graph(); }
315 LChunk* const chunk_; member in class:v8::internal::BASE_EMBEDDED
  /external/v8/src/mips/
lithium-codegen-mips.cc 295 Handle<Object> literal = chunk_->LookupLiteral(const_op);
296 Representation r = chunk_->LookupLiteralRepresentation(const_op);
333 Handle<Object> literal = chunk_->LookupLiteral(const_op);
334 Representation r = chunk_->LookupLiteralRepresentation(const_op);
357 Handle<Object> literal = chunk_->LookupLiteral(op);
358 ASSERT(chunk_->LookupLiteralRepresentation(op).IsTagged());
364 return chunk_->LookupLiteralRepresentation(op).IsInteger32();
369 Handle<Object> value = chunk_->LookupLiteral(op);
370 ASSERT(chunk_->LookupLiteralRepresentation(op).IsInteger32());
378 Handle<Object> value = chunk_->LookupLiteral(op)
    [all...]
lithium-codegen-mips.h 47 : chunk_(chunk),
152 LChunk* chunk() const { return chunk_; }
154 HGraph* graph() const { return chunk_->graph(); }
345 LChunk* const chunk_; member in class:v8::internal::BASE_EMBEDDED
  /external/v8/src/arm/
lithium-codegen-arm.cc 325 Handle<Object> literal = chunk_->LookupLiteral(const_op);
326 Representation r = chunk_->LookupLiteralRepresentation(const_op);
363 Handle<Object> literal = chunk_->LookupLiteral(const_op);
364 Representation r = chunk_->LookupLiteralRepresentation(const_op);
389 Handle<Object> literal = chunk_->LookupLiteral(op);
390 ASSERT(chunk_->LookupLiteralRepresentation(op).IsTagged());
396 return chunk_->LookupLiteralRepresentation(op).IsInteger32();
401 Handle<Object> value = chunk_->LookupLiteral(op);
402 ASSERT(chunk_->LookupLiteralRepresentation(op).IsInteger32());
410 Handle<Object> value = chunk_->LookupLiteral(op)
    [all...]
lithium-codegen-arm.h 47 : chunk_(chunk),
156 LChunk* chunk() const { return chunk_; }
158 HGraph* graph() const { return chunk_->graph(); }
330 LChunk* const chunk_; member in class:v8::internal::BASE_EMBEDDED
  /external/v8/src/ia32/
lithium-codegen-ia32.h 50 : chunk_(chunk),
148 LChunk* chunk() const { return chunk_; }
150 HGraph* graph() const { return chunk_->graph(); }
319 LChunk* const chunk_; member in class:v8::internal::BASE_EMBEDDED
lithium-codegen-ia32.cc 310 Handle<Object> value = chunk_->LookupLiteral(op);
311 ASSERT(chunk_->LookupLiteralRepresentation(op).IsInteger32());
319 Handle<Object> literal = chunk_->LookupLiteral(op);
320 ASSERT(chunk_->LookupLiteralRepresentation(op).IsTagged());
326 Handle<Object> value = chunk_->LookupLiteral(op);
332 return chunk_->LookupLiteralRepresentation(op).IsInteger32();
503 chunk_->LookupLiteral(LConstantOperand::cast(context));
    [all...]
  /external/chromium_org/v8/src/mips/
lithium-codegen-mips.cc 382 HConstant* constant = chunk_->LookupConstant(const_op);
384 Representation r = chunk_->LookupLiteralRepresentation(const_op);
420 HConstant* constant = chunk_->LookupConstant(const_op);
422 Representation r = chunk_->LookupLiteralRepresentation(const_op);
445 HConstant* constant = chunk_->LookupConstant(op);
446 ASSERT(chunk_->LookupLiteralRepresentation(op).IsSmiOrTagged());
452 return chunk_->LookupLiteralRepresentation(op).IsSmiOrInteger32();
457 return chunk_->LookupLiteralRepresentation(op).IsSmi();
468 HConstant* constant = chunk_->LookupConstant(op);
477 HConstant* constant = chunk_->LookupConstant(op)
    [all...]
  /external/chromium_org/base/debug/
trace_event_impl.cc 396 chunk_[i].Reset();
404 return &chunk_[*event_index];
411 cloned_chunk->chunk_[i].CopyFrom(chunk_[i]);
967 if (!chunk_ || handle.chunk_seq != chunk_->seq() ||
971 return chunk_->GetEventAt(handle.event_index);
989 scoped_ptr<TraceBufferChunk> chunk_;
    [all...]
  /external/chromium_org/v8/src/arm/
lithium-codegen-arm.cc 404 HConstant* constant = chunk_->LookupConstant(const_op);
406 Representation r = chunk_->LookupLiteralRepresentation(const_op);
439 HConstant* constant = chunk_->LookupConstant(const_op);
441 Representation r = chunk_->LookupLiteralRepresentation(const_op);
466 HConstant* constant = chunk_->LookupConstant(op);
467 ASSERT(chunk_->LookupLiteralRepresentation(op).IsSmiOrTagged());
473 return chunk_->LookupLiteralRepresentation(op).IsSmiOrInteger32();
478 return chunk_->LookupLiteralRepresentation(op).IsSmi();
489 HConstant* constant = chunk_->LookupConstant(op);
498 HConstant* constant = chunk_->LookupConstant(op)
    [all...]
  /external/chromium_org/v8/src/x64/
lithium-codegen-x64.cc 397 chunk_->LookupLiteralRepresentation(op).IsSmiOrInteger32();
403 chunk_->LookupLiteralRepresentation(op).IsSmi();
409 chunk_->LookupLiteralRepresentation(op).IsTagged();
414 HConstant* constant = chunk_->LookupConstant(op);
420 HConstant* constant = chunk_->LookupConstant(op);
426 HConstant* constant = chunk_->LookupConstant(op);
433 HConstant* constant = chunk_->LookupConstant(op);
440 HConstant* constant = chunk_->LookupConstant(op);
441 ASSERT(chunk_->LookupLiteralRepresentation(op).IsSmiOrTagged());
642 chunk_->LookupConstant(LConstantOperand::cast(context))
    [all...]

Completed in 203 milliseconds

1 2 3