HomeSort by relevance Sort by last modified time
    Searched refs:size_to_end (Results 1 - 4 of 4) sorted by null

  /external/google-breakpad/src/client/mac/handler/
dynamic_images.cc 91 mach_vm_size_t *size_to_end) {
112 *size_to_end = region_base + region_size -(mach_vm_address_t)address;
116 // If so, we need to extend |*size_to_end| to go all the way to the end
118 if (*size_to_end < 4096) {
140 *size_to_end = region_base + region_size -(mach_vm_address_t)address;
143 *size_to_end = 0;
161 mach_vm_size_t size_to_end; local
162 GetMemoryRegionSize(target_task, address, &size_to_end);
164 if (size_to_end > 0) {
166 size_to_end > kMaxStringLength ? kMaxStringLength : size_to_end
    [all...]
  /external/perfetto/src/tracing/core/
trace_buffer.h 580 PERFETTO_CHECK(record.size <= size_to_end());
610 size_t size_to_end() const { return static_cast<size_t>(end() - wptr_); } function in class:perfetto::TraceBuffer
trace_buffer_unittest.cc 141 size_t size_to_end() { return trace_buffer_->size_to_end(); } function in class:perfetto::TraceBufferTest
221 ASSERT_EQ(4096u, size_to_end());
260 ASSERT_EQ(128u, size_to_end());
264 ASSERT_EQ(4096u - 512, size_to_end());
308 ASSERT_EQ(4096u, size_to_end());
322 ASSERT_EQ(4096u, size_to_end());
344 if (base::AlignUp<16>(chunk_size) >= size_to_end())
415 ASSERT_EQ(2048u, size_to_end());
448 ASSERT_EQ(2016u, size_to_end());
    [all...]
trace_buffer.cc 116 // up in a fragmented state where size_to_end() < sizeof(ChunkRecord).
231 const size_t cached_size_to_end = size_to_end();
240 PERFETTO_DCHECK(size_to_end() >= record_size);
    [all...]

Completed in 3920 milliseconds