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

  /external/elfutils/libdw/
dwarf_formstring.c 78 attrp->valp, cu->offset_size, &off,
85 attrp->valp, cu->offset_size, &off,
149 int offset_size = cu->offset_size; local
150 if (cu->offset_size > dbg->sectiondata[IDX_debug_str_offsets]->d_size)
159 - offset_size))
163 - offset_size - str_off) / offset_size;
168 + str_off + (idx * offset_size));
169 if (offset_size == 4
    [all...]
dwarf_next_cfi.c 70 size_t offset_size = 4; local
74 offset_size = 8;
91 || unlikely (length < offset_size + 1))
95 computation. If the offset_size is 4 the '- 4' term undoes the
96 '2 *'. If offset_size is 8 this term computes the size of the
98 *next_off = off + (2 * offset_size - 4) + length;
103 if (offset_size == 8)
123 || unlikely (pos <= (ptrdiff_t) offset_size))
dwarf_nextcu.c 153 size_t offset_size = 4; local
158 offset_size = 8;
214 if (unlikely (__libdw_first_die_from_cu_start (off, offset_size, version,
230 if (__libdw_read_offset_inc (dwarf, sec_idx, &bytes, offset_size,
248 if (__libdw_read_offset_inc (dwarf, sec_idx, &bytes, offset_size,
285 *offset_sizep = offset_size;
290 *next_off = off + 2 * offset_size - 4 + length;
dwarf_ranges.c 424 size_t offset_size = cu->offset_size; local
425 if (offset_size > sec_size)
433 if (range_base_off > (sec_size - offset_size))
436 size_t max_idx = (sec_size - offset_size - range_base_off) / offset_size;
441 + range_base_off + (idx * offset_size));
442 if (offset_size == 4)
libdw_findcu.c 110 uint8_t offset_size; local
117 &address_size, &offset_size,
137 if (unlikely (offset_size != 4 && offset_size != 8))
138 offset_size = 8;
154 newp->offset_size = offset_size;
dwarf_getlocation.c 654 : cu->offset_size),
757 size_t offset_size = cu->offset_size; local
758 if (offset_size > sec_size)
766 if (loc_base_off > (sec_size - offset_size))
769 size_t max_idx = (sec_size - offset_size - loc_base_off) / offset_size;
774 + loc_base_off + (idx * offset_size));
775 if (offset_size == 4)
libdwP.h 320 uint8_t offset_size; member in struct:Dwarf_CU
389 uint8_t offset_size,
394 assert (offset_size == 4 || offset_size == 8);
415 Note the trick in the computation. If the offset_size is 4
417 If the offset_size is 8 it accounts for the 4-byte escape value
420 off += 3 * offset_size - 4 + 3;
422 off += 4 * offset_size - 4 + 3 + 8;
434 off += 3 * offset_size - 4 + 4;
440 off += offset_size;
1145 unsigned int offset_size = 4; local
1223 unsigned int offset_size = 4; local
    [all...]
  /external/deqp-deps/SPIRV-Tools/source/val/
validate_image.cpp 374 const uint32_t offset_size = _.GetDimension(type_id); local
375 if (plane_size != offset_size) {
378 << " components, but given " << offset_size;
397 const uint32_t offset_size = _.GetDimension(type_id); local
398 if (plane_size != offset_size) {
401 << " components, but given " << offset_size;
    [all...]
  /external/swiftshader/third_party/SPIRV-Tools/source/val/
validate_image.cpp 374 const uint32_t offset_size = _.GetDimension(type_id); local
375 if (plane_size != offset_size) {
378 << " components, but given " << offset_size;
397 const uint32_t offset_size = _.GetDimension(type_id); local
398 if (plane_size != offset_size) {
401 << " components, but given " << offset_size;
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
buffer_assignment.cc 247 OffsetSize offset_size; local
248 offset_size.offset = offset;
249 offset_size.size = size;
250 assigned_buffers_.emplace(&buffer, offset_size);
317 const OffsetSize& offset_size = FindOrDie(assigned_buffers_, buffer); local
320 offset_size.offset, offset_size.size,
1252 const BufferAllocation::OffsetSize& offset_size = pair.second; local
    [all...]
  /external/u-boot/lib/
fdtdec.c 1010 fdt_size_t size, offset_size; local
1053 &offset_size)) {
1060 *sizep = offset_size;
    [all...]
  /art/compiler/utils/mips/
assembler_mips.h 1538 OffsetBits offset_size; member in struct:art::mips::final::Branch::BranchInfo
    [all...]
assembler_mips.cc 3313 OffsetBits offset_size = local
    [all...]
  /art/compiler/utils/mips64/
assembler_mips64.h 1532 OffsetBits offset_size; member in struct:art::mips64::final::Branch::BranchInfo
    [all...]
assembler_mips64.cc 2669 OffsetBits offset_size = local
    [all...]
  /external/google-breakpad/src/common/dwarf/
dwarf2reader.cc 1802 size_t offset_size = reader_->OffsetSize(); local
    [all...]
  /frameworks/av/media/extractors/mp4/
ItemTable.cpp 316 static bool isSizeFieldValid(uint32_t offset_size) {
317 return offset_size == 0 || offset_size == 4 || offset_size == 8;
336 uint8_t offset_size; local
337 if (!source()->readAt(offset++, &offset_size, 1)) {
340 uint8_t length_size = (offset_size & 0xF);
341 offset_size >>= 4;
354 if (!isSizeFieldValid(offset_size)
359 offset_size, length_size, base_offset_size, index_size)
    [all...]
  /external/mesa3d/src/compiler/glsl/
builtin_functions.cpp 5162 int offset_size = coord_size - (sampler_type->sampler_array ? 1 : 0); local
    [all...]
  /external/elfutils/src/
readelf.c 5181 unsigned int offset_size = listptr_offset_size (listptr); local
5599 unsigned int offset_size = 4; local
6939 unsigned int offset_size; member in struct:attrcb_args
8921 unsigned int offset_size = 4; local
9330 uint_fast8_t offset_size = 4; local
10221 uint8_t offset_size; local
    [all...]

Completed in 1053 milliseconds