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.cpp269 lldb::addr_t sect_size = sect_sp->GetByteSize(); in getModuleFileSize() local
275 SizeOfImage = sect_size - base_sect_offset; in getModuleFileSize()
276 lldb::addr_t next_sect_addr = sect_addr + sect_size; in getModuleFileSize()
282 sect_size = sect_sp->GetByteSize(); in getModuleFileSize()
283 SizeOfImage += sect_size; in getModuleFileSize()
284 next_sect_addr += sect_size; in getModuleFileSize()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp1509 uint32_t sect_size, uint64_t sect_addr, in DumpCstringSection() argument
1511 for (uint32_t i = 0; i < sect_size; i++) { in DumpCstringSection()
1518 for (; i < sect_size && sect[i] != '\0'; i++) in DumpCstringSection()
1520 if (i < sect_size && sect[i] == '\0') in DumpCstringSection()
1542 uint32_t sect_size, uint64_t sect_addr, in DumpLiteral4Section() argument
1544 for (uint32_t i = 0; i < sect_size; i += sizeof(float)) { in DumpLiteral4Section()
1586 uint32_t sect_size, uint64_t sect_addr, in DumpLiteral8Section() argument
1588 for (uint32_t i = 0; i < sect_size; i += sizeof(double)) { in DumpLiteral8Section()
1618 uint32_t sect_size, uint64_t sect_addr, in DumpLiteral16Section() argument
1620 for (uint32_t i = 0; i < sect_size; i += 16) { in DumpLiteral16Section()
[all …]