| /mirbsd/src/gnu/usr.bin/perl/lib/Getopt/ |
| D | Std.pm | 90 my ($first,$rest); 95 ($first,$rest) = ($1,$2); 101 if ($rest ne '') { 106 $rest = shift(@ARGV); 109 $$hash{$first} = $rest; 112 ${"opt_$first"} = $rest; 124 if ($rest ne '') { 125 $ARGV[0] = "-$rest"; 179 my (@rest) = ($args =~ /([^\s:])(?!\s*:)/g); 185 if (@rest) { [all …]
|
| D | Long.pm | 864 my $rest; # remainder from unbundling 895 $rest = length ($tryopt) > 0 ? substr ($tryopt, 1) : ''; 899 "$starter$tryopt$rest\n") if $debug; 900 $rest = undef unless $rest ne ''; 969 unshift (@ARGV, $starter.$rest) if defined $rest; 1001 unshift (@ARGV, $starter.$rest) if defined $rest; 1017 : !(defined $rest || @ARGV > 0) ) { 1037 $arg = (defined $rest ? $rest 1050 unshift (@ARGV, $starter.$rest) if defined $rest; 1065 if defined $optarg || defined $rest; [all …]
|
| /mirbsd/src/usr.sbin/ppp/ppp/ |
| D | timer.c | 99 TimerList->rest = RESTVAL(itimer); in timer_Start() 103 if (ticks + t->rest >= tp->load) in timer_Start() 105 ticks += t->rest; in timer_Start() 110 tp->rest = tp->load - ticks; in timer_Start() 114 "timer[%p], delta = %ld\n", tp->name, tp, t->name, t, tp->rest); in timer_Start() 127 t->rest -= tp->rest; in timer_Start() 163 t->rest = RESTVAL(itimer); in StopTimerNoBlock() 165 t->next->rest += t->rest; in StopTimerNoBlock() 204 tp->rest = 0; in TimerService() 214 } while (tp && tp->rest == 0); in TimerService() [all …]
|
| /mirbsd/src/gnu/usr.bin/perl/lib/ |
| D | getopts.pl | 17 local(@args,$_,$first,$rest); 23 ($first,$rest) = ($1,$2); 28 if($rest eq '') { 30 $rest = shift(@ARGV); 44 if($rest eq '') { 48 $ARGV[0] = "-$rest"; 55 if($rest ne '') { 56 $ARGV[0] = "-$rest";
|
| D | getopt.pl | 22 local($_,$first,$rest); 26 ($first,$rest) = ($1,$2); 28 if ($rest ne '') { 33 $rest = shift(@ARGV); 35 ${"opt_$first"} = $rest; 39 if ($rest ne '') { 40 $ARGV[0] = "-$rest";
|
| /mirbsd/src/bin/mksh/ |
| D | check.pl | 474 local($type, $perm, $rest, $c, $len, $name); 480 ($type, $perm, $rest) = 482 $c = substr($rest, 0, 1); 483 $len = index($rest, $c, 1) - 1; 484 $name = substr($rest, 1, $len); 485 $rest = substr($rest, 2 + $len); 488 return undef if !&write_file($name, $rest); 502 local($ret) = symlink($rest, $name); 995 local($type, $perm, $rest, $c, $len, $name); 1003 ($type, $perm, $rest) = ($1, $2, $3); [all …]
|
| /mirbsd/src/gnu/usr.bin/perl/lib/Pod/Perldoc/ |
| D | GetOptsOO.pm | 48 my($first,$rest) = ($1,$2); 55 if($rest eq '') { # like -f bar 58 $rest = shift @$args; 63 DEBUG > 3 and print " $method => $rest\n"; 64 $target->$method( $rest ); 88 if($rest eq '') { # like -f 91 DEBUG > 2 and print " Setting args->[0] to \"-$rest\"\n"; 92 $args->[0] = "-$rest";
|
| /mirbsd/src/lib/libssl/src/crypto/bio/ |
| D | bss_bio.c | 190 size_t rest; in bio_read() local 233 rest = size; in bio_read() 235 assert(rest > 0); in bio_read() 240 assert(rest <= peer_b->len); in bio_read() 241 if (peer_b->offset + rest <= peer_b->size) in bio_read() 242 chunk = rest; in bio_read() 262 assert(chunk == rest); in bio_read() 265 rest -= chunk; in bio_read() 267 while (rest); in bio_read() 355 size_t rest; in bio_write() local [all …]
|
| /mirbsd/src/gnu/usr.bin/texinfo/info/ |
| D | info-utils.c | 107 char *rest = string + i; in info_parse_node() local 110 if (*rest) in info_parse_node() 111 rest++; in info_parse_node() 116 while (whitespace(*rest)) in info_parse_node() 117 rest++; in info_parse_node() 118 if (*rest == '\n') in info_parse_node() 120 rest++; in info_parse_node() 121 while (whitespace(*rest)) in info_parse_node() 122 rest++; in info_parse_node() 127 if (strncmp (rest, "(line ", strlen ("(line ")) == 0) in info_parse_node() [all …]
|
| /mirbsd/src/lib/libc/regex/ |
| D | engine.c | 305 const char *rest; /* start of rest of string */ in dissect() local 357 rest = slow(m, sp, stp, ss, es); in dissect() 358 assert(rest != NULL); /* it did match */ in dissect() 360 tail = slow(m, rest, stop, es, stopst); in dissect() 364 stp = rest - 1; in dissect() 370 if (slow(m, sp, rest, ssub, esub) != NULL) { in dissect() 371 dp = dissect(m, sp, rest, ssub, esub); in dissect() 372 assert(dp == rest); in dissect() 374 assert(sp == rest); in dissect() 375 sp = rest; in dissect() [all …]
|
| /mirbsd/src/gnu/usr.bin/perl/ |
| D | warnings.pl | 98 my ($ver, $rest) = @{ $v } ; 101 if (ref $rest) 102 { valueWalk ($rest) } 139 my ($ver, $rest) = @{ $v } ; 140 if (ref $rest) 141 { push (@{ $list{$k} }, walk ($rest)) } 195 my ($ver, $rest) = @{ $v } ; 196 if (ref $rest) 200 printTree ($rest, $prefix . $bar . $offset )
|
| D | regcomp.pl | 13 ($name[$ind], $desc, $rest[$ind]) = split /\t+/, $_, 3; 41 #define $name[$ind] $oind /* $hind $rest[$ind] */
|
| /mirbsd/src/usr.sbin/httpd/src/support/ |
| D | apxs.pl | 126 my (@args, $first, $rest, $pos); 133 ($first, $rest) = ($1,$2); 142 if ($rest eq '') { 147 $rest = shift(@ARGV); 153 if ($rest eq '') { 158 $rest = shift(@ARGV); 164 if ($rest eq '') { 168 $ARGV[0] = "-$rest"; 175 if ($rest ne '') { 176 $ARGV[0] = "-$rest";
|
| D | logresolve.pl | 170 my (@buffer, $child, $ip, $rest, $hostname, $response); 179 ($ip, $rest) = split(/ /, $_, 2); # separate IP form rest 202 ($ip, $rest) = split(/ /, $buffer[$line], 2); 204 printf STDOUT ("%s %s", $hash{$ip}, $rest);
|
| /mirbsd/src/sys/dev/isa/ |
| D | spkr.c | 90 static void rest(int); 104 rest(int ticks) in rest() function 115 tsleep(rest, SPKRPRI | PCATCH, "rest", ticks); in rest() 207 rest(whole * snum / (value * sdenom)); in playtone() 220 rest(silence); in playtone() 471 rest(tp->duration); in spkrioctl() 485 rest(ttp.duration); in spkrioctl()
|
| /mirbsd/src/sys/dev/ic/ |
| D | isacsx.c | 119 register int rest; in isic_isacsx_irq() local 171 rest = (ISAC_READ(I_RBCLD) & (ISACSX_FIFO_LEN-1)); in isic_isacsx_irq() 173 if(rest == 0) in isic_isacsx_irq() 174 rest = ISACSX_FIFO_LEN; in isic_isacsx_irq() 178 if((sc->sc_ibuf = i4b_Dgetmbuf(rest)) != NULL) in isic_isacsx_irq() 185 if(sc->sc_ilen <= (MAX_DFRAME_LEN - rest)) in isic_isacsx_irq() 187 ISAC_RDFIFO(sc->sc_ib, rest); in isic_isacsx_irq() 189 sc->sc_ilen += rest - 1; in isic_isacsx_irq()
|
| D | isac.c | 105 register int rest; in isic_isac_irq() local 153 rest = (ISAC_READ(I_RBCL) & (ISAC_FIFO_LEN-1)); in isic_isac_irq() 155 if(rest == 0) in isic_isac_irq() 156 rest = ISAC_FIFO_LEN; in isic_isac_irq() 160 if((sc->sc_ibuf = i4b_Dgetmbuf(rest)) != NULL) in isic_isac_irq() 167 if(sc->sc_ilen <= (MAX_DFRAME_LEN - rest)) in isic_isac_irq() 169 ISAC_RDFIFO(sc->sc_ib, rest); in isic_isac_irq() 170 sc->sc_ilen += rest; in isic_isac_irq()
|
| /mirbsd/src/gnu/usr.bin/perl/lib/Pod/ |
| D | Html.pm | 1292 my( $rest ); 1295 $rest = $$text; 1298 $rest =~ s#(.+)# 1305 $rest = html_escape($rest); 1309 $rest =~ s{ 1320 $rest =~ s{ 1360 $rest =~ s{ 1384 $$text = $rest; 1734 my $rest = $_[0]; 1735 $rest =~ s/&/&/g; [all …]
|
| D | Perldoc.pm | 147 my($self, $rest) = @_; 148 return unless defined $rest and length $rest; 149 if($rest =~ m/^(\w+)$/s) { 150 $rest = $1; #untaint 152 warn "\"$rest\" isn't a valid output format. Skipping.\n"; 156 $self->aside("Noting \"$rest\" as desired output format...\n"); 164 $rest, # Yes, try it first with the given capitalization 165 "\L$rest", "\L\u$rest", "\U$rest" # And then try variations
|
| /mirbsd/src/gnu/usr.bin/cvs/contrib/ |
| D | rcs2log.sh | 477 quoted = quoted substr(rest, 1, p-1) "\\" substr(rest, p, 1) 478 rest = substr(rest, p+1) 481 printf "fullname[\"%s\"] = \"%s%s\"\n", $1, quoted, rest
|
| /mirbsd/src/gnu/usr.bin/binutils/gdb/cli/ |
| D | cli-logging.c | 135 char *rest = args; in set_logging_on() local 136 if (rest && *rest) in set_logging_on() 139 logging_filename = xstrdup (rest); in set_logging_on()
|
| /mirbsd/src/gnu/usr.bin/perl/utils/ |
| D | h2xs.PL | 857 my $rest = $2; 858 $rest =~ s!/\*.*?(\*/|\n)|//.*!!g; # Remove comments 859 $rest =~ s/^\s+//; 860 $rest =~ s/\s+$//; 862 #print("Skip non-wordy $def => $rest\n"), 863 # next defines if $rest =~ /[^\w\$]/; 864 if ($rest =~ /"/) { 865 print("Skip stringy $def => $rest\n") if $opt_d; 869 $seen_define{$def} = $rest;
|
| /mirbsd/src/gnu/usr.bin/binutils/gas/ |
| D | read.c | 649 char *rest = input_line_pointer + 1; in read_a_source_file() local 651 if (*rest == ':') in read_a_source_file() 652 ++rest; in read_a_source_file() 653 if (*rest == ' ' || *rest == '\t') in read_a_source_file() 654 ++rest; in read_a_source_file() 655 if ((strncasecmp (rest, "EQU", 3) == 0 in read_a_source_file() 656 || strncasecmp (rest, "SET", 3) == 0) in read_a_source_file() 657 && (rest[3] == ' ' || rest[3] == '\t')) in read_a_source_file() 659 input_line_pointer = rest + 3; in read_a_source_file() 661 strncasecmp (rest, "SET", 3) == 0); in read_a_source_file() [all …]
|
| /mirbsd/src/gnu/usr.bin/texinfo/makeinfo/ |
| D | insertion.c | 1983 char *rest; in cm_author() local 1984 get_rest_of_line (1, &rest); in cm_author() 1989 add_word_args ("— %s", rest); in cm_author() 1997 add_word (rest); in cm_author() 2002 add_word (rest); in cm_author() 2006 add_word_args ("-- %s", rest); in cm_author() 2013 add_word (rest); in cm_author() 2021 free (rest); in cm_author() 2027 char *rest; in cm_titlepage_cmds() local 2029 get_rest_of_line (1, &rest); in cm_titlepage_cmds() [all …]
|
| /mirbsd/src/usr.sbin/adduser/ |
| D | adduser | 129 while IFS=: read uexist rest; do 136 while IFS=: read uexist pw gid rest; do 158 while IFS=: read uexist rest; do
|