Lines Matching refs:disp
704 int32_t disp; in fmt_call() local
714 disp = sign_extend(f->f1.disp30, 30) * 4; in fmt_call()
719 (disp < 0) ? "-" : "+", in fmt_call()
720 (disp < 0) ? (-disp) : disp); in fmt_call()
725 dhp->dh_lookup(dhp->dh_data, dhp->dh_addr + (int64_t)disp, in fmt_call()
787 int32_t disp; in fmt_branch() local
830 disp = sign_extend(f->f2a.disp22, 22); in fmt_branch()
834 disp = sign_extend(f->f2b.disp19, 19); in fmt_branch()
838 disp = sign_extend((f->f2c.d16hi << 14)|f->f2c.d16lo, 16); in fmt_branch()
843 disp *= 4; in fmt_branch()
873 (disp < 0) ? "-" : "+", in fmt_branch()
874 (disp < 0) ? (-disp) : disp); in fmt_branch()
881 (disp < 0) ? "-" : "+", in fmt_branch()
882 (disp < 0) ? (-disp) : disp); in fmt_branch()
889 (disp < 0) ? "-" : "+", in fmt_branch()
890 (disp < 0) ? (-disp) : disp); in fmt_branch()
895 dhp->dh_lookup(dhp->dh_data, dhp->dh_addr + (int64_t)disp, in fmt_branch()