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

1234

/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_mac.cpp121 const char *rest = trim; local
123 rest = ExtractTokenUpToDelimiter(rest, " (in ", &symbol_name);
124 if (rest[0] == '\0') {
134 rest = ExtractTokenUpToDelimiter(rest, ") ", out_module);
136 if (rest[0] == '(') {
138 rest++;
139 rest = ExtractTokenUpToDelimiter(rest, "
[all...]
/freebsd-current/usr.sbin/ppp/
H A Dtimer.c99 * need to adjust TimerList->rest (yet).
102 ticks = RESTVAL(itimer) - TimerList->rest;
106 if (ticks + t->rest >= tp->load)
108 ticks += t->rest;
113 tp->rest = tp->load - ticks;
117 "timer[%p], delta = %ld\n", tp->name, tp, t->name, t, tp->rest);
130 t->rest -= tp->rest;
164 t->next->rest += RESTVAL(itimer); /* t (tp) was the first in the list */
166 t->next->rest
239 long rest; local
[all...]
H A Dtimer.h37 u_long rest; /* Ticks to expire */ member in struct:pppTimer
/freebsd-current/lib/libtacplus/
H A Dtaclib_private.h75 unsigned char rest[1]; member in struct:tac_authen_start
83 unsigned char rest[1]; member in struct:tac_authen_reply
90 unsigned char rest[1]; member in struct:tac_authen_cont
102 unsigned char rest[1]; member in struct:tac_author_request
110 unsigned char rest[1]; member in struct:tac_author_response
123 unsigned char rest[1]; member in struct:tac_acct_start
130 unsigned char rest[1]; member in struct:tac_acct_reply
/freebsd-current/contrib/kyua/engine/
H A Datf_result.cpp100 /// \param rest The rest of the line after the status name.
104 /// \throw format_error If the result is invalid (i.e. rest is invalid).
108 parse_without_reason(const std::string& status, const std::string& rest) argument
110 if (!rest.empty())
120 /// \param rest The rest of the line after the status name.
124 /// \throw format_error If the result is invalid (i.e. rest is invalid).
129 parse_with_reason(const std::string& status, const std::string& rest) argument
133 if (rest
182 parse_with_reason_and_arg(const std::string& status, const std::string& rest) argument
191 status % rest); local
302 const std::string rest = data.second.substr(status.length()); local
[all...]
/freebsd-current/sys/contrib/openzfs/scripts/
H A Dcstyle.pl715 # The rest of this file contains the code for the continuation checking
755 my ($pre_tabs, $label, $rest) = ($1, $2, $3);
760 $_ .= ("\t" x (length($label) / 8)).$rest;
843 my $rest = $_; # keeps the remainder of the line
857 # rest contains the remainder of the line
859 $rest =~ s/^$rxp//;
884 if ($rest =~ /^\s*\{?$/) {
888 if ($rest =~ /^\s*;$/) {
907 if ($rest =~ /^$/) {
925 if ($rest
[all...]
/freebsd-current/contrib/bmake/unit-tests/
H A Dvarmod-loop-delete.mk15 VAR= ${:U:@VAR@@} rest of the value
19 # expect+1: while evaluating variable "VAR": while evaluating "${:U:@VAR@@} rest of the value": Cannot delete variable "VAR" while it is used
21 .if ${EVAL} != " rest of the value"
25 VAR= ${:U:@VAR@@} rest of the value
/freebsd-current/crypto/openssl/crypto/bio/
H A Dbss_bio.c112 size_t rest; local
154 rest = size;
156 assert(rest > 0);
160 assert(rest <= peer_b->len);
161 if (peer_b->offset + rest <= peer_b->size)
162 chunk = rest;
179 assert(chunk == rest);
182 rest -= chunk;
184 while (rest);
271 size_t rest; local
[all...]
/freebsd-current/contrib/kyua/utils/fs/
H A Dpath.cpp276 /// \param rest The path to concatenate to this one. Cannot be absolute.
284 fs::path::operator/(const fs::path& rest) const
286 if (rest.is_absolute())
287 throw fs::join_error(_repr, rest._repr,
289 return fs::path(_repr + '/' + rest._repr);
/freebsd-current/libexec/rc/rc.d/
H A Dgptboot45 while read start size pos type attrs rest; do
/freebsd-current/contrib/llvm-project/lldb/source/Utility/
H A DUUID.cpp104 llvm::StringRef rest = UUID::DecodeUUIDBytesFromString(p, bytes); local
108 if (!rest.empty() || bytes.empty())
/freebsd-current/tools/regression/sockets/kqueue/
H A Dkqueue.c60 fail(int error, const char *func, const char *socktype, const char *rest) argument
67 else if (rest == NULL)
71 printf("# %s(%s, %s): %s\n", func, socktype, rest,
77 fail_assertion(const char *func, const char *socktype, const char *rest, argument
86 else if (rest == NULL)
91 socktype, rest, assertion);
/freebsd-current/usr.bin/rctl/
H A Drctl.c178 const char *subject, *textid, *rest; local
195 rest = copy;
197 rest = "";
219 ret = asprintf(&resolved, "%s:%d:%s", subject, (int)id, rest);
227 ret = asprintf(&resolved, "%s:%d:%s", subject, (int)id, rest);
229 ret = asprintf(&resolved, "%s:%s:%s", subject, textid, rest);
252 const char *subject, *textid, *rest; local
261 rest = rule;
263 rest = "";
282 ret = asprintf(&humanized, "%s:%s:%s", subject, textid, rest);
[all...]
/freebsd-current/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-current/lib/libc/regex/
H A Dengine.c422 const char *rest; /* start of rest of string */ local
423 const char *tail; /* string unmatched by rest of RE */
478 rest = walk(m, sp, stp, ss, es, false);
479 assert(rest != NULL); /* it did match */
480 /* could the rest match the rest? */
481 tail = walk(m, rest, stop, es, stopst, false);
485 stp = rest - 1;
491 if (walk(m, sp, rest, ssu
[all...]
/freebsd-current/sys/dev/speaker/
H A Dspkr.c42 * also a rest() entry point to do pauses.
54 static void rest(int centisecs);
98 rest(int centisecs) function
104 * This is so other processes can execute while the rest is being
108 (void) printf("rest: %d\n", centisecs);
120 * Requires tone(), rest(), and endtone(). String play is not interruptible
202 rest(whole * snum / (value * sdenom));
209 (void) printf("playtone: pitch %d for %d ticks, rest for %d ticks\n",
215 rest(silence);
390 * endtone(), and rest() function
[all...]
/freebsd-current/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;
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_clear/
H A Dzpool_clear_001_pos.ksh75 typeset vdev _ c_read c_write c_cksum rest
76 while read -r vdev _ c_read c_write c_cksum rest; do
/freebsd-current/usr.sbin/pmcstudy/
H A Deval_expr.c580 struct expression *op, *other_half, *rest; local
600 rest = gather_exp_to_paren_close(other_half->next, &val2);
603 rest = other_half->next;
606 rest = other_half->next;
635 if (rest == NULL) {
641 if ((rest->type == TYPE_PARN_CLOSE) && (initial_call == 0)) {
643 *lastone = rest->next;
651 * we need to proceed with the rest of it.
654 op = rest;
/freebsd-current/sys/contrib/openzfs/module/zstd/lib/common/
H A Dentropy_common.c202 U32 const rest = total - weightTotal; local
203 U32 const verif = 1 << BIT_highbit32(rest);
204 U32 const lastWeight = BIT_highbit32(rest) + 1;
205 if (verif != rest) return ERROR(corruption_detected); /* last value must be a clean power of 2 */
/freebsd-current/contrib/libxo/xolint/
H A Dxolint.pl635 my($text, $ff, $fc, $rest);
636 for ($in = $format; $in; $in = $rest) {
637 ($text, $ff, $fc, $rest) =
641 ($text, $ff, $rest) = ($in =~ /^([^%]*)(%%)(.*)$/);
/freebsd-current/crypto/openssl/util/perl/OpenSSL/
H A DParseC.pm138 my $rest = $2;
140 print STDERR "DEBUG[",$opts{debug_type},"]: Matching '$rest' with '$re'\n"
142 if ($rest =~ m/$re/) {
143 my @rest = split /\|\|/, $rest;
144 shift @rest;
145 foreach (@rest) {
157 my $rest = $2;
159 print STDERR "DEBUG[",$opts{debug_type},"]: Matching '$rest' with '$re'\n"
161 if ($rest
[all...]
/freebsd-current/contrib/libedit/
H A Dtokenizer.c71 #define FUN(prefix, rest) prefix ## _ ## rest
78 #define FUN(prefix, rest) prefix ## _w ## rest
/freebsd-current/sys/contrib/zstd/lib/common/
H A Dentropy_common.c320 U32 const rest = total - weightTotal; local
321 U32 const verif = 1 << BIT_highbit32(rest);
322 U32 const lastWeight = BIT_highbit32(rest) + 1;
323 if (verif != rest) return ERROR(corruption_detected); /* last value must be a clean power of 2 */
/freebsd-current/tools/tools/git/
H A Dmfc-candidates.sh141 while read hash rest; do

Completed in 219 milliseconds

1234