Home
last modified time | relevance | path

Searched refs:sect_size (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Minidump/
H A DMinidumpFileBuilder.cpp258 lldb::addr_t sect_size = sect_sp->GetByteSize(); in getModuleFileSize() local
264 SizeOfImage = sect_size - base_sect_offset; in getModuleFileSize()
265 lldb::addr_t next_sect_addr = sect_addr + sect_size; in getModuleFileSize()
271 sect_size = sect_sp->GetByteSize(); in getModuleFileSize()
272 SizeOfImage += sect_size; in getModuleFileSize()
273 next_sect_addr += sect_size; in getModuleFileSize()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp1513 uint32_t sect_size, uint64_t sect_addr, in DumpCstringSection() argument
1515 for (uint32_t i = 0; i < sect_size; i++) { in DumpCstringSection()
1522 for (; i < sect_size && sect[i] != '\0'; i++) in DumpCstringSection()
1524 if (i < sect_size && sect[i] == '\0') in DumpCstringSection()
1546 uint32_t sect_size, uint64_t sect_addr, in DumpLiteral4Section() argument
1548 for (uint32_t i = 0; i < sect_size; i += sizeof(float)) { in DumpLiteral4Section()
1590 uint32_t sect_size, uint64_t sect_addr, in DumpLiteral8Section() argument
1592 for (uint32_t i = 0; i < sect_size; i += sizeof(double)) { in DumpLiteral8Section()
1622 uint32_t sect_size, uint64_t sect_addr, in DumpLiteral16Section() argument
1624 for (uint32_t i = 0; i < sect_size; i += 16) { in DumpLiteral16Section()
[all …]