Home | History | Annotate | Download | only in llvm-objdump

Lines Matching defs:Sd

8253 static void PrintSourceVersionCommand(MachO::source_version_command sd) {
8255 outs() << " cmdsize " << sd.cmdsize;
8256 if (sd.cmdsize != sizeof(struct MachO::source_version_command))
8260 uint64_t a = (sd.version >> 40) & 0xffffff;
8261 uint64_t b = (sd.version >> 30) & 0x3ff;
8262 uint64_t c = (sd.version >> 20) & 0x3ff;
8263 uint64_t d = (sd.version >> 10) & 0x3ff;
8264 uint64_t e = sd.version & 0x3ff;
8948 MachO::source_version_command Sd = Obj->getSourceVersionCommand(Command);
8949 PrintSourceVersionCommand(Sd);