| /linux/tools/perf/trace/beauty/tracepoints/ |
| H A D | x86_msr.sh | 19 sed -r "s/$regex/\2 \1/g" | sort -n | \ 26 grep -E $regex ${x86_msr_index} | sed -r "s/$regex/\2/g" | sort -n | head -1 29 sed -r "s/$regex/\2 \1/g" | grep -E -vw 'K6_WHCR' | sort -n | \ 35 grep -E $regex ${x86_msr_index} | sed -r "s/$regex/\2/g" | sort -n | head -1 38 sed -r "s/$regex/\2 \1/g" | sort -n | \
|
| /linux/tools/perf/ |
| H A D | builtin-mem.c | 332 char sort[128]; in get_sort_order() local 335 scnprintf(sort, sizeof(sort), "--sort=%s", mem->sort_key); in get_sort_order() 337 strcpy(sort, "--sort=mem,snoop,tlb,type"); in get_sort_order() 343 strcpy(sort, "--sort=mem,sym,dso,symbol_daddr," in get_sort_order() 346 strcpy(sort, "--sort=local_weight,mem,sym,dso,symbol_daddr," in get_sort_order() 352 strcat(sort, ",phys_daddr"); in get_sort_order() 355 strcat(sort, ",data_page_size"); in get_sort_order() 358 if (mem->data_type && !strstr(sort, "type")) in get_sort_order() 359 strcat(sort, ",type"); in get_sort_order() 361 return strdup(sort); in get_sort_order()
|
| H A D | builtin-kmem.c | 516 struct sort_dimension *sort; in __page_stat__findnew_alloc() local 524 list_for_each_entry(sort, &page_alloc_sort_input, list) { in __page_stat__findnew_alloc() 525 cmp = sort->cmp(pstat, data); in __page_stat__findnew_alloc() 571 struct sort_dimension *sort; in __page_stat__findnew_caller() local 579 list_for_each_entry(sort, &page_caller_sort_input, list) { in __page_stat__findnew_caller() 580 cmp = sort->cmp(pstat, data); in __page_stat__findnew_caller() 1268 struct sort_dimension *sort; in sort_slab_insert() local 1277 list_for_each_entry(sort, sort_list, list) { in sort_slab_insert() 1278 cmp = sort->cmp(data, this); in sort_slab_insert() 1315 struct sort_dimension *sort; in sort_page_insert() local [all …]
|
| H A D | builtin-diff.c | 579 bh->block_fmt.sort = block_sort; in init_block_hist() 1743 fmt->sort = hist_entry__cmp_baseline; in data__hpp_register() 1747 fmt->sort = hist_entry__cmp_delta; in data__hpp_register() 1751 fmt->sort = hist_entry__cmp_ratio; in data__hpp_register() 1755 fmt->sort = hist_entry__cmp_wdiff; in data__hpp_register() 1759 fmt->sort = hist_entry__cmp_delta_abs; in data__hpp_register() 1763 fmt->sort = hist_entry__cmp_nop; in data__hpp_register() 1767 fmt->sort = hist_entry__cmp_nop; in data__hpp_register() 1770 fmt->sort = hist_entry__cmp_nop; in data__hpp_register() 1842 fmt->sort = hist_entry__cmp_delta_idx; in ui_init() [all …]
|
| /linux/scripts/coccinelle/api/ |
| H A D | check_bq27xxx_data.cocci | 84 List.sort compare i1regs_vals = List.sort compare i2regs_vals 120 List.sort compare i1dmregs_vals = List.sort compare i2dmregs_vals 156 List.sort compare i1props_vals = List.sort compare i2props_vals
|
| /linux/tools/perf/Documentation/ |
| H A D | perf-kvm.txt | 101 Sorting key. Possible values: sample (default, sort by samples 102 number), percent_sample (sort by sample percentage), time 103 (sort by average time), precent_time (sort by time percentage), 104 max_t (sort by maximum time), min_t (sort by minimum time), mean_t 105 (sort by mean time). 141 Sorting key. Possible values: sample (default, sort by samples 142 number), time (sort by average time).
|
| H A D | perf-mem.txt | 100 --sort=<key>:: 119 And the default sort keys are changed to local_weight, mem, sym, dso, 141 the debug information and it will change the default sort keys to: 179 sort keys ("mem" and "snoop"). So unlike other fields and sort keys, they'll 180 behave differently when it's used by -F/--fields or -s/--sort. 193 But using the same name for sort keys will aggregate samples for each type
|
| H A D | perf-report.txt | 87 --sort=:: 89 in CSV format. Following sort keys are available: 148 (i.e. --sort overhead,comm,dso,symbol). 150 If --branch-stack option is used, following sort keys are also 164 And default sort keys are changed to comm, dso_from, symbol_from, dso_to 167 When the sort key symbol is specified, columns "IPC" and "IPC Coverage" 175 If the --mem-mode option is used, the following sort keys are also available 191 And the default sort keys are changed to local_weight, mem, sym, dso, 195 If the data file has tracepoint event(s), following (dynamic) sort keys 214 has the same effect for all dynamic sort keys. [all …]
|
| /linux/scripts/ |
| H A D | Makefile.build | 54 lib-y := $(filter-out $(obj-y), $(sort $(lib-y) $(lib-m))) 57 subdir-ym := $(sort $(subdir-y) $(subdir-m) \ 83 multi-search = $(sort $(foreach m, $1, $(if $(call suffix-search, $m, $2, $3 -), $m))) 138 subdir-builtin := $(sort $(filter %/built-in.a, $(real-obj-y))) 139 subdir-modorder := $(sort $(filter %/modules.order, $(obj-m))) 519 hostprogs := $(sort $(hostprogs)) 525 userprogs := $(sort $(userprogs)) 576 existing-targets := $(wildcard $(sort $(targets))) 581 obj-dirs := $(sort $(patsubst %/,%, $(dir $(targets)))) 583 existing-dirs := $(sort $(patsubst %/,%, $(dir $(existing-targets))))
|
| H A D | link-vmlinux.sh | 175 ${NM} -S ${1} > .tmp_vmlinux.nm-sort 176 ${objtree}/scripts/sorttable -s .tmp_vmlinux.nm-sort ${1} 182 rm -f .tmp_vmlinux.nm-sort 307 echo >&2 Failed to sort kernel tables
|
| H A D | Makefile.headersinst | 27 all-subdirs := $(sort $(src-subdirs) $(gen-subdirs)) 53 existing-dirs := $(sort $(dir $(old-headers))) 54 wanted-dirs := $(sort $(dir $(all-headers)))
|
| H A D | diffconfig | 109 old.sort() 121 changed.sort()
|
| /linux/tools/testing/selftests/rcutorture/bin/ |
| H A D | kcsan-collapse.sh | 20 sort | 22 sort -k1nr > $1/kcsan.sum
|
| /linux/tools/perf/trace/beauty/ |
| H A D | vhost_virtio_ioctl.sh | 10 sort | xargs printf "\t[%s] = \"%s\",\n" 17 sort | xargs printf "\t[%s] = \"%s\",\n"
|
| H A D | prctl_option.sh | 10 sort -n | xargs printf "\t[%s] = \"%s\",\n" 17 sort -n | xargs printf "\t[%s] = \"%s\",\n"
|
| H A D | usbdevfs_ioctl.sh | 13 sort | xargs printf "\t[%s] = \"%s\",\n" 20 sort | xargs printf "\t[%s] = \"%s\",\n"
|
| H A D | socket.sh | 17 sort -n | xargs printf "\t[%s] = \"%s\",\n" 25 sort -n | xargs printf "\t[%s] = \"%s\",\n"
|
| /linux/tools/lib/bpf/ |
| H A D | Makefile | 10 sort -rV | head -n1 | cut -d'_' -f2) 121 sort -u | wc -l) 125 grep -Eo '[^ ]+@LIBBPF_' | cut -d@ -f1 | sort -u | wc -l) 189 sort -u > $(OUTPUT)libbpf_global_syms.tmp; \ 194 sort -u > $(OUTPUT)libbpf_versioned_syms.tmp; \
|
| /linux/tools/memory-model/scripts/ |
| H A D | newlitmushist.sh | 50 sort $T/list-C-already $T/list-C-short | uniq -u > $T/list-C-new 57 sort -u $T/list-C-new $T/list-C-newer > $T/list-C-needed
|
| /linux/tools/testing/selftests/drivers/net/hw/ |
| H A D | ethtool_lib.sh | 101 <(printf '%s\n' "${dev1_speeds[@]}" | sort -u) \ 102 <(printf '%s\n' "${dev2_speeds[@]}" | sort -u)
|
| /linux/samples/hid/ |
| H A D | Makefile.target | 19 __tprogs := $(sort $(tprogs-y)) 31 tprog-cobjs := $(sort $(foreach m,$(__tprogs),$($(m)-objs)))
|
| /linux/samples/bpf/ |
| H A D | Makefile.target | 19 __tprogs := $(sort $(tprogs-y)) 31 tprog-cobjs := $(sort $(foreach m,$(__tprogs),$($(m)-objs)))
|
| /linux/drivers/net/ethernet/mellanox/mlx4/ |
| H A D | qp.c | 802 int sort[MLX4_NUM_QP_REGION]; in mlx4_init_qp_table() local 807 sort[i] = i; in mlx4_init_qp_table() 811 if (dev->caps.reserved_qps_cnt[sort[j]] > in mlx4_init_qp_table() 812 dev->caps.reserved_qps_cnt[sort[j - 1]]) in mlx4_init_qp_table() 813 swap(sort[j], sort[j - 1]); in mlx4_init_qp_table() 818 last_base -= dev->caps.reserved_qps_cnt[sort[i]]; in mlx4_init_qp_table() 819 dev->caps.reserved_qps_base[sort[i]] = last_base; in mlx4_init_qp_table() 821 dev->caps.reserved_qps_cnt[sort[i]]; in mlx4_init_qp_table()
|
| /linux/tools/testing/selftests/ftrace/test.d/filter/ |
| H A D | event-filter-function.tc | 31 …at trace | grep -o 'call_site=\([^+]*\)' | sed 's/call_site=//' | sort | uniq -c | sort | tail -n …
|
| /linux/tools/testing/selftests/net/ |
| H A D | toeplitz.sh | |