Home
last modified time | relevance | path

Searched refs:section_offset (Results 1 – 12 of 12) sorted by relevance

/external/llvm-project/lldb/source/Plugins/ObjectFile/JIT/
DObjectFileJIT.cpp232 lldb::offset_t section_offset, void *dst, in ReadSectionData() argument
235 if (section_offset < file_size) { in ReadSectionData()
236 size_t src_len = file_size - section_offset; in ReadSectionData()
240 ((uint8_t *)(uintptr_t)section->GetFileOffset()) + section_offset; in ReadSectionData()
DObjectFileJIT.h83 lldb::offset_t section_offset, void *dst,
/external/llvm-project/lldb/source/Symbol/
DObjectFile.cpp496 lldb::offset_t section_offset, void *dst, in ReadSectionData() argument
499 section_offset *= section->GetTargetByteSize(); in ReadSectionData()
503 return section->GetObjectFile()->ReadSectionData(section, section_offset, in ReadSectionData()
516 return process_sp->ReadMemory(base_load_addr + section_offset, dst, in ReadSectionData()
521 if (section_offset < section_file_size) { in ReadSectionData()
522 const size_t section_bytes_left = section_file_size - section_offset; in ReadSectionData()
526 return CopyData(section->GetFileOffset() + section_offset, in ReadSectionData()
531 const uint64_t section_bytes_left = section_size - section_offset; in ReadSectionData()
DLineEntry.cpp22 lldb::addr_t section_offset, lldb::addr_t byte_size, in LineEntry() argument
27 : range(section_sp, section_offset, byte_size), file(_file), in LineEntry()
/external/dng_sdk/source/
Ddng_info.cpp1502 uint32 section_offset = 6; in ParseDNGPrivateData() local
1504 while (SafeUint32Add(section_offset, 8) < fShared->fDNGPrivateDataCount) in ParseDNGPrivateData()
1508 section_offset)); in ParseDNGPrivateData()
1567 uint64 new_offset = fShared->fDNGPrivateDataOffset + section_offset + 14; in ParseDNGPrivateData()
1871 section_offset = SafeUint32Add(section_offset, 8); in ParseDNGPrivateData()
1872 section_offset = SafeUint32Add(section_offset, section_count); in ParseDNGPrivateData()
1874 if (section_offset & 1) in ParseDNGPrivateData()
1876 section_offset = SafeUint32Add(section_offset, 1); in ParseDNGPrivateData()
/external/freetype/src/pfr/
Dpfrload.c290 FT_UInt32 section_offset, in pfr_log_font_count() argument
298 if ( FT_STREAM_SEEK( section_offset ) || in pfr_log_font_count()
309 2 + count * 5 >= stream->size - section_offset || in pfr_log_font_count()
330 FT_UInt32 section_offset, in pfr_log_font_load() argument
340 if ( FT_STREAM_SEEK( section_offset ) || in pfr_log_font_load()
Dpfrload.h100 FT_UInt32 section_offset,
/external/pigweed/pw_tokenizer/py/pw_tokenizer/
Delf_reader.py125 section_offset: Field = Field('sh_offset', 0x10, 0x18, 4, 8) variable in _SectionHeader
259 names_table_base = reader.read(SECTION_HEADER.section_offset,
270 reader.read(SECTION_HEADER.section_offset, base),
/external/llvm-project/lldb/include/lldb/Symbol/
DLineEntry.h26 LineEntry(const lldb::SectionSP &section_sp, lldb::addr_t section_offset,
DObjectFile.h635 lldb::offset_t section_offset, void *dst,
/external/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
DObjectFileELF.h143 lldb::offset_t section_offset, void *dst,
DObjectFileELF.cpp3305 lldb::offset_t section_offset, void *dst, in ReadSectionData() argument
3309 return section->GetObjectFile()->ReadSectionData(section, section_offset, in ReadSectionData()
3313 return ObjectFile::ReadSectionData(section, section_offset, dst, dst_len); in ReadSectionData()
3319 return data.CopyData(section_offset, dst_len, dst); in ReadSectionData()