/tools/testing/selftests/proc/ |
D | fd-003-kthread.c | 134 unsigned int u; in test_lookup() local 145 for (u = INT_MAX - 1024; u < (unsigned int)INT_MAX + 1024; u++) { in test_lookup() 146 snprintf(buf, sizeof(buf), "%u", u); in test_lookup() 149 for (u = UINT_MAX - 1024; u != 0; u++) { in test_lookup() 150 snprintf(buf, sizeof(buf), "%u", u); in test_lookup()
|
D | fd-001-lookup.c | 57 unsigned int u; in test_lookup() local 87 for (u = INT_MAX - 1024; u <= (unsigned int)INT_MAX + 1024; u++) { in test_lookup() 88 snprintf(buf, sizeof(buf), "/proc/self/fd/%u", u); in test_lookup() 91 for (u = UINT_MAX - 1024; u != 0; u++) { in test_lookup() 92 snprintf(buf, sizeof(buf), "/proc/self/fd/%u", u); in test_lookup()
|
/tools/usb/usbip/libsrc/ |
D | names.c | 300 unsigned int u; in parse() local 346 u = strtoul(cp, &cp, 16); in parse() 353 if (new_class(cp, u)) in parse() 355 linectr, u, cp); in parse() 356 dbg("line %5u class %02x %s", linectr, u, cp); in parse() 358 lastclass = u; in parse() 372 u = strtoul(cp, &cp, 16); in parse() 379 if (new_vendor(cp, u)) in parse() 381 linectr, u, cp); in parse() 382 dbg("line %5u vendor %04x %s", linectr, u, cp); in parse() [all …]
|
/tools/testing/selftests/rcutorture/bin/ |
D | functions.sh | 145 elif echo $u | grep -q x86-64 148 elif echo $u | grep -q "Intel 80386" 151 elif echo $u | grep -q aarch64 159 echo file $1 output: $u
|
D | configinit.sh | 27 sed -e 's/^\(CONFIG[0-9A-Z_]*\)=.*$/grep -v "^# \1" |/' < $c > $T/u.sh 28 sed -e 's/^\(CONFIG[0-9A-Z_]*=\).*$/grep -v \1 |/' < $c >> $T/u.sh 29 grep '^grep' < $T/u.sh > $T/upd.sh
|
/tools/perf/util/intel-pt-decoder/ |
D | intel-pt-log.h | 60 static inline void intel_pt_log_at(const char *msg, uint64_t u) in intel_pt_log_at() argument 62 intel_pt_log("%s at " x64_fmt "\n", msg, u); in intel_pt_log_at() 65 static inline void intel_pt_log_to(const char *msg, uint64_t u) in intel_pt_log_to() argument 67 intel_pt_log("%s to " x64_fmt "\n", msg, u); in intel_pt_log_to()
|
/tools/usb/ |
D | testusb.c | 133 } u; in testdev_ffs_ifnum() local 136 if (fread(u.buf, 1, 1, fd) != 1) in testdev_ffs_ifnum() 138 if (fread(u.buf + 1, (unsigned char)u.buf[0] - 1, 1, fd) != 1) in testdev_ffs_ifnum() 141 if (u.intf.bLength == sizeof u.intf in testdev_ffs_ifnum() 142 && u.intf.bDescriptorType == USB_DT_INTERFACE in testdev_ffs_ifnum() 143 && u.intf.bNumEndpoints == 2 in testdev_ffs_ifnum() 144 && u.intf.bInterfaceClass == USB_CLASS_VENDOR_SPEC in testdev_ffs_ifnum() 145 && u.intf.bInterfaceSubClass == 0 in testdev_ffs_ifnum() 146 && u.intf.bInterfaceProtocol == 0) in testdev_ffs_ifnum() 147 return (unsigned char)u.intf.bInterfaceNumber; in testdev_ffs_ifnum()
|
/tools/testing/selftests/bpf/progs/ |
D | test_tunnel_kern.c | 152 md.u.index = bpf_htonl(123); in _erspan_set_tunnel() 158 md.u.md2.dir = direction; in _erspan_set_tunnel() 159 md.u.md2.hwid = hwid & 0xf; in _erspan_set_tunnel() 160 md.u.md2.hwid_upper = (hwid >> 4) & 0x3; in _erspan_set_tunnel() 199 index = bpf_ntohl(md.u.index); in _erspan_get_tunnel() 205 md.u.md2.dir, in _erspan_get_tunnel() 206 (md.u.md2.hwid_upper << 4) + md.u.md2.hwid, in _erspan_get_tunnel() 207 bpf_ntohl(md.u.md2.timestamp)); in _erspan_get_tunnel() 236 md.u.index = bpf_htonl(123); in _ip4ip6erspan_set_tunnel() 243 md.u.md2.dir = direction; in _ip4ip6erspan_set_tunnel() [all …]
|
D | btf_dump_test_case_syntax.c | 154 union union_empty u; member
|
/tools/perf/scripts/perl/ |
D | wakeup-latency.pl | 71 printf("avg_wakeup_latency (ns): %u\n", 76 printf("min_wakeup_latency (ns): %u\n", $min_wakeup_latency); 77 printf("max_wakeup_latency (ns): %u\n", $max_wakeup_latency);
|
D | check-perf-trace.pl | 55 printf("call_site=%p, ptr=%p, bytes_req=%u, bytes_alloc=%u, ".
|
/tools/perf/util/ |
D | evsel.c | 1850 union u64_swap u; in perf_evsel__parse_id_sample() local 1861 u.val64 = *array; in perf_evsel__parse_id_sample() 1864 u.val64 = bswap_64(u.val64); in perf_evsel__parse_id_sample() 1865 u.val32[0] = bswap_32(u.val32[0]); in perf_evsel__parse_id_sample() 1868 sample->cpu = u.val32[0]; in perf_evsel__parse_id_sample() 1888 u.val64 = *array; in perf_evsel__parse_id_sample() 1891 u.val64 = bswap_64(u.val64); in perf_evsel__parse_id_sample() 1892 u.val32[0] = bswap_32(u.val32[0]); in perf_evsel__parse_id_sample() 1893 u.val32[1] = bswap_32(u.val32[1]); in perf_evsel__parse_id_sample() 1896 sample->pid = u.val32[0]; in perf_evsel__parse_id_sample() [all …]
|
/tools/usb/ffs-aio-example/simple/device_app/ |
D | aio_simple.c | 184 if (event.u.setup.bRequestType & USB_DIR_IN) in handle_ep0() 328 iocb_in->u.c.flags |= IOCB_FLAG_RESFD; in main() 329 iocb_in->u.c.resfd = evfd; in main() 342 iocb_out->u.c.flags |= IOCB_FLAG_RESFD; in main() 343 iocb_out->u.c.resfd = evfd; in main()
|
/tools/perf/tests/attr/ |
D | test-record-branch-filter-u | 3 args = --no-bpf-event -j u kill >/dev/null 2>&1
|
D | README | 43 perf record -j u kill (test-record-branch-filter-u)
|
/tools/testing/selftests/rcutorture/configs/rcu/ |
D | CFLIST | 11 SRCU-u
|
/tools/include/uapi/linux/ |
D | erspan.h | 49 } u; member
|
D | fscrypt.h | 108 } u; member
|
/tools/testing/selftests/sigaltstack/ |
D | sas.c | 36 void my_usr1(int sig, siginfo_t *si, void *u) in my_usr1() argument 79 void my_usr2(int sig, siginfo_t *si, void *u) in my_usr2() argument
|
/tools/vm/ |
D | slabinfo-gnuplot.sh | 94 plot "$file" $range u 2$xtic title 'SIZE' with boxes,\ 95 '' $range u 3 title 'LOSS' with boxes
|
/tools/usb/ffs-aio-example/multibuff/device_app/ |
D | aio_multibuff.c | 189 if (event.u.setup.bRequestType & USB_DIR_IN) in handle_ep0() 336 iobuf[i].iocb[j]->u.c.flags |= IOCB_FLAG_RESFD; in main() 337 iobuf[i].iocb[j]->u.c.resfd = evfd; in main()
|
/tools/power/cpupower/po/ |
D | de.po | 158 msgid "Monitor \"%s\" (%d states) - Might overflow after %u s\n" 159 msgstr "Wächter \"%s\" (%d Zustände) - Könnte nach %u s überlaufen\n" 574 " -u FREQ, --max FREQ new maximum CPU frequency the governor may " 577 " -u FREQ, --max FREQ neue maximale Taktfrequenz, die der Regler\n" 667 "the -f/--freq parameter cannot be combined with -d/--min, -u/--max or\n" 671 "-u/--max\n" 677 "At least one parameter out of -f/--freq, -d/--min, -u/--max, and\n" 680 "Mindestens ein Parameter aus -f/--freq, -d/--min, -u/--max und\n" 822 msgid "CPU %u: No idle states\n" 823 msgstr "CPU %u: Keine Ruhezustände\n" [all …]
|
D | cs.po | 153 msgid "Monitor \"%s\" (%d states) - Might overflow after %u s\n" 403 " z hardware (dostupné jen uživateli root) *\n" 496 "vypsány ladicí informace, což může být užitečné například při hlášení chyb.\n" 556 " -u FREQ, --max FREQ new maximum CPU frequency the governor may " 559 " -u FREQ, --max FREQ Nová nejvyšší frekvence, kterou může regulátor " 644 "the -f/--freq parameter cannot be combined with -d/--min, -u/--max or\n" 648 "s přepínačem -d/--min, -u/--max nebo -g/--governor\n" 653 "At least one parameter out of -f/--freq, -d/--min, -u/--max, and\n" 657 "-f/--freq, -d/--min, -u/--max nebo -g/--governor\n" 792 msgid "CPU %u: No idle states\n" [all …]
|
/tools/perf/Documentation/ |
D | perf-stat.txt | 333 83723.452481 task-clock:u (msec) # 1.004 CPUs utilized 334 0 context-switches:u # 0.000 K/sec 335 0 cpu-migrations:u # 0.000 K/sec 336 3,228,188 page-faults:u # 0.039 M/sec 337 229,570,665,834 cycles:u # 2.742 GHz 338 313,163,853,778 instructions:u # 1.36 insn per cycle 339 69,704,684,856 branches:u # 832.559 M/sec 340 2,078,861,393 branch-misses:u # 2.98% of all branches
|
/tools/testing/selftests/bpf/ |
D | test_align.c | 704 unsigned int u = atoi(argv[argc - 1]); in main() local 706 if (l < to && u < to) { in main() 708 to = u + 1; in main()
|