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

12345

/freebsd-12-stable/contrib/amd/scripts/
H A Damd2sun.in28 $fs = $1; $rest=$2;
31 ($defopts = $rest) =~ s/^.*[\s;]opts:=([^;\s]+)[;\s]*.*$/\1/;
37 if ($rest =~ /opts:=([^;\s]+)[;\s]/) {
43 ($rhost = $rest) =~ s/^.*[\s;]rhost:=([^;\s]+)[;\s]*.*$/\1/;
44 ($rfs = $rest) =~ s/^.*[\s;]rfs:=([^;\s]+)[;\s]*.*$/\1/;
46 if ($rest =~ /sublink:=([^;\s]+)[;\s]/ ) {
H A Dautomount2amd.in52 ($dir, $options, $machine, $path, $rest) = ($1, $2, $3, $4, $5);
53 print "#$rest\n" if ($rest =~ m/\w/);
/freebsd-12-stable/sys/dev/nand/
H A Dnandsim_log.c96 int hdr_len, len, rest; local
127 rest = log_size - sc->log_idx - 1;
128 if (rest >= hdr_len) {
134 bcopy(hdr, &sc->log_buff[sc->log_idx], rest);
135 bcopy(&hdr[rest], sc->log_buff,
136 hdr_len - rest);
137 sc->log_idx = hdr_len - rest;
141 rest = log_size - sc->log_idx - 1;
142 if (rest >= len) {
147 bcopy(tmp, &sc->log_buff[sc->log_idx], rest);
[all...]
/freebsd-12-stable/contrib/gperf/src/
H A Dkeyword-list.cc56 lastp = &new_cons->rest();
57 list = list->rest();
76 Keyword_List *rest = list->rest(); local
78 list = rest;
106 resultp = &list2->rest();
114 resultp = &list1->rest();
127 if (list == NULL || list->rest() == NULL)
134 for (Keyword_List *temp = list->rest();;)
136 temp = temp->rest();
[all...]
H A Dkeyword.h38 const char *rest);
56 const char *rest);
102 const char *rest) = 0;
H A Dkeyword-list.h40 Keyword_List *& rest ();
57 KeywordExt_List *& rest ();
H A Dmain.cc39 const char *rest);
43 KeywordExt_Factory::create_keyword (const char *allchars, int allchars_length, const char *rest) argument
45 return new KeywordExt (allchars, allchars_length, rest);
131 for (KeywordExt_List *ptr = list; ptr; ptr = ptr->rest())
H A Dsearch.cc139 for (KeywordExt_List *temp = _head; temp; temp = temp->rest())
145 for (KeywordExt_List *temp = _head; temp; temp = temp->rest())
168 for (KeywordExt_List *temp = _head; temp; temp = temp->rest())
220 for (KeywordExt_List *temp = _head; temp; temp = temp->rest())
228 for (KeywordExt_List *temp = _head; temp; temp = temp->rest())
247 for (KeywordExt_List *temp = _head; temp; temp = temp->rest())
280 for (KeywordExt_List *l1 = _head; l1 && l1->rest(); l1 = l1->rest())
283 for (KeywordExt_List *l2 = l1->rest(); l2; l2 = l2->rest())
[all...]
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_mac.cpp106 const char *rest = trim; local
108 rest = ExtractTokenUpToDelimiter(rest, " (in ", &symbol_name);
109 if (rest[0] == '\0') {
119 rest = ExtractTokenUpToDelimiter(rest, ") ", out_module);
121 if (rest[0] == '(') {
123 rest++;
124 rest = ExtractTokenUpToDelimiter(rest, "
[all...]
/freebsd-12-stable/usr.sbin/ppp/
H A Dtimer.c101 * need to adjust TimerList->rest (yet).
104 ticks = RESTVAL(itimer) - TimerList->rest;
108 if (ticks + t->rest >= tp->load)
110 ticks += t->rest;
115 tp->rest = tp->load - ticks;
119 "timer[%p], delta = %ld\n", tp->name, tp, t->name, t, tp->rest);
132 t->rest -= tp->rest;
166 t->next->rest += RESTVAL(itimer); /* t (tp) was the first in the list */
168 t->next->rest
241 long rest; local
[all...]
H A Dtimer.h39 u_long rest; /* Ticks to expire */ member in struct:pppTimer
/freebsd-12-stable/lib/libtacplus/
H A Dtaclib_private.h99 unsigned char rest[1]; member in struct:tac_authen_start
107 unsigned char rest[1]; member in struct:tac_authen_reply
114 unsigned char rest[1]; member in struct:tac_authen_cont
126 unsigned char rest[1]; member in struct:tac_author_request
134 unsigned char rest[1]; member in struct:tac_author_response
147 unsigned char rest[1]; member in struct:tac_acct_start
154 unsigned char rest[1]; member in struct:tac_acct_reply
/freebsd-12-stable/contrib/subversion/
H A Dgen-make.py278 rest = Options() variable
291 rest.add(opt, val)
297 rest.add(opt, val)
300 for opt, val in rest.list:
309 rest.add('--with-apr', os.path.join(val, 'srclib', 'apr'),
311 rest.add('--with-apr-util', os.path.join(val, 'srclib', 'apr-util'),
313 rest.add('--with-apr-iconv', os.path.join(val, 'srclib', 'apr-iconv'),
319 for opt, val in rest.list:
326 main(conf, gentype, skip_depends=skip, other_options=rest.list)
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DAlignOf.h25 AlignerImpl<Ts...> rest; member in class:llvm::detail::AlignerImpl
36 SizerImpl<Ts...> rest; member in union:llvm::detail::SizerImpl
/freebsd-12-stable/contrib/gdb/gdb/cli/
H A Dcli-logging.c112 char *rest = args; local
113 if (rest && *rest)
116 logging_filename = xstrdup (rest);
/freebsd-12-stable/crypto/openssl/crypto/bio/
H A Dbss_bio.c114 size_t rest; local
156 rest = size;
158 assert(rest > 0);
162 assert(rest <= peer_b->len);
163 if (peer_b->offset + rest <= peer_b->size)
164 chunk = rest;
181 assert(chunk == rest);
184 rest -= chunk;
186 while (rest);
273 size_t rest; local
[all...]
/freebsd-12-stable/contrib/binutils/bfd/
H A Dmep-relocs.pl50 if (($pre,$rel,$rest) = /(.*RELOC_NUMBER \()([^,]+), *\d+(.*)/) {
51 $rest =~ s/[\r\n]+$//;
52 print (MEPHO "$pre$rel, $val$rest\n") || die("mep.h.new write: $!");
57 $rest =~ s@.*/\* @@;
58 ($pattern, $sign, $attrs) = $rest =~ m@(.*) ([US]) (.*)\*/@;
/freebsd-12-stable/libexec/rc/rc.d/
H A Dgptboot46 while read start size pos type attrs rest; do
/freebsd-12-stable/contrib/llvm-project/lldb/source/Utility/
H A DUUID.cpp99 llvm::StringRef rest = local
106 return str.size() - rest.size();
/freebsd-12-stable/tools/regression/sockets/kqueue/
H A Dkqueue.c62 fail(int error, const char *func, const char *socktype, const char *rest) argument
69 else if (rest == NULL)
73 printf("# %s(%s, %s): %s\n", func, socktype, rest,
79 fail_assertion(const char *func, const char *socktype, const char *rest, argument
88 else if (rest == NULL)
93 socktype, rest, assertion);
/freebsd-12-stable/usr.bin/rctl/
H A Drctl.c184 const char *subject, *textid, *rest; local
201 rest = copy;
203 rest = "";
225 ret = asprintf(&resolved, "%s:%d:%s", subject, (int)id, rest);
233 ret = asprintf(&resolved, "%s:%d:%s", subject, (int)id, rest);
235 ret = asprintf(&resolved, "%s:%s:%s", subject, textid, rest);
258 const char *subject, *textid, *rest; local
267 rest = rule;
269 rest = "";
288 ret = asprintf(&humanized, "%s:%s:%s", subject, textid, rest);
[all...]
/freebsd-12-stable/contrib/nvi/regex/
H A Dengine.c300 const RCHAR_T *rest; /* start of rest of string */ local
301 const RCHAR_T *tail; /* string unmatched by rest of RE */
352 rest = slow(m, sp, stp, ss, es);
353 assert(rest != NULL); /* it did match */
354 /* could the rest match the rest? */
355 tail = slow(m, rest, stop, es, stopst);
359 stp = rest - 1;
365 if (slow(m, sp, rest, ssu
[all...]
/freebsd-12-stable/lib/libc/regex/
H A Dengine.c427 const char *rest; /* start of rest of string */ local
428 const char *tail; /* string unmatched by rest of RE */
483 rest = walk(m, sp, stp, ss, es, false);
484 assert(rest != NULL); /* it did match */
485 /* could the rest match the rest? */
486 tail = walk(m, rest, stop, es, stopst, false);
490 stp = rest - 1;
496 if (walk(m, sp, rest, ssu
[all...]
/freebsd-12-stable/sys/dev/speaker/
H A Dspkr.c45 * also a rest() entry point to do pauses.
57 static void rest(int centisecs);
107 rest(int centisecs) function
113 * This is so other processes can execute while the rest is being
117 (void) printf("rest: %d\n", centisecs);
129 * Requires tone(), rest(), and endtone(). String play is not interruptible
217 rest(whole * snum / (value * sdenom));
224 (void) printf("playtone: pitch %d for %d ticks, rest for %d ticks\n",
230 rest(silence);
405 * endtone(), and rest() function
[all...]
/freebsd-12-stable/contrib/ntp/scripts/
H A Dplot_summary.in68 my ($result, @rest) = @_;
69 map { $result = $_ if ($_ < $result) } @rest;
76 my ($result, @rest) = @_;
77 map { $result = $_ if ($_ > $result) } @rest;

Completed in 279 milliseconds

12345