Home
last modified time | relevance | path

Searched refs:ARGV (Results 1 – 24 of 24) sorted by relevance

/f-stack/freebsd/tools/
H A Dfw_stub.awk60 if (ARGV[i] ~ /^-/) {
66 o = substr(ARGV[i], j, 1);
68 if (length(ARGV[i]) > j) {
69 opt_c = substr(ARGV[i], j + 1);
74 opt_c = ARGV[i];
79 if (length(ARGV[i]) > j) {
80 opt_m = substr(ARGV[i], j + 1);
85 opt_m = ARGV[i];
90 if (length(ARGV[i]) > j) {
96 opt_l = ARGV[i];
[all …]
H A Dmakeobjops.awk366 if (ARGV[i] ~ /^-/) {
371 for (j = 2; j <= length(ARGV[i]); j++) {
372 o = substr(ARGV[i], j, 1);
378 if (length(ARGV[i]) > j) {
379 opt_l = substr(ARGV[i], j + 1);
384 opt_l = ARGV[i];
393 else if (ARGV[i] ~ /\.m$/)
394 filenames[num_files++] = ARGV[i];
H A Dsdiodevs2h.awk221 arg = ARGV[i];
H A Dusbdevs2h.awk221 arg = ARGV[i];
H A Dvnode_if.awk147 arg = ARGV[i];
/f-stack/app/redis-5.0.5/utils/
H A Dredis-copy.rb23 if ARGV.length != 4
29 srchost = ARGV[0]
30 srcport = ARGV[1]
31 dsthost = ARGV[2]
32 dstport = ARGV[3]
H A Dredis-sha1.rb48 host = ARGV[0] || "127.0.0.1"
49 port = ARGV[1] || "6379"
50 db = ARGV[2] || "0"
/f-stack/app/redis-5.0.5/utils/lru/
H A Dtest-lru.rb192 if ARGV.length < 1
202 filename = ARGV[0]
207 while i < ARGV.length
208 if ARGV[i] == '--runs'
209 $o[:numruns] = ARGV[i+1].to_i
211 elsif ARGV[i] == '--ttl'
214 STDERR.puts "Unknown option #{ARGV[i]}"
/f-stack/app/redis-5.0.5/utils/hyperloglog/
H A Dhll-gnuplot-graph.rb84 if ARGV.length != 4
88 filter_samples(ARGV[0].to_i,ARGV[1].to_i,ARGV[2].to_i,ARGV[3].to_sym)
/f-stack/app/redis-5.0.5/src/
H A Dredis-trib.rb49 while (arg = ARGV.shift)
63 value = ARGV.shift
104 $command = ARGV.shift
/f-stack/dpdk/app/test/
H A Dtest_mp_secondary.c50 #define launch_proc(ARGV) process_dup(ARGV, RTE_DIM(ARGV), __func__) argument
H A Dtest_pdump.c21 #define launch_p(ARGV) process_dup(ARGV, RTE_DIM(ARGV), __func__) argument
H A Dtest_timer_secondary.c26 #define launch_proc(ARGV) process_dup(ARGV, RTE_DIM(ARGV), __func__) argument
H A Dtest_eal_flags.c39 #define launch_proc(ARGV) process_dup(ARGV, RTE_DIM(ARGV), __func__) argument
/f-stack/tools/libxo/xolint/
H A Dxolint.pl19 while ($ARGV[0] =~ /^-/) {
20 $_ = shift @ARGV;
22 $opt_cflags .= shift @ARGV if /^-C/;
31 if ($#ARGV < 0) {
44 for $file (@ARGV) {
/f-stack/freebsd/contrib/openzfs/scripts/
H A Denum-extract.pl17 if (!getopts("", \%opts) || @ARGV < 1) {
H A Dcstyle.pl178 if ($#ARGV >= 0) {
179 foreach my $arg (@ARGV) {
/f-stack/freebsd/tools/sound/
H A Dfeeder_rate_mkfilter.awk684 ARGV[ARGC++] = "100:8:0.85";
685 ARGV[ARGC++] = "100:36:0.92";
686 ARGV[ARGC++] = "100:164:0.97";
703 printf("%s%s", (i == 1) ? "" : " ", ARGV[i]);
707 if (filter_parse(ARGV[i]) == 0) {
H A Dfeeder_eq_mkfilter.awk291 split(ARGV[1], arg, ":");
/f-stack/app/redis-5.0.5/tests/unit/
H A Dscripting.tcl37 test {EVAL - Are the KEYS and ARGV arrays populated correctly?} {
38 r eval {return {KEYS[1],KEYS[2],ARGV[1],ARGV[2]}} 2 a b c d
351 if current > ARGV[1] then
375 math.randomseed(ARGV[1]); return tostring(math.random())
378 math.randomseed(ARGV[1]); return tostring(math.random())
381 math.randomseed(ARGV[1]); return tostring(math.random())
602 r eval {if tonumber(ARGV[1]) > 0 then redis.call('incr', KEYS[1]) end} 1 x 0
H A Dintrospection.tcl19 r eval {redis.call('set',KEYS[1],ARGV[1])} 1 foo bar
/f-stack/app/redis-5.0.5/tests/cluster/tests/
H A D10-manual-failover.tcl50 $cluster eval {redis.call("rpush",KEYS[1],ARGV[1])} 1 $key $ele
H A D04-resharding.tcl98 $cluster eval {redis.call("rpush",KEYS[1],ARGV[1])} 1 $key $ele
/f-stack/app/redis-5.0.5/deps/jemalloc/bin/
H A Djeprof.in517 if (@ARGV > 0) {
518 if (IsProfileURL($ARGV[0])) {
520 } elsif (IsSymbolizedProfileFile($ARGV[0])) {
534 scalar(@ARGV) || usage("Did not specify profile file");
537 $main::prog = shift(@ARGV) || usage("Did not specify program");
539 $main::prog = shift(@ARGV) || usage("Did not specify program");
540 scalar(@ARGV) || usage("Did not specify profile file");
544 foreach my $farg (@ARGV) {