Symbol: LP
usr.bin/top/m_dragonfly.c
477
if (LP(fixit, pid) == -1) {
usr.bin/top/m_dragonfly.c
482
if (LP(pp, pid) == -1 &&
usr.bin/top/m_dragonfly.c
488
if (LP(pp, pid) == LP(fixit, pid) &&
usr.bin/top/m_dragonfly.c
489
LP(pp, tid) == LP(fixit, tid)) {
usr.bin/top/m_dragonfly.c
501
ticks = LP(fixit, iticks) - LP(pp, iticks);
usr.bin/top/m_dragonfly.c
502
ticks += LP(fixit, sticks) - LP(pp, sticks);
usr.bin/top/m_dragonfly.c
503
ticks += LP(fixit, uticks) - LP(pp, uticks);
usr.bin/top/m_dragonfly.c
506
LP(fixit, pctcpu) = (ticks * (uint64_t)fscale) / d;
usr.bin/top/m_dragonfly.c
575
if ((show_system && (LP(pp, pid) == -1)) ||
usr.bin/top/m_dragonfly.c
577
int lpstate = LP(pp, stat);
usr.bin/top/m_dragonfly.c
632
if (!show_system && LP(pp, pid) == -1) {
usr.bin/top/m_dragonfly.c
640
if (!show_idle && LP(pp, pctcpu) == 0 &&
usr.bin/top/m_dragonfly.c
722
if (strcmp(PP(pp, comm), LP(pp, comm)) == 0) {
usr.bin/top/m_dragonfly.c
724
LP(pp, tid));
usr.bin/top/m_dragonfly.c
728
LP(pp, tid), LP(pp, comm));
usr.bin/top/m_dragonfly.c
738
cputime = (LP(pp, uticks) + LP(pp, sticks) + LP(pp, iticks)) / 1000000;
usr.bin/top/m_dragonfly.c
744
pct = pctdouble(LP(pp, pctcpu));
usr.bin/top/m_dragonfly.c
753
switch (LP(pp, stat)) {
usr.bin/top/m_dragonfly.c
755
if (LP(pp, tdflags) & TDF_RUNNING)
usr.bin/top/m_dragonfly.c
756
sprintf(status, "CPU%d", LP(pp, cpuid));
usr.bin/top/m_dragonfly.c
764
wmesg = LP(pp, wmesg);
usr.bin/top/m_dragonfly.c
771
sprintf(status, "?LP/%d", LP(pp, stat));
usr.bin/top/m_dragonfly.c
796
switch (LP(pp, rtprio.type)) {
usr.bin/top/m_dragonfly.c
798
xnice = PRIO_MIN - 1 - RTP_PRIO_MAX + LP(pp, rtprio.prio);
usr.bin/top/m_dragonfly.c
801
xnice = PRIO_MAX + 1 + LP(pp, rtprio.prio);
usr.bin/top/m_dragonfly.c
804
xnice = PRIO_MIN - 1 - RTP_PRIO_MAX - LP(pp, rtprio.prio);
usr.bin/top/m_dragonfly.c
821
LP(pp, cpuid),
usr.bin/top/m_dragonfly.c
858
if (lresult = (long) LP(p2, pctcpu) - (long) LP(p1, pctcpu), \
usr.bin/top/m_dragonfly.c
861
#define CPTICKS(p) (LP(p, uticks) + LP(p, sticks) + LP(p, iticks))
usr.bin/top/m_dragonfly.c
867
#define CTIME(p) (((LP(p, uticks) + LP(p, sticks) + LP(p, iticks))/1000000) + \
usr.bin/top/m_dragonfly.c
879
if ((result = LP(p2, prio) - LP(p1, prio)) == 0)
usr.bin/top/m_dragonfly.c
882
if ((result = (LP(p1, pid) == 0) - (LP(p2, pid) == 0)) == 0)
usr.bin/top/m_dragonfly.c
885
if ((result = LP(p2, tdprio) - LP(p1, tdprio)) == 0)
usr.bin/top/m_dragonfly.c
904
if (LP(p1, pid) == -1 && PP(p1, stat) == SIDL)
usr.bin/top/m_dragonfly.c
906
if (LP(p2, pid) == -1 && PP(p2, stat) == SIDL)