Searched refs:rest (Results 26 - 50 of 95) sorted by relevance

1234

/freebsd-current/crypto/heimdal/lib/hdb/
H A Dhdb.c278 const char **rest)
294 *rest = filename + len + 1;
364 * rest in `rest'.
369 find_method (const char *filename, const char **rest) argument
375 *rest = filename + strlen(h->prefix);
384 *rest = filename;
276 find_dynamic_method(krb5_context context, const char *filename, const char **rest) argument
/freebsd-current/crypto/openssl/crypto/perlasm/
H A Dppc-xlate.pl168 my @rest = @_;
169 my @subst = splice(@rest, 0, $num);
173 return (@subst, @rest);
/freebsd-current/contrib/ldns/
H A Dhost2wire.c32 ldns_rdf *rest; local
69 /* try again with the rest of the name. */
94 rest = ldns_dname_left_chop(name);
102 s = ldns_dname2buffer_wire_compress(buffer, rest, compression_data);
103 ldns_rdf_deep_free(rest);
/freebsd-current/usr.bin/vgrind/
H A Dvfontedpr.c137 goto rest;
144 goto rest;
158 goto rest;
208 rest:
/freebsd-current/contrib/netbsd-tests/lib/libc/stdio/
H A Dt_fmemopen.c514 off_t len, rest, i; local
522 rest = (off_t)t->n - len;
539 for (i = (off_t)1; i <= rest; ++i) {
575 off_t len, rest, i; local
583 rest = t->n - len;
601 ATF_CHECK(fseeko(fp, rest + 1, SEEK_END) == -1);
609 for (i = 1; i <= rest; ++i) {
688 off_t len, rest, i; local
696 rest = (off_t)t->n - len;
713 ATF_CHECK(fseeko(fp, rest
[all...]
/freebsd-current/stand/i386/libi386/
H A Dbiosdisk.c972 size_t blks, blkoff, bsize, bio_size, rest; local
1064 rest = size;
1073 if (rest < bsize)
1074 bsize = rest;
1092 bsize = min(bsize, rest);
1094 } else if (rest < bd->bd_sectorsize) {
1100 bsize = rest;
1125 rest -= bsize;
/freebsd-current/contrib/llvm-project/lld/COFF/
H A DDriverUtils.cpp568 StringRef rest; local
569 std::tie(e.name, rest) = arg.split(",");
590 while (!rest.empty()) {
592 std::tie(tok, rest) = rest.split(",");
945 SmallVector<const char *, 16> rest; local
966 rest.push_back(HasNul ? tok.data() : saver().save(tok).data());
974 result.args = ctx.optTable.ParseArgs(rest, missingIndex, missingCount);
/freebsd-current/contrib/ntp/scripts/
H A Dsummary.in109 my ($result, @rest) = @_;
110 map { $result = $_ if ($_ < $result) } @rest;
116 my ($result, @rest) = @_;
117 map { $result = $_ if ($_ > $result) } @rest;
/freebsd-current/lib/libtacplus/
H A Dtaclib.c1016 htonl(offsetof(struct tac_authen_start, rest[0]));
1028 htonl(offsetof(struct tac_authen_cont, rest[0]));
1040 h->srvr_pos = offsetof(struct tac_authen_reply, rest[0]);
1065 htonl(offsetof(struct tac_author_request, rest[0]));
1084 /* Add each AV pair, the size of each placed in areq->rest[current] */
1087 if (add_str_8(h, &areq->rest[current++],
1099 h->srvr_pos = offsetof(struct tac_author_response, rest[0]) +
1112 ares->rest[i]) == -1)
1137 h->request.length = htonl(offsetof(struct tac_acct_start, rest[0]));
1150 if (add_str_8(h, &as->rest[curren
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.cpp522 llvm::StringRef lhs, rest; local
523 std::tie(lhs, rest) = getToken(unwind_rules);
528 llvm::StringRef::size_type pos = rest.find(": ");
530 // No pair found, this means the rest of the string is a single expression.
532 return std::make_pair(lhs, rest);
536 pos = rest.rfind(' ', pos);
540 llvm::StringRef rhs = rest.take_front(pos);
541 unwind_rules = rest.drop_front(pos);
755 // Now process the rest of the assignments.
/freebsd-current/contrib/bmake/mk/
H A Dlibs.mk68 # lib.mk will do the rest
H A Dprogs.mk77 # prog.mk will do the rest
/freebsd-current/tools/build/
H A Dcheckstyle9.pl2339 my ($off, $dstat, $dcond, $rest);
2362 $rest = '';
2363 while ($off != 0 || ($cnt > 0 && $rest =~ /\\\s*$/)) {
2364 #print "ADDING cnt<$cnt> $off <" . substr($lines[$ln - 1], $off) . "> rest<$rest>\n";
2366 $rest .= substr($lines[$ln - 1], $off) . "\n";
2372 $rest =~ s/\\\n.//g;
2373 $rest =~ s/^\s*//s;
2374 $rest =~ s/\s*$//s;
2406 #print "REST<$rest> dsta
[all...]
/freebsd-current/contrib/bmake/mk/sys/
H A DSunOS.mk42 # the rest is common
/freebsd-current/contrib/bmake/unit-tests/
H A Dvarparse-undef-partial.mk15 # (see VarSubstExpr) and the rest of the expression is expanded as usual.
H A Dvar-op-assign.mk76 # ignoring all the rest.
H A Ddirective-include.mk32 .include "/dev/null" and ignore anything in the rest of the line.
/freebsd-current/crypto/heimdal/kpasswd/
H A Dkpasswdd.c73 krb5_data *rest)
86 len = 6 + ap_rep_len + rest->length;
114 iov[2].iov_base = rest->data;
115 iov[2].iov_len = rest->length;
69 send_reply(int s, struct sockaddr *sa, int sa_size, krb5_data *ap_rep, krb5_data *rest) argument
/freebsd-current/crypto/openssl/util/perl/OpenSSL/
H A DUtil.pm194 # The rest is VMS specific
224 OPTS is the rest of the arguments, expected to be pairs formed with C<< => >>.
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPT.cpp494 StringRef rest(reinterpret_cast<const char *>(cpu_info->data()),
496 while (!rest.empty()) {
498 std::tie(line, rest) = rest.split('\n');
/freebsd-current/usr.sbin/rtadvctl/
H A Drtadvctl.c802 struct timespec *rest; local
804 rest = rtadvd_timer_rest(pfx->pfx_timer);
805 if (rest) { /* XXX: what if not? */
806 printf(" expire=%s", sec2str(rest->tv_sec, ssbuf));
/freebsd-current/tools/pkgbase/
H A Dmetalog_reader.lua201 local filename, rest = line:match('^(%S+) (.+)$')
204 for attrpair in rest:gmatch('[^ ]+') do
/freebsd-current/share/mk/
H A Dbsd.progs.mk60 # prog.mk will do the rest
/freebsd-current/contrib/libedit/
H A Dhistory.c61 #define FUN(prefix, rest) prefix ## _ ## rest
79 #define FUN(prefix, rest) prefix ## _w ## rest
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A Dregengine.inc344 const char *rest; /* start of rest of string */
345 const char *tail; /* string unmatched by rest of RE */
395 rest = slow(m, sp, stp, ss, es);
396 assert(rest != NULL); /* it did match */
397 /* could the rest match the rest? */
398 tail = slow(m, rest, stop, es, stopst);
402 stp = step_back(m->g, sp, rest, es, stopst);
408 if (slow(m, sp, rest, ssu
[all...]

Completed in 376 milliseconds

1234