Home
last modified time | relevance | path

Searched refs:cut (Results 1 – 25 of 542) sorted by relevance

12345678910>>...22

/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
Dplot_bars.sh35 figures=($(echo "$bars" | cut -f 2 | sort | uniq))
56 title=$(echo "$labels" | grep "^LABEL.$figure" | cut -f 3 | \
58 y_label=$(echo "$labels" | grep "^LABEL.$figure" | cut -f 4 | \
62 num_flows=$(echo "$labels" | grep "^LABEL.$figure" | cut -f 5 | \
66 x_label_1=$(echo "$log" | grep "BAR.$figure" | cut -f 3 | sed 's/_/\t/g' \
67 | cut -f 1 | sort | uniq | head -n 1 )
70 x_label_2=$(echo "$log" | grep "BAR.$figure" | cut -f 3 | sed 's/_/\t/g' \
71 | cut -f 1 | sort | uniq | sed -n 2p)
107 file_name=$(echo "$labels" | grep "^LABEL.$figure" | cut -f 5 | head -n 1)
119 data_sets=$(echo "$bars" | grep "LIMITERRORBAR.$figure" | cut -f 3 | \
[all …]
Dplot_dynamics.sh33 figures=($(echo "$plots" | cut -f 2 | sort | uniq))
37 data_sets=$(echo "$plots" | grep "^PLOT.$figure" | cut -f 3 | sort | uniq)
39 linetypes=($(echo "$data_sets" | grep "#" | cut -d '#' -f 2 | \
40 cut -d '@' -f 1 | uniq))
53 y_label=$(echo "$data_sets" | grep "#" | cut -d '#' -f 1 | \
54 cut -d ' ' -f 1 | cut -d '/' -f 3 | sed 's/[0-9]/#/g' | \
55 cut -d '#' -f 3 | head -n 1 | sed 's/_/ /g')
69 linetype=$(echo "$set" | grep "#" | cut -d '#' -f 2 | cut -d '@' -f 1)
82 echo "$log" | grep "^PLOT.$figure.$set" | cut -f 4,5
/external/linux-kselftest/tools/testing/selftests/ftrace/test.d/
Dfunctions22 cmd=`echo $line | cut -f2- -d: | cut -f1 -d"["`
23 file=`echo $line | cut -f1 -d:`
28 cmd=`echo $line | cut -f2- -d: | cut -f1 -d"["`
29 file=`echo $line | cut -f1 -d:`
44 echo 0 > `echo $line | cut -f1 -d:`
51 tr=`echo $t | cut -d: -f2`
58 name=`echo $t | cut -d: -f1 | cut -d' ' -f1`
60 tr=`echo $t | cut -d: -f2-4`
61 limit=`echo $t | cut -d: -f5`
63 tr=`echo $t | cut -d: -f2`
[all …]
/external/curl/src/
Dtool_msgs.c57 size_t cut = width-1; in voutf() local
59 while(!ISSPACE(ptr[cut]) && cut) { in voutf()
60 cut--; in voutf()
62 if(0 == cut) in voutf()
65 cut = width-1; in voutf()
67 (void)fwrite(ptr, cut + 1, 1, config->errors); in voutf()
69 ptr += cut + 1; /* skip the space too */ in voutf()
70 len -= cut + 1; in voutf()
/external/ltp/testcases/kernel/controllers/
Dtest_controllers.sh42 CPU_CONTROLLER=`grep -w cpu /proc/cgroups | cut -f1`;
43 CPU_CONTROLLER_VALUE=`grep -w cpu /proc/cgroups | cut -f4`;
44 MEM_CONTROLLER=`grep -w memory /proc/cgroups | cut -f1`;
45 MEM_CONTROLLER_VALUE=`grep -w memory /proc/cgroups | cut -f4`;
46 IOTHROTTLE_CONTROLLER=`grep -w blockio /proc/cgroups | cut -f1`;
47 IOTHROTTLE_CONTROLLER_VALUE=`grep -w blockio /proc/cgroups | cut -f4`;
48 FREEZER=`grep -w freezer /proc/cgroups | cut -f1`;
49 FREEZER_VALUE=`grep -w freezer /proc/cgroups | cut -f4`;
50 CPUACCOUNT_CONTROLLER=`grep -w cpuacct /proc/cgroups | cut -f1`
51 CPUACCOUNT_CONTROLLER_VALUE=`grep -w cpuacct /proc/cgroups | cut -f4`
/external/ksoap2/kobjects/org/ksoap2/kobjects/mime/
DDecoder.java83 int cut = header.indexOf('"', pos); in getHeaderElements() local
84 if (cut == -1) in getHeaderElements()
87 result.put(key, header.substring(pos, cut)); in getHeaderElements()
88 pos = cut + 2; in getHeaderElements()
96 int cut = header.indexOf(';', pos); in getHeaderElements() local
97 if (cut == -1) { in getHeaderElements()
101 result.put(key, header.substring(pos, cut)); in getHeaderElements()
102 pos = cut + 1; in getHeaderElements()
105 int cut = header.indexOf('=', pos); in getHeaderElements() local
107 if (cut == -1) in getHeaderElements()
[all …]
/external/u-boot/scripts/
DLindent4 V1=`echo $RES | cut -d' ' -f3 | cut -d'.' -f1`
5 V2=`echo $RES | cut -d' ' -f3 | cut -d'.' -f2`
6 V3=`echo $RES | cut -d' ' -f3 | cut -d'.' -f3`
Ddtc-version.sh17 MAJOR=$($dtc -v | head -1 | awk '{print $NF}' | cut -d . -f 1)
18 MINOR=$($dtc -v | head -1 | awk '{print $NF}' | cut -d . -f 2)
19 PATCH=$($dtc -v | head -1 | awk '{print $NF}' | cut -d . -f 3 | cut -d - -f 1)
/external/selinux/scripts/
DLindent4 V1=`echo $RES | cut -d' ' -f3 | cut -d'.' -f1`
5 V2=`echo $RES | cut -d' ' -f3 | cut -d'.' -f2`
6 V3=`echo $RES | cut -d' ' -f3 | cut -d'.' -f3`
/external/curl/
Dcurl-config.in105 cmajor=`echo $checkfor | cut -d. -f1`
106 cminor=`echo $checkfor | cut -d. -f2`
109 cpatch=`echo $checkfor | cut -d. -f3 | cut -d- -f1`
111 vmajor=`echo @CURLVERSION@ | cut -d. -f1`
112 vminor=`echo @CURLVERSION@ | cut -d. -f2`
115 vpatch=`echo @CURLVERSION@ | cut -d. -f3 | cut -d- -f1`
/external/elfutils/tests/
Drun-linkmap-cut.sh25 testfiles linkmap-cut-lib.so linkmap-cut linkmap-cut.core
29 testrun ${abs_top_builddir}/src/stack --core=linkmap-cut.core -e linkmap-cut -m >bt || true
/external/ltp/testcases/kernel/hotplug/cpu_hotplug/include/
Dcpuhotplug_hotplug.sh16 echo `egrep [0-9]+: /proc/interrupts | cut -d ':' -f 1`
150 range_low=$(echo $part | cut -d - -f 1)
151 range_high=$(echo $part | cut -d - -f 2)
223 cpu=`echo $cpu_state | cut -d: -f 1`
224 state=`echo $cpu_state | cut -d: -f 2`
241 echo `cd /sys/devices/system/cpu/ && grep 1 */online | cut -d '/' -f 1`
253 echo `cd /sys/devices/system/cpu/ && grep 0 */online | cut -d '/' -f 1`
/external/openssh/contrib/aix/
Dbuildbff.sh79 eval $confvar=`grep "^$confvar=" $objdir/Makefile | cut -d = -f 2`
127 VERSION=`./ssh -V 2>&1 | cut -f 1 -d , | cut -f 2 -d _`
128 MAJOR=`echo $VERSION | cut -f 1 -d p | cut -f 1 -d .`
129 MINOR=`echo $VERSION | cut -f 1 -d p | cut -f 2 -d .`
130 PATCH=`echo $VERSION | cut -f 1 -d p | cut -f 3 -d .`
207 if cut -f1 -d: /etc/group | egrep '^'$SSH_PRIVSEP_USER'\$' >/dev/null
/external/libunwind/tests/
Dperf-startup5 warmup=$(./forker 2000 /bin/true | cut -f1 -d' ')
7 nsec1=$(./forker 2000 /bin/true | cut -f1 -d' ')
10 nsec2=$(LD_PRELOAD=$LIBUNWIND ./forker 2000 /bin/true | cut -f1 -d' ')
13 nsec3=$(LD_PRELOAD=$LIBUNWIND_PLAT ./forker 2000 /bin/true | cut -f1 -d' ')
/external/linux-kselftest/tools/testing/selftests/ftrace/test.d/kprobe/
Dkprobe_eventname.tc9 FUNC=`grep " [tT] .*vfs_read$" /proc/kallsyms | tail -n 1 | cut -f 3 -d " "`
27 FUNC=`grep -m 10 " [tT] .*\.isra\..*$" /proc/kallsyms | tail -n 1 | cut -f 3 -d " "`
30 EVENT=`grep $FUNC kprobe_events | cut -f 1 -d " " | cut -f 2 -d:`
/external/ltp/testcases/kernel/power_management/
Dpm_include.sh89 siblings=`grep siblings /proc/cpuinfo | uniq | cut -f2 -d':'`
90 cpu_cores=`grep "cpu cores" /proc/cpuinfo | uniq | cut -f2 -d':'`
133 siblings=`grep siblings /proc/cpuinfo | uniq | cut -f2 -d':'`
134 cpu_cores=`grep "cpu cores" /proc/cpuinfo | uniq | cut -f2 -d':'`
144 siblings=`grep siblings /proc/cpuinfo | uniq | cut -f2 -d':'`
146 | cut -f2 -d':'`
158 | cut -f1 -d'-'`
Drunpwtests03.sh122 cut -f8 -d"/" | cut -f1 -d"."`
135 cut -f8 -d"/" | cut -f1 -d"."`
/external/ltp/testcases/kernel/numa/
Dnuma01.sh83 nodes_list=$(numactl --show | grep nodebind | cut -d ':' -f 2)
129 Preferred_node=$(echo $nodes_list | cut -d ' ' -f 1)
132 Preferred_node=$(echo $nodes_list | cut -d ' ' -f $((COUNTER+1)))
165 Preferred_node=$(echo $nodes_list | cut -d ' ' -f 1)
168 Preferred_node=$(echo $nodes_list | cut -d ' ' -f $((COUNTER+1)))
379 Preferred_node=$(echo $nodes_list | cut -d ' ' -f 1)
381 Preferred_node=$(echo $nodes_list | cut -d ' ' -f $((COUNTER+1)))
464 Preferred_node=$(echo $nodes_list | cut -d ' ' -f 1)
467 Preferred_node=$(echo $nodes_list | cut -d ' ' -f $((COUNTER+1)))
/external/linux-kselftest/tools/testing/selftests/net/forwarding/
Ddevlink_lib.sh18 grep -v "${NETIFS[p1]}[0-9]" | cut -d" " -f1 | \
19 rev | cut -d"/" -f2- | rev)
29 DEVLINK_VIDDID=$(lspci -s $(echo $DEVLINK_DEV | cut -d"/" -f2) \
30 -n | cut -d" " -f3)
/external/eigen/bench/btl/data/
Dmk_new_gnuplot.sh7 echo "set title " `grep ${WHAT} ../action_settings.txt | head -n 1 | cut -d ";" -f 2` >> $WHAT.gnup…
8 echo "set xlabel " `grep ${WHAT} ../action_settings.txt | head -n 1 | cut -d ";" -f 3` " offset 0,0…
9 echo "set xrange [" `grep ${WHAT} ../action_settings.txt | head -n 1 | cut -d ";" -f 4` "]" >> $WHA…
39 …echo "'"$FILE"'" `grep $TITLE ../perlib_plot_settings.txt | head -n 1 | cut -d ";" -f 2` "\\" >> …
/external/toolchain-utils/bestflags/examples/omnetpp/
Dbuild_omnetpp55 user_time=$(cat build_timer$file | grep "user" | cut -d "u" -f 1)
58 checksum=$(readelf -x .text $outfile | md5sum | cut -d " " -f 1)
59 file_size=$(ls -l $outfile | cut -d " " -f 5)
61 size_hex=$(echo $text_section | sed "s/\s\{1,\}/\ /g" | cut -d ' ' -f 6)
/external/pdfium/third_party/libpng16/contrib/intel/
DINSTALL52 -----------------cut----------------
87 -----------------cut----------------
92 -----------------cut----------------
97 -----------------cut----------------
102 -----------------cut----------------
139 -----------------cut----------------
144 -----------------cut----------------
158 -----------------cut----------------
/external/libpng/contrib/intel/
DINSTALL52 -----------------cut----------------
87 -----------------cut----------------
92 -----------------cut----------------
97 -----------------cut----------------
102 -----------------cut----------------
139 -----------------cut----------------
144 -----------------cut----------------
158 -----------------cut----------------
/external/cldr/tools/java/
Dfind-unrun-tests.sh3 grep 'extends.*TestFmwk' org/unicode/cldr/unittest/*.java | cut -d/ -f5 | cut -d. -f1 | sort | uniq…
4 ant check -Druncheck.arg='-l' | fgrep -- '--' | fgrep -v -- '-- CLDR' | cut -d'-' -f3 | tr -d ' ' …
/external/python/cpython3/Lib/idlelib/
Drstrip.py19 cut = len(txt.rstrip())
22 if cut < raw:
23 text.delete('%i.%i' % (cur, cut), '%i.end' % cur)

12345678910>>...22