Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/llvm/tools/llvm-objdump/
H A DMachODump.cpp3208 uint64_t expected_cmdsize; in PrintSegmentCommand() local
3211 expected_cmdsize = nsects; in PrintSegmentCommand()
3212 expected_cmdsize *= sizeof(struct MachO::section); in PrintSegmentCommand()
3213 expected_cmdsize += sizeof(struct MachO::segment_command); in PrintSegmentCommand()
3216 expected_cmdsize = nsects; in PrintSegmentCommand()
3217 expected_cmdsize *= sizeof(struct MachO::section_64); in PrintSegmentCommand()
3218 expected_cmdsize += sizeof(struct MachO::segment_command_64); in PrintSegmentCommand()
3221 if (cmdsize != expected_cmdsize) in PrintSegmentCommand()