Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
H A DMachODump.cpp8555 uint64_t expected_cmdsize; in PrintSegmentCommand() local
8558 expected_cmdsize = nsects; in PrintSegmentCommand()
8559 expected_cmdsize *= sizeof(struct MachO::section); in PrintSegmentCommand()
8560 expected_cmdsize += sizeof(struct MachO::segment_command); in PrintSegmentCommand()
8563 expected_cmdsize = nsects; in PrintSegmentCommand()
8564 expected_cmdsize *= sizeof(struct MachO::section_64); in PrintSegmentCommand()
8565 expected_cmdsize += sizeof(struct MachO::segment_command_64); in PrintSegmentCommand()
8568 if (cmdsize != expected_cmdsize) in PrintSegmentCommand()