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

  /tools/dexter/slicer/
tryblocks_encoder.cc 26 const dex::u4 begin_offset = try_end->try_begin->offset; local
28 SLICER_CHECK(end_offset > begin_offset);
29 SLICER_CHECK(end_offset - begin_offset < (1 << 16));
33 try_block.start_addr = begin_offset;
34 try_block.insn_count = end_offset - begin_offset;
  /device/google/cuttlefish_common/guest/vsoc/lib/
guest_region_e2e_test.cpp 185 const uint32_t owned_value = 65, begin_offset = 4096, end_offset = 8192; local
187 &manager_region_.data()->data[0], owned_value, begin_offset,
192 void* mapped_ptr = mmap(NULL, perm.end_offset - perm.begin_offset,
202 EXPECT_TRUE(munmap(mapped_ptr, end_offset - begin_offset) == 0);
203 mapped_ptr = mmap(NULL, end_offset - begin_offset, PROT_WRITE | PROT_READ,
210 EXPECT_TRUE(munmap(mapped_ptr, end_offset - begin_offset) == 0);
214 &manager_region_.data()->data[1], owned_value, begin_offset + 4096,
217 mapped_ptr = mmap(NULL, end_offset - begin_offset, PROT_WRITE | PROT_READ,
  /art/runtime/gc/accounting/
space_bitmap.cc 123 uintptr_t begin_offset = reinterpret_cast<uintptr_t>(begin) - heap_begin_; local
126 while (begin_offset < end_offset && OffsetBitIndex(begin_offset) != 0) {
127 Clear(reinterpret_cast<mirror::Object*>(heap_begin_ + begin_offset));
128 begin_offset += kAlignment;
130 while (begin_offset < end_offset && OffsetBitIndex(end_offset) != 0) {
135 const uintptr_t start_index = OffsetToIndex(begin_offset);
  /device/google/cuttlefish_kernel/uapi/
vsoc_shm.h 23 __u32 begin_offset; member in struct:fd_scoped_permission
  /frameworks/compile/mclinker/lib/LD/
GNUArchiveReader.cpp 426 uint32_t begin_offset = pArchive.getARFile().fileOffset() + local
430 if ((begin_offset & 1) != 0x0)
431 ++begin_offset;
432 begin_offset +=
436 for (uint32_t offset = begin_offset; offset < end_offset;
  /external/perf_data_converter/src/quipper/
perf_reader.cc 1150 auto begin_offset = data->Tell(); local
    [all...]
  /art/oatdump/
oatdump.cc 651 uintptr_t begin_offset = reinterpret_cast<uintptr_t>(oat_data) - local
653 auto it = offsets_.upper_bound(begin_offset);
656 return end_offset - begin_offset;
    [all...]

Completed in 238 milliseconds