Lines Matching refs:tacct
56 struct tacct tb[NFILE]; /* current record from each file */
57 struct tacct tt = {
70 void prtacct(struct tacct *);
71 struct tacct *getleast(void);
72 void output(struct tacct *);
73 void tacctadd(struct tacct *, struct tacct *);
74 void sumcurr(struct tacct *);
80 struct tacct *tp; in main()
144 struct tacct *
147 struct tacct *tp, *least; in getleast()
168 sumcurr(struct tacct *tp) in sumcurr()
170 struct tacct tc; in sumcurr()
173 memcpy(&tc, tp, sizeof(struct tacct)); in sumcurr()
190 tacctadd(struct tacct *t1, struct tacct *t2) in tacctadd()
206 output(struct tacct *tp) in output()
220 struct tacct *tp; in getnext()
253 prtacct(struct tacct *tp) in prtacct()