Home
last modified time | relevance | path

Searched refs:delta_us (Results 1 – 4 of 4) sorted by relevance

/tools/bpf/runqslower/
Drunqslower.bpf.c67 u64 *tsp, delta_us; in handle__sched_switch() local
82 delta_us = (bpf_ktime_get_ns() - *tsp) / 1000; in handle__sched_switch()
83 if (min_us && delta_us <= min_us) in handle__sched_switch()
87 event.delta_us = delta_us; in handle__sched_switch()
Drunqslower.h9 __u64 delta_us; member
Drunqslower.c111 printf("%-8s %-16s %-6d %14llu\n", ts, e->task, e->pid, e->delta_us); in handle_event()
/tools/testing/selftests/net/
Dtimestamping.c467 long delta_us; in main() local
472 delta_us = (long)(next.tv_sec - now.tv_sec) * 1000000 + in main()
474 if (delta_us > 0) { in main()
476 delta.tv_sec = delta_us / 1000000; in main()
477 delta.tv_usec = delta_us % 1000000; in main()
485 delta_us); in main()