Lines Matching refs:offset
26 lldb::offset_t *offset, uint64_t *value, in GetMaxU64() argument
28 const lldb::offset_t saved_offset = *offset; in GetMaxU64()
29 *value = data.GetMaxU64(offset, byte_size); in GetMaxU64()
30 return *offset != saved_offset; in GetMaxU64()
34 lldb::offset_t *offset, uint64_t *value, in GetMaxU64() argument
36 lldb::offset_t saved_offset = *offset; in GetMaxU64()
39 if (!GetMaxU64(data, offset, value, byte_size)) { in GetMaxU64()
40 *offset = saved_offset; in GetMaxU64()
48 lldb::offset_t *offset, int64_t *value, in GetMaxS64() argument
50 const lldb::offset_t saved_offset = *offset; in GetMaxS64()
51 *value = data.GetMaxS64(offset, byte_size); in GetMaxS64()
52 return *offset != saved_offset; in GetMaxS64()
56 lldb::offset_t *offset, int64_t *value, in GetMaxS64() argument
58 lldb::offset_t saved_offset = *offset; in GetMaxS64()
61 if (!GetMaxS64(data, offset, value, byte_size)) { in GetMaxS64()
62 *offset = saved_offset; in GetMaxS64()
99 lldb::offset_t offset = 0; in ParseHeaderExtension() local
101 bool ok = section_zero.Parse(sh_data, &offset); in ParseHeaderExtension()
115 lldb::offset_t *offset) { in Parse() argument
117 if (data.GetU8(offset, &e_ident, EI_NIDENT) == nullptr) in Parse()
125 if (data.GetU16(offset, &e_type, 2) == nullptr) in Parse()
129 if (data.GetU32(offset, &e_version, 1) == nullptr) in Parse()
133 if (!GetMaxU64(data, offset, &e_entry, byte_size, 3)) in Parse()
137 if (data.GetU32(offset, &e_flags, 1) == nullptr) in Parse()
141 if (data.GetU16(offset, &e_ehsize, 6) == nullptr) in Parse()
223 lldb::offset_t *offset) { in Parse() argument
227 if (data.GetU32(offset, &sh_name, 2) == nullptr) in Parse()
231 if (!GetMaxU64(data, offset, &sh_flags, byte_size)) in Parse()
235 if (!GetMaxU64(data, offset, &sh_addr, byte_size, 3)) in Parse()
239 if (data.GetU32(offset, &sh_link, 2) == nullptr) in Parse()
243 if (!GetMaxU64(data, offset, &sh_addralign, byte_size, 2)) in Parse()
320 lldb::offset_t *offset) { in Parse() argument
325 if (data.GetU32(offset, &st_name, 1) == nullptr) in Parse()
330 if (!GetMaxU64(data, offset, &st_value, byte_size, 2)) in Parse()
334 if (data.GetU8(offset, &st_info, 2) == nullptr) in Parse()
338 if (data.GetU16(offset, &st_shndx, 1) == nullptr) in Parse()
342 if (data.GetU8(offset, &st_info, 2) == nullptr) in Parse()
346 if (data.GetU16(offset, &st_shndx, 1) == nullptr) in Parse()
350 if (data.GetU64(offset, &st_value, 2) == nullptr) in Parse()
363 lldb::offset_t *offset) { in Parse() argument
368 if (data.GetU32(offset, &p_type, 1) == nullptr) in Parse()
373 if (!GetMaxU64(data, offset, &p_offset, byte_size, 5)) in Parse()
377 if (data.GetU32(offset, &p_flags, 1) == nullptr) in Parse()
381 if (!GetMaxU64(data, offset, &p_align, byte_size)) in Parse()
385 if (data.GetU32(offset, &p_flags, 1) == nullptr) in Parse()
389 if (!GetMaxU64(data, offset, &p_offset, byte_size, 6)) in Parse()
401 lldb::offset_t *offset) { in Parse() argument
403 return GetMaxS64(data, offset, &d_tag, byte_size, 2); in Parse()
411 lldb::offset_t *offset) { in Parse() argument
415 return GetMaxU64(data, offset, &r_offset, byte_size, 2) != false; in Parse()
423 lldb::offset_t *offset) { in Parse() argument
427 if (!GetMaxU64(data, offset, &r_offset, byte_size, 2)) in Parse()
431 if (!GetMaxS64(data, offset, &r_addend, byte_size)) in Parse()