Lines Matching refs:sectp

310             MAC_section_32 * sectp = (MAC_section_32*)(currentp + sizeof(MAC_segment_command_32));  in Dump()  local
313 for (isec1 = 1; isec1 <= nsect; isec1++, sectp++) { in Dump()
315 ++isec2, sectp->sectname, sectp->segname); in Dump()
319 sectp->addr, sectp->size, sectp->offset, 1 << sectp->align, in Dump()
320 sectp->reloff, sectp->nreloc, sectp->flags, in Dump()
321 sectp->reserved1, sectp->reserved2); in Dump()
323 if (sectp->nreloc && (options & DUMP_RELTAB)) { in Dump()
326 if (sectp->reloff >= this->GetDataSize()) {err.submit(2035); break;} in Dump()
327 MAC_relocation_info * relp = (MAC_relocation_info*)(Buf() + sectp->reloff); in Dump()
328 for (uint32_t r = 1; r <= sectp->nreloc; r++, relp++) { in Dump()
337 if (scatp->r_address < sectp->size) { in Dump()
338 … printf(", Inline: 0x%X", *(int32_t*)(Buf()+sectp->offset+scatp->r_address)); in Dump()
357 if (relp->r_address < sectp->size) { in Dump()
358 … printf(", Inline: 0x%X", *(int32_t*)(Buf()+sectp->offset+relp->r_address)); in Dump()
371 MAC_section_64 * sectp = (MAC_section_64*)(currentp + sizeof(MAC_segment_command_64)); in Dump() local
374 for (isec1 = 1; isec1 <= nsect; isec1++, sectp++) { in Dump()
376 ++isec2, sectp->sectname, sectp->segname); in Dump()
380 (uint32_t)sectp->addr, (uint32_t)sectp->size, sectp->offset, 1 << sectp->align, in Dump()
381 sectp->reloff, sectp->nreloc, sectp->flags, in Dump()
382 sectp->reserved1, sectp->reserved2); in Dump()
384 if (sectp->nreloc && (options & DUMP_RELTAB)) { in Dump()
387 MAC_relocation_info * relp = (MAC_relocation_info*)(Buf() + sectp->reloff); in Dump()
388 for (uint32_t r = 1; r <= sectp->nreloc; r++, relp++) { in Dump()
396 if (scatp->r_address < sectp->size) { in Dump()
397 … printf(", Inline: 0x%X", *(int32_t*)(Buf()+sectp->offset+scatp->r_address)); in Dump()
416 … if (relp->r_type != MAC64_RELOC_SUBTRACTOR && relp->r_address < sectp->size) { in Dump()
420 …rintf(", Inline: 0x%08X%08X", *(int32_t*)(Buf()+sectp->offset+relp->r_address+4), *(int32_t*)(Buf(… in Dump()
424 … printf(", Inline: 0x%08X", *(int32_t*)(Buf()+sectp->offset+relp->r_address)); in Dump()