Lines Matching refs:tacct
55 struct tacct tb[NFILE]; /* current record from each file */
56 struct tacct tt = {
69 void prtacct(struct tacct *);
70 struct tacct *getleast(void);
71 void output(struct tacct *);
72 void tacctadd(struct tacct *, struct tacct *);
73 void sumcurr(struct tacct *);
79 struct tacct *tp; in main()
143 struct tacct *
146 struct tacct *tp, *least; in getleast()
167 sumcurr(struct tacct *tp) in sumcurr()
169 struct tacct tc; in sumcurr()
172 memcpy(&tc, tp, sizeof(struct tacct)); in sumcurr()
189 tacctadd(struct tacct *t1, struct tacct *t2) in tacctadd()
205 output(struct tacct *tp) in output()
219 struct tacct *tp; in getnext()
252 prtacct(struct tacct *tp) in prtacct()