Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp8432 uint64_t expected_cmdsize; in PrintSegmentCommand() local
8435 expected_cmdsize = nsects; in PrintSegmentCommand()
8436 expected_cmdsize *= sizeof(struct MachO::section); in PrintSegmentCommand()
8437 expected_cmdsize += sizeof(struct MachO::segment_command); in PrintSegmentCommand()
8440 expected_cmdsize = nsects; in PrintSegmentCommand()
8441 expected_cmdsize *= sizeof(struct MachO::section_64); in PrintSegmentCommand()
8442 expected_cmdsize += sizeof(struct MachO::segment_command_64); in PrintSegmentCommand()
8445 if (cmdsize != expected_cmdsize) in PrintSegmentCommand()