Lines Matching refs:mtmp
276 struct monst *mtmp; in docrt() local
296 for (mtmp = fmon; mtmp; mtmp = mtmp->nmon) in docrt()
297 mtmp->mdispl = 0; in docrt()
323 struct monst *mtmp; in docorner() local
330 for (mtmp = fmon; mtmp; mtmp = mtmp->nmon) in docorner()
331 if (mtmp->mx >= xmin && mtmp->my < ymax) in docorner()
332 mtmp->mdispl = 0; in docorner()
393 struct monst *mtmp; in prl() local
406 if ((mtmp = m_at(x, y)) && !mtmp->mhide && in prl()
407 (!mtmp->minvis || See_invisible)) { in prl()
413 pmon(mtmp); in prl()
416 else if (mtmp && (!mtmp->minvis || See_invisible)) { in prl()
419 pmon(mtmp); in prl()
578 struct monst *mtmp; in vism_at() local
582 (mtmp = m_at(x, y)) in vism_at()
583 ? ((Blind && Telepat) || canseemon(mtmp)) : in vism_at()
641 struct monst *mtmp; in seemons() local
642 for (mtmp = fmon; mtmp; mtmp = mtmp->nmon) { in seemons()
643 if (mtmp->data->mlet == ';') in seemons()
644 mtmp->minvis = (u.ustuck != mtmp && in seemons()
645 levl[mtmp->mx][mtmp->my].typ == POOL); in seemons()
646 pmon(mtmp); in seemons()
648 if (mtmp->wormno) in seemons()
649 wormsee(mtmp->wormno); in seemons()
783 mstatusline(struct monst *mtmp) in mstatusline() argument
785 pline("Status of %s: ", monnam(mtmp)); in mstatusline()
787 mtmp->data->mlevel, mtmp->mgold, mtmp->mhp, mtmp->mhpmax, in mstatusline()
788 mtmp->data->ac, (mtmp->data->damn + 1) * (mtmp->data->damd + 1)); in mstatusline()