Lines Matching refs:hp
32 struct Hist *hp, *np; in savehist() local
54 for (hp = &Histlist; np = hp->Hnext;) in savehist()
56 hp->Hnext = np->Hnext, hfree(np); in savehist()
58 hp = np; in savehist()
86 hfree(struct Hist *hp) in hfree() argument
92 freelex(&hp->Hlex); in hfree()
93 xfree( (tchar *)hp); in hfree()
134 dohist1(struct Hist *hp, int *np, int rflg, int hflg) in dohist1() argument
141 if (hp == 0) in dohist1()
144 hp->Href++; in dohist1()
146 dohist1(hp->Hnext, np, rflg, hflg); in dohist1()
148 phist(hp, hflg); in dohist1()
152 phist(hp, hflg); in dohist1()
153 hp = hp->Hnext; in dohist1()
158 phist(struct Hist *hp, int hflg) in phist() argument
165 printf("%6d\t", hp->Hnum); in phist()
166 prlex(&hp->Hlex); in phist()