HomeSort by relevance Sort by last modified time
    Searched defs:chunk_index (Results 1 - 11 of 11) sorted by null

  /external/perfetto/src/protozero/test/
fake_scattered_buffer.cc 54 std::string FakeScatteredBuffer::GetChunkAsString(size_t chunk_index) {
55 return ToHex(chunks_[chunk_index].get(), chunk_size_);
61 size_t chunk_index = (start + pos) / chunk_size_; local
63 buf[pos] = chunks_[chunk_index].get()[chunk_offset];
  /external/gemmlowp/meta/
test_streams_correctness.cc 71 int chunk_index = i * rows * 8; local
75 if (result[chunk_index + j * 8 + k] != chunk_start_value + k) {
  /external/v8/src/libplatform/tracing/
trace-buffer.cc 41 size_t chunk_index, event_index; local
43 ExtractHandle(handle, &chunk_index, &chunk_seq, &event_index);
44 if (chunk_index >= chunks_.size()) return NULL;
45 auto& chunk = chunks_[chunk_index];
69 uint64_t TraceBufferRingBuffer::MakeHandle(size_t chunk_index,
73 chunk_index * TraceBufferChunk::kChunkSize + event_index;
76 void TraceBufferRingBuffer::ExtractHandle(uint64_t handle, size_t* chunk_index,
81 *chunk_index = indices / TraceBufferChunk::kChunkSize;
  /external/libchrome/base/trace_event/
trace_buffer.cc 83 if (handle.chunk_index >= chunks_.size())
85 TraceBufferChunk* chunk = chunks_[handle.chunk_index].get();
96 size_t chunk_index = recyclable_chunks_queue_[current_iteration_index_]; variable
98 if (chunk_index >= chunks_.size()) // Skip uninitialized chunks.
100 DCHECK(chunks_[chunk_index]);
101 return chunks_[chunk_index].get();
111 size_t chunk_index = recyclable_chunks_queue_[queue_index]; variable
112 if (chunk_index >= chunks_.size()) // Skip uninitialized chunks.
114 chunks_[chunk_index]->EstimateTraceMemoryOverhead(overhead);
200 if (handle.chunk_index >= chunks_.size()
    [all...]
trace_event_impl.h 72 unsigned chunk_index : 26; member in struct:base::trace_event::TraceEventHandle
trace_event_unittest.cc 2591 size_t chunk_index; local
2650 size_t chunk_index; local
2679 size_t chunk_index; local
    [all...]
  /external/v8/src/
address-map.h 73 uint32_t chunk_index,
78 SpaceBits::encode(space) | ChunkIndexBits::encode(chunk_index) |
127 uint32_t chunk_index() const { function in class:v8::internal::SerializerReference
unicode.cc 529 int chunk_index = c >> 13; local
530 switch (chunk_index) {
715 int chunk_index = c >> 13; local
716 switch (chunk_index) {
907 int chunk_index = c >> 13; local
1129 int chunk_index = c >> 13; local
1269 int chunk_index = c >> 13; local
1296 int chunk_index = c >> 13; local
1320 int chunk_index = c >> 13; local
1576 int chunk_index = c >> 13; local
1908 int chunk_index = c >> 13; local
2188 int chunk_index = c >> 13; local
3324 int chunk_index = c >> 13; local
3389 int chunk_index = c >> 13; local
    [all...]
  /toolchain/binutils/binutils-2.27/gold/
stringpool.h 137 size_t chunk_index = this->size_ / chunk_size; local
138 if (chunk_index >= this->chunks_.size())
142 gold_assert(chunk_index < this->chunks_.size());
144 this->chunks_[chunk_index].push_back(element);
  /external/v8/src/snapshot/
deserializer.cc 175 int chunk_index = current_chunk_[space]; local
176 CHECK_EQ(reservations_[space].length(), chunk_index + 1);
177 CHECK_EQ(reservations_[space][chunk_index].end, high_water_[space]);
368 uint32_t chunk_index = back_reference.chunk_index();
369 DCHECK_LE(chunk_index, current_chunk_[space]);
371 Address address = reservations_[space][chunk_index].start + chunk_offset;
467 int chunk_index = current_chunk_[space_index];
468 CHECK_LE(high_water_[space_index], reservation[chunk_index].end);
    [all...]
serializer.cc 139 int chunk_index = reference.chunk_index(); local
140 if (chunk_index == completed_chunks_[space].length()) {
143 return chunk_index < completed_chunks_[space].length() &&
144 reference.chunk_offset() < completed_chunks_[space][chunk_index];

Completed in 270 milliseconds