Home
last modified time | relevance | path

Searched refs:nchtotal (Results 1 – 3 of 3) sorted by relevance

/dragonfly/test/pcpu/
H A Dncache-stats.c61 u_long nchtotal; in main() local
84 nchtotal = total.ncs_goodhits + total.ncs_neghits + in main()
89 printf("%9ld total name lookups\n",nchtotal); in main()
/dragonfly/usr.bin/systat/
H A Dvmstat.c94 #define nchtotal s.nchstats macro
508 s.nchcount = nchtotal.ncs_goodhits + nchtotal.ncs_badhits + in showkre()
509 nchtotal.ncs_miss + nchtotal.ncs_neghits; in showkre()
510 s.nchpathcount = nchtotal.ncs_longhits + nchtotal.ncs_longmiss; in showkre()
647 put64(nchtotal.ncs_longhits, NAMEIROW + 1, NAMEICOL + 13, 6, 'D'); in showkre()
648 putfloat(nchtotal.ncs_longhits * 100.0 / nz(s.nchpathcount), in showkre()
/dragonfly/usr.bin/vmstat/
H A Dvmstat.c732 u_long nchtotal; in dosum() local
805 nchtotal = nchstats.ncs_goodhits + nchstats.ncs_neghits + in dosum()
810 printf("%9ld total component lookups\n", nchtotal); in dosum()
813 "", PCT(nchstats.ncs_goodhits, nchtotal), in dosum()
814 PCT(nchstats.ncs_neghits, nchtotal)); in dosum()
816 PCT(nchstats.ncs_badhits, nchtotal), in dosum()
817 PCT(nchstats.ncs_falsehits, nchtotal)); in dosum()