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