Home
last modified time | relevance | path

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

12345678910>>...102

/freebsd/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/contrib/bmake/unit-tests/
H A Dvarmod-range.mk65 # expect+1: Invalid number "x}Rest" != "Rest"" for modifier ":range"
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 Dvarmod-range.exp3 make: varmod-range.mk:66: Invalid number "x}Rest" != "Rest"" for modifier ":range"
4 while evaluating "${:U:range=x}Rest" != "Rest"" with value ""
6 while evaluating "${:U:range=0x0}Rest" != "Rest"" with value "1"
H A Dvarmod-loop-delete.exp3 while evaluating "${:U:@VAR@@} rest of the value" with value ""
4 while evaluating variable "VAR" with value "${:U:@VAR@@} rest of the value"
10 : delete-active-variable-in-target: ' rest of the value'
H A Dvarmod-loop-delete.mk26 VAR= ${:U:@VAR@@} rest of the value
32 . if ${EVAL} != " rest of the value"
39 VAR= ${:U:@VAR@@} rest of the value
50 # expect: : delete-active-variable-in-target: ' rest of the value'
/freebsd/contrib/lyaml/lib/lyaml/
H A Dimplicit.lua109 gsub(value, '^([+-]?)0b_*([01][01_]+)$', function(sign, rest)
111 gsub(rest, '_*(.)', function(digit)
129 gsub(value, '^([+-]?)0_*([0-7][0-7_]*)$', function(sign, rest)
131 gsub(rest, '_*(.)', function(digit)
149 gsub(value, '^([+-]?)_*([0-9][0-9_]*)$', function(sign, rest)
150 rest = gsub(rest, '_', '')
151 if rest == '0' or #rest > 1 or sub(rest, 1, 1) ~= '0' then
152 r = int(rest)
169 gsub(value, '^([+-]?)(0x_*[0-9a-fA-F][0-9a-fA-F_]*)$', function(sign, rest)
170 rest = gsub(rest, '_', '')
[all …]
/freebsd/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/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/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; in MaybeDeallocList()
199 Node->Rest = DeclsAsList; in replaceExternalDecls()
210 Node->Rest = DeclsAsList; in replaceExternalDecls()
239 Node->Rest = D; in addOrReplaceDecl()
249 N = N->Rest.dyn_cast<DeclListNode *>()) { in addOrReplaceDecl()
254 if (auto *ND = N->Rest.dyn_cast<NamedDecl *>()) { in addOrReplaceDecl()
[all …]
/freebsd/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/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/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/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/share/man/man4/
H A Dspkr.450 A frequency of zero is interpreted as a rest.
88 last 1/16th second being `rest time'.
135 being 1 to 84 or 0 for a rest of current time value.
151 Pause (rest), with
187 the note's value is rest time.
190 for legato (no rest space) or
192 for staccato (1/4 rest space).
207 This causes the normal micro-rest after the note to be filled in, slurring it
/freebsd/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/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/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()
183 } while (rest); in bio_read()
270 size_t rest; in bio_write() local
[all …]
/freebsd/.github/workflows/
H A Dchecklist.yml28 const comments = await github.paginate(github.rest.issues.listComments, {
34 const commits = await github.paginate(github.rest.pulls.listCommits, {
43 const { data: ownerData } = await github.rest.repos.getContent({
62 const { data: rulesData } = await github.rest.repos.getContent({
115 const { data: files } = await github.rest.pulls.listFiles({
162 …let comment_func = comment_id == -1 ? github.rest.issues.createComment : github.rest.issues.update…
188 github.rest.issues.updateComment({
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDataLayout.cpp466 StringRef Rest = Spec.drop_front(2); in parseSpecification() local
468 // Drop the first ':', then split the rest of the string the usual way. in parseSpecification()
469 if (!Rest.consume_front(":")) in parseSpecification()
472 for (StringRef Str : split(Rest, ':')) { in parseSpecification()
483 // The rest of the specifiers are single-character. in parseSpecification()
496 StringRef Rest = Spec.drop_front(); in parseSpecification() local
504 if (!Rest.empty()) in parseSpecification()
511 for (StringRef Str : split(Rest, ':')) { in parseSpecification()
520 if (Rest.empty()) in parseSpecification()
523 if (Error Err = parseAlignment(Rest, Alignment, "stack natural")) in parseSpecification()
[all …]
/freebsd/sys/dev/speaker/
H A Dspkr.c42 * also a rest() entry point to do pauses.
55 static void rest(int centisecs);
100 * Rest for given number of centisecs
103 rest(int centisecs) in rest() function
109 * This is so other processes can execute while the rest is being in rest()
113 (void) printf("rest: %d\n", centisecs); in rest()
125 * Requires tone(), rest(), and endtone(). String play is not interruptible
213 rest(whole * snum / (value * sdenom)); in playtone()
220 (void) printf("playtone: pitch %d for %d ticks, rest for %d ticks\n", in playtone()
226 rest(silence); in playtone()
[all …]
/freebsd/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/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/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/contrib/llvm-project/llvm/lib/TextAPI/
H A DUtils.cpp138 StringRef Name, Rest; in isPrivateLibrary() local
139 std::tie(Name, Rest) = in isPrivateLibrary()
143 if (IsSymLink && Rest == "framework") in isPrivateLibrary()
154 return !(Rest.starts_with("framework/") && in isPrivateLibrary()
155 (Rest.ends_with(Name) || Rest.ends_with((Name + ".tbd").str()) || in isPrivateLibrary()
156 (IsSymLink && Rest.ends_with("Current")))); in isPrivateLibrary()
/freebsd/tests/sys/sys/
H A Dqueue_test.c154 struct type ## _ids rest; \
158 TYPE ## _SPLIT_AFTER(type, e, &rest, ie_entry); \
160 type ## _check(&rest, 50, 50); \
161 QUEUE_TESTS_ ## TYPE ## _CONCAT(type, &rest); \
162 ATF_REQUIRE_MSG(TYPE ## _EMPTY(&rest), \
163 "'rest' not empty after concat"); \

12345678910>>...102