HomeSort by relevance Sort by last modified time
    Searched full:begin_offset (Results 1 - 22 of 22) 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,
manager_region_view.h 49 uint32_t begin_offset,
53 this->pointer_to_region_offset(owner_ptr), owned_val, begin_offset,
gralloc_region_view.cpp 63 int GrallocRegionView::AllocateBuffer(size_t size, uint32_t* begin_offset) {
82 if (begin_offset) {
83 *begin_offset = entry.buffer_begin;
137 if (begin_offset) {
138 *begin_offset = new_entry.buffer_begin;
region_control.cpp 52 uint32_t begin_offset,
105 uint32_t owned_value, uint32_t begin_offset,
120 perm.perm.begin_offset = begin_offset;
gralloc_region_view.h 39 int AllocateBuffer(size_t size, uint32_t* begin_offset = nullptr);
  /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
  /device/google/cuttlefish_common/common/vsoc/lib/
vsoc_memory.cpp 98 uint32_t begin_offset() const override { return begin_offset_; }
203 auto offset = region.begin_offset() + region.region_size();
266 shmem_region_desc->region_begin_offset = region.begin_offset();
268 region.begin_offset() + region.region_size();
vsoc_memory.h 32 virtual uint32_t begin_offset() const = 0;
region_control.h 70 uint32_t begin_offset,
  /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/protobuf/src/google/protobuf/io/
printer.h 54 // Records that the bytes in file_path beginning with begin_offset and ending
56 virtual void AddAnnotation(size_t begin_offset, size_t end_offset,
75 virtual void AddAnnotation(size_t begin_offset, size_t end_offset,
83 annotation->set_begin(begin_offset);
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/io/
printer.h 54 // Records that the bytes in file_path beginning with begin_offset and ending
56 virtual void AddAnnotation(size_t begin_offset, size_t end_offset,
75 virtual void AddAnnotation(size_t begin_offset, size_t end_offset,
83 annotation->set_begin(begin_offset);
  /test/vts/utils/python/library/
elf_parser.py 81 def __init__(self, file_path, begin_offset=0):
86 begin_offset: The offset of the ELF object in the file.
91 self._begin_offset = begin_offset
  /device/google/cuttlefish_common/host/vsoc/lib/
region_control.cpp 57 uint32_t /*begin_offset*/,
  /external/tensorflow/tensorflow/core/kernels/
conv_ops_fused.cc 93 [begin, task_function](int64 begin_offset, int64 end_offset) {
94 const int64 task_begin = begin + begin_offset;
    [all...]
  /external/perf_data_converter/src/quipper/
perf_reader.cc 1150 auto begin_offset = data->Tell(); local
    [all...]
  /external/swiftshader/third_party/subzero/src/DartARM32/
assembler_arm.h     [all...]
assembler_arm.cc     [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...]
  /toolchain/binutils/binutils-2.27/gold/
arm.cc     [all...]

Completed in 371 milliseconds