Searched refs:rest (Results 1 - 25 of 118) sorted by relevance

12345

/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dgetopt.pl22 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";
H A Dgetopts.pl17 local(@args,$_,$first,$rest);
23 ($first,$rest) = ($1,$2);
28 if($rest eq '') {
30 $rest = shift(@ARGV);
33 push(\@opt_$first, \$rest);
35 \$opt_$first = \$rest;
38 \$opt_$first .= ' ' . \$rest;
44 if($rest eq '') {
48 $ARGV[0] = "-$rest";
55 if($rest n
[all...]
/opensolaris-onvv-gate/usr/src/stand/
H A DREADME27 If you are looking for the rest of what used to be in /usr/src/stand, it's over
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/Perldoc/
H A DGetOptsOO.pm48 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";
/opensolaris-onvv-gate/usr/src/cmd/lp/lib/lp/
H A Dsdn.c144 char * rest; local
171 sdn.val = strtod(str, &rest);
178 while (*rest && *rest == ' ')
179 rest++;
181 switch (*rest) {
185 *p_after = rest;
189 sdn.sc = *rest++;
191 *p_after = rest;
H A Dset_charset.c75 char *rest, local
96 && 0 <= (cs = strtol(char_set + 2, &rest, 10)) && cs <= 63
97 && !*rest
H A Dset_pitch.c69 char *rest, local
107 xpi = strtod(str, &rest);
150 switch (*rest) {
/opensolaris-onvv-gate/usr/src/cmd/man/src/util/nsgmls.src/lib/
H A DIdentityCodingSystem.cxx16 const char **rest);
49 const char **rest)
52 *rest = from + fromLen;
57 *rest = from;
48 decode(Char *to, const char *from, size_t fromLen, const char **rest) argument
H A DWin32CodingSystem.cxx27 const char **rest);
38 const char **rest);
102 size_t fromLen, const char **rest)
106 *rest = from;
132 size_t fromLen, const char **rest)
145 *rest = from + fromLen;
160 *rest = from;
101 decode(Char *to, const char *from, size_t fromLen, const char **rest) argument
131 decode(Char *to, const char *from, size_t fromLen, const char **rest) argument
H A DUnicodeCodingSystem.cxx32 const char **rest);
83 const char **rest)
91 return subDecoder_->decode(to, from, fromLen, rest);
94 *rest = from;
116 return subDecoder_->decode(to, from, fromLen, rest);
120 *rest = from + fromLen;
82 decode(Char *to, const char *from, size_t fromLen, const char **rest) argument
H A DFixed2CodingSystem.cxx23 const char **rest);
60 const char **rest)
64 *rest = from + (fromLen & ~1);
69 *rest = from + fromLen;
59 decode(Char *to, const char *from, size_t fromLen, const char **rest) argument
H A DXMLCodingSystem.cxx57 const char **rest);
65 const char **rest);
125 const char **rest)
128 return subDecoder_->decode(to, from, fromLen, rest);
131 *rest = from;
140 *rest = from;
181 return subDecoder_->decode(to, from, fromLen, rest);
191 return (p - to) + subDecoder_->decode(p, from, fromLen, rest);
227 n += subDecoder_->decode(p, from, fromLen, rest);
356 const char **rest)
124 decode(Char *to, const char *from, size_t fromLen, const char **rest) argument
355 decode(Char *to, const char *from, size_t fromLen, const char **rest) argument
[all...]
H A DBig5CodingSystem.cxx43 size_t slen, const char **rest)
61 *rest = (const char *)us;
42 decode(Char *to, const char *s, size_t slen, const char **rest) argument
H A DEUCJPCodingSystem.cxx43 size_t slen, const char **rest)
81 *rest = (const char *)us;
42 decode(Char *to, const char *s, size_t slen, const char **rest) argument
H A DLiteralStorage.cxx120 const char **rest)
123 *rest = from + nChars*sizeof(Char);
119 decode(Char *to, const char *from, size_t fromLen, const char **rest) argument
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Getopt/
H A DStd.pm90 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...]
/opensolaris-onvv-gate/usr/src/cmd/bnu/
H A Duux.c96 char syspart[MAXFULLNAME], rest[BUFSIZ]; local
338 (void) split(prm, xsys, CNULL, rest);
548 ret = split(prm, syspart, CNULL, rest);
550 DEBUG(4, "rest -> %s, ", rest);
557 APPCMD(rest);
589 if (rest[0] != '~')
590 if (ckexpf(rest))
592 ASSERT(fprintf(fprx, "%c %s %s\n", redir, rest,
607 APPCMD(rest);
[all...]
/opensolaris-onvv-gate/usr/src/grub/grub-0.97/stage2/
H A Dfsys_ffs.c185 char *rest, ch; local
228 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
230 *rest = 0;
247 *rest = ch;
261 *rest = ch;
286 *(dirname = rest) = ch;
H A Dfsys_ufs2.c209 char *rest, ch; local
253 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
255 *rest = 0;
268 *rest = ch;
282 *rest = ch;
307 *(dirname = rest) = ch;
H A Dfsys_minix.c311 char * rest; local
442 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/';
443 rest++);
446 /* invariant: rest points to slash after the next filename component */
447 *rest = 0;
453 printf ("dirname=`%s', rest=`%s', loc=%d\n", dirname, rest, loc);
469 *rest = ch;
488 *rest
[all...]
H A Dfsys_fat.c295 char *rest, ch, dir_buf[FAT_DIRENTRY_LENGTH]; local
344 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
346 *rest = 0;
371 *rest = ch;
477 *(dirname = rest) = ch;
/opensolaris-onvv-gate/usr/src/cmd/sh/
H A Dword.c89 /* Pick up rest of multibyte character */
338 int rest; local
339 if ((rest = f->fend - f->fnxt) < i) {
347 (f->fsiz == 1) ? 1 : (f->fsiz - rest),
348 rest);
394 readb(struct fileblk *f, int toread, int rest) argument
399 if (rest) {
401 * copies the remaining 'rest' bytes from f->fnxt
404 (void) memcpy(f->fbuf, f->fnxt, rest);
406 f->fend = f->fnxt + rest;
[all...]
/opensolaris-onvv-gate/usr/src/tools/scripts/
H A Dcstyle.pl698 # The rest of this file contains the code for the continuation checking
738 my ($pre_tabs, $label, $rest) = ($1, $2, $3);
743 $_ .= ("\t" x (length($label) / 8)).$rest;
826 my $rest = $_; # keeps the remainder of the line
840 # rest contains the remainder of the line
842 $rest =~ s/^$rxp//;
867 if ($rest =~ /^\s*{?$/) {
871 if ($rest =~ /^\s*;$/) {
890 if ($rest =~ /^$/) {
908 if ($rest
[all...]
/opensolaris-onvv-gate/usr/src/cmd/lp/cmd/lpadmin/
H A Doptions.c156 *rest, local
232 (void)strtol(optarg, &rest, 10);
233 if (!rest || !*rest)
441 Q = strtol(optarg, &rest, 10);
446 if (rest && *rest) {
504 t = strtol(optarg, &rest, 10);
509 if (rest && *rest) {
[all...]
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/bio/
H A Dbss_bio.c190 size_t rest; local
233 rest = size;
235 assert(rest > 0);
240 assert(rest <= peer_b->len);
241 if (peer_b->offset + rest <= peer_b->size)
242 chunk = rest;
262 assert(chunk == rest);
265 rest -= chunk;
267 while (rest);
355 size_t rest; local
[all...]

Completed in 211 milliseconds

12345