Lines Matching refs:c1

389 	struct cmdinfo c1, c2;  in cmp_usrsys()  local
392 memcpy(&c1, d1->data, sizeof(c1)); in cmp_usrsys()
395 t1 = c1.ci_utime + c1.ci_stime; in cmp_usrsys()
401 return (cmp_comm(c1.ci_comm, c2.ci_comm)); in cmp_usrsys()
410 struct cmdinfo c1, c2; in cmp_avgusrsys() local
413 memcpy(&c1, d1->data, sizeof(c1)); in cmp_avgusrsys()
416 t1 = c1.ci_utime + c1.ci_stime; in cmp_avgusrsys()
417 t1 /= (double) (c1.ci_calls ? c1.ci_calls : 1); in cmp_avgusrsys()
425 return (cmp_comm(c1.ci_comm, c2.ci_comm)); in cmp_avgusrsys()
434 struct cmdinfo c1, c2; in cmp_dkio() local
436 memcpy(&c1, d1->data, sizeof(c1)); in cmp_dkio()
439 if (c1.ci_io < c2.ci_io) in cmp_dkio()
441 else if (c1.ci_io == c2.ci_io) in cmp_dkio()
442 return (cmp_comm(c1.ci_comm, c2.ci_comm)); in cmp_dkio()
451 struct cmdinfo c1, c2; in cmp_avgdkio() local
454 memcpy(&c1, d1->data, sizeof(c1)); in cmp_avgdkio()
457 n1 = c1.ci_io / (double) (c1.ci_calls ? c1.ci_calls : 1); in cmp_avgdkio()
463 return (cmp_comm(c1.ci_comm, c2.ci_comm)); in cmp_avgdkio()
472 struct cmdinfo c1, c2; in cmp_cpumem() local
474 memcpy(&c1, d1->data, sizeof(c1)); in cmp_cpumem()
477 if (c1.ci_mem < c2.ci_mem) in cmp_cpumem()
479 else if (c1.ci_mem == c2.ci_mem) in cmp_cpumem()
480 return (cmp_comm(c1.ci_comm, c2.ci_comm)); in cmp_cpumem()
489 struct cmdinfo c1, c2; in cmp_avgcpumem() local
493 memcpy(&c1, d1->data, sizeof(c1)); in cmp_avgcpumem()
496 t1 = c1.ci_utime + c1.ci_stime; in cmp_avgcpumem()
499 n1 = c1.ci_mem / (t1 ? t1 : 1); in cmp_avgcpumem()
505 return (cmp_comm(c1.ci_comm, c2.ci_comm)); in cmp_avgcpumem()
514 struct cmdinfo c1, c2; in cmp_calls() local
516 memcpy(&c1, d1->data, sizeof(c1)); in cmp_calls()
519 if (c1.ci_calls < c2.ci_calls) in cmp_calls()
521 else if (c1.ci_calls == c2.ci_calls) in cmp_calls()
522 return (cmp_comm(c1.ci_comm, c2.ci_comm)); in cmp_calls()