Home | History | Annotate | Download | only in toolbox

Lines Matching refs:st

86 extern STAT		st;
110 STAT st; /* statistics */
282 (void)gettimeofday(&st.start, NULL); /* Statistics timestamp. */
342 if (cpy_cnt && (st.in_full + st.in_part) >= cpy_cnt)
397 ++st.in_full;
402 ++st.in_full;
411 ++st.in_part;
428 ++st.swab;
557 st.bytes += pending;
558 st.sparse += pending/out.dbsz;
559 st.out_full += pending/out.dbsz;
563 st.bytes += nw;
566 ++st.out_part;
568 ++st.out_full;
571 ++st.out_part;
888 ++st.trunc;
920 ++st.trunc;
1004 mS = tv2mS(tv) - tv2mS(st.start);
1010 (unsigned long long)st.in_full, (unsigned long long)st.in_part,
1011 (unsigned long long)st.out_full, (unsigned long long)st.out_part);
1013 if (st.swab) {
1015 (unsigned long long)st.swab,
1016 (st.swab == 1) ? "block" : "blocks");
1019 if (st.trunc) {
1021 (unsigned long long)st.trunc,
1022 (st.trunc == 1) ? "block" : "blocks");
1025 if (st.sparse) {
1027 (unsigned long long)st.sparse,
1028 (st.sparse == 1) ? "block" : "blocks");
1033 (unsigned long long) st.bytes,
1036 (unsigned long long) (st.bytes * 1000LL / mS));