Home
last modified time | relevance | path

Searched full:rest (Results 1 – 25 of 2480) sorted by relevance

12345678910>>...100

/freebsd-src/contrib/bmake/unit-tests/
H A Dvarmod-range.mk65 # expect+2: while evaluating "${:U:range=x}Rest" != "Rest"" with value "": Invalid number "x}Rest" != "Rest"" for ':range' modifier
66 # expect+1: Malformed conditional ("${:U:range=x}Rest" != "Rest")
67 .if "${:U:range=x}Rest" != "Rest"
76 # expect+2: while evaluating "${:U:range=0x0}Rest" != "Rest"" wit
[all...]
H A Dvarmod-range.exp2 make: "varmod-range.mk" line 67: while evaluating "${:U:range=x}Rest" != "Rest"" with value "": Invalid number "x}Rest" != "Rest"" for ':range' modifier
3 make: "varmod-range.mk" line 67: Malformed conditional ("${:U:range=x}Rest" != "Rest")
4 make: "varmod-range.mk" line 78: while evaluating "${:U:range=0x0}Rest" != "Rest"" with value "1": Unknown modifier "x0"
5 make: "varmod-range.mk" line 78: Malformed conditional ("${:U:range=0x0}Rest" != "Rest")
[all...]
H A Dvarmod-loop-delete.mk15 VAR= ${:U:@VAR@@} rest of the value
19 # expect+1: while evaluating variable "VAR" with value "${:U:@VAR@@} rest of the value": while evaluating "${:U:@VAR@@} rest of the value" with 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-src/usr.sbin/ppp/
H A Dtimer.c99 * need to adjust TimerList->rest (yet). in timer_Start()
102 ticks = RESTVAL(itimer) - TimerList->rest; in timer_Start()
106 if (ticks + t->rest >= tp->load) in timer_Start()
108 ticks += t->rest; in timer_Start()
113 tp->rest = tp->load - ticks; in timer_Start()
117 "timer[%p], delta = %ld\n", tp->name, tp, t->name, t, tp->rest); in timer_Start()
130 t->rest -= tp->rest; in timer_Start()
164 t->next->rest += RESTVAL(itimer); /* t (tp) was the first in the list */ in StopTimerNoBlock()
166 t->next->rest += t->rest; in StopTimerNoBlock()
167 if (!pt && t->next->rest > 0) /* t->next is now the first in the list */ in StopTimerNoBlock()
[all …]
/freebsd-src/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) in parse_without_reason() argument
110 if (!rest.empty()) in parse_without_reason()
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) in parse_with_reason() argument
133 if (rest.length() < 3 || rest.substr(0, 2) != ": ") in parse_with_reason()
136 const std::string reason = rest.substr(2); in parse_with_reason()
175 /// \param rest The rest of the line after the status name.
[all …]
/freebsd-src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_mac.cpp121 const char *rest = trim; in ParseCommandOutput() local
123 rest = ExtractTokenUpToDelimiter(rest, " (in ", &symbol_name); in ParseCommandOutput()
124 if (rest[0] == '\0') { in ParseCommandOutput()
134 rest = ExtractTokenUpToDelimiter(rest, ") ", out_module); in ParseCommandOutput()
136 if (rest[0] == '(') { in ParseCommandOutput()
138 rest++; in ParseCommandOutput()
139 rest = ExtractTokenUpToDelimiter(rest, ":", out_file); in ParseCommandOutput()
141 rest = ExtractTokenUpToDelimiter(rest, ")", &extracted_line_number); in ParseCommandOutput()
145 } else if (rest[0] == '+') { in ParseCommandOutput()
146 rest += 2; in ParseCommandOutput()
[all …]
/freebsd-src/contrib/llvm-project/clang/include/clang/AST/
H A DDeclContextInternals.h60 NewTail = &Node->Rest; in erase_if()
61 List = Node->Rest; in erase_if()
66 List = N->Rest; in erase_if()
70 // want to keep (if any) will be of the form DeclListNode(D, <rest>); in erase_if()
115 List = ToDealloc->Rest;
200 Node->Rest = DeclsAsList; in replaceExternalDecls()
211 Node->Rest = DeclsAsList; in getLookupResult()
240 Node->Rest = D; in addOrReplaceDecl()
250 N = N->Rest.dyn_cast<DeclListNode *>()) { in addOrReplaceDecl()
255 if (auto *ND = N->Rest in addOrReplaceDecl()
[all...]
/freebsd-src/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/
H A DRefactoringActionRulesInternal.h29 void ignoreError(Expected<FirstT> &First, Expected<RestT> &... Rest) { in ignoreError() argument
32 ignoreError(Rest...); in ignoreError()
38 llvm::Error findError(Expected<FirstT> &First, Expected<RestT> &... Rest) { in findError() argument
40 ignoreError(Rest...); in findError()
43 return findError(Rest...); in findError()
72 const FirstT &First, const RestT &... Rest) { in visitRefactoringOptionsImpl()
83 return visitRefactoringOptionsImpl(Visitor, Rest...); in visitRefactoringOptionsImpl()
96 template <typename Base, typename First, typename... Rest>
98 HasBaseOf<Base, Rest...>::value,
106 template <typename Base, typename First, typename... Rest>
[all …]
/freebsd-src/contrib/nvi/regex/
H A Dengine.c300 const RCHAR_T *rest; /* start of rest of string */ in dissect() local
301 const RCHAR_T *tail; /* string unmatched by rest of RE */ in dissect()
352 rest = slow(m, sp, stp, ss, es); in dissect()
353 assert(rest != NULL); /* it did match */ in dissect()
354 /* could the rest match the rest? */ in dissect()
355 tail = slow(m, rest, stop, es, stopst); in dissect()
359 stp = rest - 1; in dissect()
365 if (slow(m, sp, rest, ssub, esub) != NULL) { in dissect()
366 dp = dissect(m, sp, rest, ssub, esub); in dissect()
367 assert(dp == rest); in dissect()
[all …]
/freebsd-src/share/man/man4/
H A Dspkr.453 A frequency of zero is interpreted as a rest.
84 last 1/16th second being `rest time'.
130 being 1 to 84 or 0 for a rest of current time value.
146 Pause (rest), with
182 the note's value is rest time.
185 for legato (no rest space) or
187 for staccato (1/4 rest space).
202 This causes the normal micro-rest after the note to be filled in, slurring it
/freebsd-src/lib/libc/regex/
H A Dengine.c422 const char *rest; /* start of rest of string */ in dissect() local
423 const char *tail; /* string unmatched by rest of RE */ in dissect()
478 rest = walk(m, sp, stp, ss, es, false); in dissect()
479 assert(rest != NULL); /* it did match */ in dissect()
480 /* could the rest match the rest? */ in dissect()
481 tail = walk(m, rest, stop, es, stopst, false); in dissect()
485 stp = rest - 1; in dissect()
491 if (walk(m, sp, rest, ssub, esub, false) != NULL) { in dissect()
492 dp = dissect(m, sp, rest, ssub, esub); in dissect()
493 assert(dp == rest); in dissect()
[all …]
/freebsd-src/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, ssub, esub) != NULL) {
409 const char *dp = dissect(m, sp, rest, ssub, esub);
411 assert(dp == rest);
[all …]
/freebsd-src/lib/libtacplus/
H A Dtaclib_private.h75 unsigned char rest[1]; member
83 unsigned char rest[1]; member
90 unsigned char rest[1]; member
102 unsigned char rest[1]; member
110 unsigned char rest[1]; member
123 unsigned char rest[1]; member
130 unsigned char rest[1]; member
/freebsd-src/contrib/openresolv/
H A Dconfigure61 REST=${HOST#*-}
62 if [ "$CPU" != "$REST" ]; then
63 VENDOR=${REST%%-*}
64 REST=${REST#*-}
65 if [ "$VENDOR" != "$REST" ]; then
67 OS=${REST%%-*}
/freebsd-src/crypto/openssl/crypto/bio/
H A Dbss_bio.c112 size_t rest; in bio_read() local
154 rest = size; in bio_read()
156 assert(rest > 0); in bio_read()
160 assert(rest <= peer_b->len); in bio_read()
161 if (peer_b->offset + rest <= peer_b->size) in bio_read()
162 chunk = rest; in bio_read()
179 assert(chunk == rest); in bio_read()
182 rest -= chunk; in bio_read()
184 while (rest); in bio_read()
271 size_t rest; in bio_write() local
[all …]
/freebsd-src/sys/dev/speaker/
H A Dspkr.c42 * also a rest() entry point to do pauses.
54 static void rest(int centisecs);
95 * Rest for given number of centisecs
98 rest(int centisecs) in rest() function
104 * This is so other processes can execute while the rest is being in rest()
108 (void) printf("rest: %d\n", centisecs); in rest()
120 * Requires tone(), rest(), and endtone(). String play is not interruptible
202 rest(whole * snum / (value * sdenom)); in playtone()
209 (void) printf("playtone: pitch %d for %d ticks, rest for %d ticks\n", in playtone()
215 rest(silence); in playtone()
[all …]
/freebsd-src/usr.bin/asa/
H A Dasa.153 Output the rest of the line without change.
57 character before printing the rest of the line.
61 character before printing the rest of the line.
67 before printing the rest of the line.
/freebsd-src/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DArena.cpp203 llvm::StringRef Rest = In; in parseFormula() local
204 auto *Result = parse(*this, Rest); in parseFormula()
206 return llvm::make_error<FormulaParseError>(In, In.size() - Rest.size()); in parseFormula()
207 Rest = Rest.ltrim(); in parseFormula()
208 if (!Rest.empty()) // parse didn't consume all the input in parseFormula()
209 return llvm::make_error<FormulaParseError>(In, In.size() - Rest.size()); in parseFormula()
/freebsd-src/sys/contrib/device-tree/Bindings/clock/
H A Darm,syscon-icst.yaml37 Integrator/AP 22 1 Bit 8 0, rest variable
40 Integrator/AP 46 3 Bit 8 0, rest variable
46 Integrator/CP 22 variable Bit 8 0, rest variable
49 Integrator/CP 22 variable Bit 8 0, rest variable
/freebsd-src/contrib/llvm-project/llvm/lib/IR/
H A DDataLayout.cpp289 StringRef &Rest = Split.second; // The rest of the string. in parseSpecifier() local
293 if (Error Err = ::split(Rest, ':', Split)) in parseSpecifier()
295 Rest = Split.second; in parseSpecifier()
302 } while (!Rest.empty()); in parseSpecifier()
331 if (Rest.empty()) in parseSpecifier()
334 if (Error Err = ::split(Rest, ':', Split)) in parseSpecifier()
343 if (Rest.empty()) in parseSpecifier()
346 if (Error Err = ::split(Rest, ':', Split)) in parseSpecifier()
360 if (!Rest in parseSpecifier()
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheck.cpp1539 StringRef Rest = Buffer.drop_front(Prefix.size()); in FindCheckType()
1542 if (Rest.consume_front(":")) in FindCheckType()
1543 return {Check::CheckComment, Rest}; in FindCheckType()
1550 if (Rest.consume_front(":")) in FindCheckType()
1551 return {Ret, Rest}; in FindCheckType()
1552 if (!Rest.consume_front("{")) in FindCheckType()
1558 Rest = Rest.ltrim(); in FindCheckType()
1559 if (Rest.consume_front("LITERAL")) in FindCheckType()
1562 return {Check::CheckNone, Rest}; in FindCheckType()
1537 StringRef Rest = Buffer.drop_front(Prefix.size()); FindCheckType() local
[all...]
/freebsd-src/crypto/openssl/doc/internal/man3/
H A Dossl_rsa_get0_all_params.pod39 the I<primes> stack contains I<p>, I<q>, and then the rest of the primes
44 the I<exps> stack contains I<dP>, I<dQ>, and then the rest of the exponents
49 the I<coeffs> stack contains I<qInv>, and then the rest of the coefficients
/freebsd-src/sys/contrib/openzfs/scripts/
H A Dcstyle.pl735 # The rest of this file contains the code for the continuation checking
775 my ($pre_tabs, $label, $rest) = ($1, $2, $3);
780 $_ .= ("\t" x (length($label) / 8)).$rest;
863 my $rest = $_; # keeps the remainder of the line
877 # rest contains the remainder of the line
879 $rest =~ s/^$rxp//;
904 if ($rest =~ /^\s*\{?$/) {
908 if ($rest =~ /^\s*;$/) {
927 if ($rest =~ /^$/) {
945 if ($rest
[all...]
/freebsd-src/usr.bin/rctl/
H A Drctl.c178 const char *subject, *textid, *rest; in expand_rule() local
195 rest = copy; in expand_rule()
197 rest = ""; in expand_rule()
219 ret = asprintf(&resolved, "%s:%d:%s", subject, (int)id, rest); in expand_rule()
227 ret = asprintf(&resolved, "%s:%d:%s", subject, (int)id, rest); in expand_rule()
229 ret = asprintf(&resolved, "%s:%s:%s", subject, textid, rest); in expand_rule()
252 const char *subject, *textid, *rest; in humanize_ids() local
261 rest = rule; in humanize_ids()
263 rest = ""; in humanize_ids()
282 ret = asprintf(&humanized, "%s:%s:%s", subject, textid, rest); in humanize_ids()
/freebsd-src/contrib/openpam/doc/man/
H A Dpam.conf.599 flow of control through (and the final result of) the rest of the
105 If it fails, the rest of the chain still runs, but the final result
114 If it fails, the rest of the chain still runs, but the final result
119 If it fails, the rest of the chain still runs, but the final result

12345678910>>...100