/freebsd/usr.sbin/ppp/ |
H A D | timer.c | 99 * 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/contrib/bmake/unit-tests/ |
H A D | varmod-range.mk | 65 # expect+1: Invalid number "x}Rest" != "Rest"" for ':range' modifier 66 .if "${:U:range=x}Rest" != "Rest" 76 .if "${:U:range=0x0}Rest" != "Rest" 85 #.if "${:U:range=18446744073709551619}Rest" != "Rest" 93 .if "${a b c:L:rang}Rest" != "Rest" 101 .if "${a b c:L:rango}Rest" != "Rest" 109 .if "${a b c:L:ranger}Rest" != "Rest"
|
H A D | varmod-range.exp | 2 make: "varmod-range.mk" line 66: Invalid number "x}Rest" != "Rest"" for ':range' modifier 3 while evaluating "${:U:range=x}Rest" != "Rest"" with value "" 5 while evaluating "${:U:range=0x0}Rest" != "Rest"" with value "1"
|
H A D | varmod-loop-delete.mk | 15 VAR= ${:U:@VAR@@} rest of the value 21 .if ${EVAL} != " rest of the value" 25 VAR= ${:U:@VAR@@} rest of the value
|
/freebsd/contrib/kyua/engine/ |
H A D | atf_result.cpp | 100 /// \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/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_symbolizer_mac.cpp | 121 const char *rest = trim; in ParseCommandOutput() 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, " in ParseCommandOutput() 118 const char *rest = trim; ParseCommandOutput() local [all...] |
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | DeclContextInternals.h | 60 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; in MaybeDeallocList() 200 Node->Rest = DeclsAsList; in replaceExternalDecls() 211 Node->Rest = DeclsAsList; in replaceExternalDecls() 240 Node->Rest = D; in addOrReplaceDecl() 250 N = N->Rest.dyn_cast<DeclListNode *>()) { in addOrReplaceDecl() 255 if (auto *ND = N->Rest.dyn_cast<NamedDecl *>()) { in addOrReplaceDecl() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/ |
H A D | RefactoringActionRulesInternal.h | 29 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/contrib/nvi/regex/ |
H A D | engine.c | 300 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/share/man/man4/ |
H A D | spkr.4 | 53 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/contrib/llvm-project/llvm/lib/Support/ |
H A D | regengine.inc | 344 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/lib/libc/regex/ |
H A D | engine.c | 422 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/contrib/openresolv/ |
H A D | configure | 61 REST=${HOST#*-} 62 if [ "$CPU" != "$REST" ]; then 63 VENDOR=${REST%%-*} 64 REST=${REST#*-} 65 if [ "$VENDOR" != "$REST" ]; then 67 OS=${REST%%-*}
|
/freebsd/lib/libtacplus/ |
H A D | taclib_private.h | 75 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/crypto/openssl/crypto/bio/ |
H A D | bss_bio.c | 112 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/sys/dev/speaker/ |
H A D | spkr.c | 42 * 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/.github/workflows/ |
H A D | checklist.yml | 27 const comments = await github.paginate(github.rest.issues.listComments, { 33 const commits = await github.paginate(github.rest.pulls.listCommits, { 87 …let comment_func = comment_id == -1 ? github.rest.issues.createComment : github.rest.issues.update… 100 github.rest.issues.updateComment({
|
/freebsd/usr.bin/asa/ |
H A D | asa.1 | 53 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/contrib/llvm-project/llvm/lib/IR/ |
H A D | DataLayout.cpp | 289 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.empty()) { in parseSpecifier() 361 if (Error Err = ::split(Rest, ':', Split)) in parseSpecifier() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/clock/ |
H A D | arm,syscon-icst.yaml | 37 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/contrib/llvm-project/llvm/lib/TextAPI/ |
H A D | Utils.cpp | 135 StringRef Name, Rest; in isPrivateLibrary() local 136 std::tie(Name, Rest) = in isPrivateLibrary() 140 if (IsSymLink && Rest == "framework") in isPrivateLibrary() 151 return !(Rest.starts_with("framework/") && in isPrivateLibrary() 152 (Rest.ends_with(Name) || Rest.ends_with((Name + ".tbd").str()) || in isPrivateLibrary() 153 (IsSymLink && Rest.ends_with("Current")))); in isPrivateLibrary()
|
/freebsd/contrib/llvm-project/llvm/lib/FileCheck/ |
H A D | FileCheck.cpp | 1539 StringRef Rest = Buffer.drop_front(Prefix.size()); in FindCheckType() local 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() 1564 Rest = Rest.ltrim(); in FindCheckType() [all …]
|
/freebsd/sys/contrib/openzfs/scripts/ |
H A D | cstyle.pl | 735 # 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/usr.bin/rctl/ |
H A D | rctl.c | 178 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/crypto/openssl/util/perl/OpenSSL/ |
H A D | ParseC.pm | 138 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 =~ m/$re/) { 162 my @rest = split /\&\&/, $rest; [all …]
|