Searched refs:period (Results 126 - 150 of 186) sorted by path

12345678

/freebsd-11-stable/usr.sbin/ppp/
H A Dcommand.c1621 log_Printf(LogWARN, "%ld: Invalid FSM retry period - min %d\n",
1728 log_Printf(LogWARN, "autoload: %s: Invalid throughput period\n",
1736 arg->bundle->ncp.mp.cfg.autoload.period = v3;
2072 log_Printf(LogWARN, "%ld: Invalid lqr period - min %d\n",
2191 log_Printf(LogWARN, "%ld: Invalid CBCP FSM retry period - min %d\n",
2425 "LQR period", "set lqr/echo period value", (const void *)VAR_LQRPERIOD},
H A Dlcp.c89 u_int32_t period; /* Reporting interval */ member in struct:lqrreq
197 prompt_Printf(arg->prompt, " LQR period = %us, ",
943 request, ntohs(req.proto), (u_long)ntohl(req.period) * 10);
950 lcp->his_lqrperiod = ntohl(req.period);
953 req.period = htonl(lcp->his_lqrperiod);
958 lcp->want_lqrperiod = ntohl(req.period);
H A Dlqr.c273 int period; local
292 period = lcp->want_lqrperiod ?
301 period / 100, period % 100);
302 physical->hdlc.lqm.timer.load = period * SECTICKS / 100;
H A Dmp.c220 if (mp->link.stats.total.SamplePeriod != mp->cfg.autoload.period) {
222 throughput_init(&mp->link.stats.total, mp->cfg.autoload.period);
235 if (mp->link.stats.total.SamplePeriod != mp->cfg.autoload.period)
261 mp->cfg.autoload.period = SAMPLE_PERIOD;
263 throughput_init(&mp->link.stats.total, mp->cfg.autoload.period);
334 throughput_init(&mp->link.stats.total, mp->cfg.autoload.period);
894 " period %d secs\n", mp->cfg.autoload.min,
895 mp->cfg.autoload.max, mp->cfg.autoload.period);
H A Dmp.h105 int period; /* link->throughput sample period */ member in struct:mp::__anon8878::__anon8879
H A Dthroughput.c48 throughput_init(struct pppThroughput *t, int period) argument
51 t->SamplePeriod = period;
53 calloc(period, sizeof *t->in.SampleOctets);
56 calloc(period, sizeof *t->out.SampleOctets);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h1735 K == tok::period || K == tok::arrow ||
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DFormatToken.h408 return isOneOf(tok::arrow, tok::period, tok::arrowstar) &&
H A DFormatTokenLexer.cpp104 tok::period};
128 Tokens.back()->Tok.setKind(tok::period);
341 return Tok->isOneOf(tok::period, tok::l_paren, tok::comma, tok::l_brace,
H A DTokenAnnotator.cpp860 if ((Tok->Previous && Tok->Previous->is(tok::period)) ||
1210 return Tok.TokenText == "goog" && Tok.Next && Tok.Next->is(tok::period) &&
1516 tok::comma, tok::period, tok::arrow,
1547 } else if (Current.is(tok::period)) {
1588 } else if (Current.Previous->is(tok::period) &&
1627 PreviousNotConst->MatchingParen->Previous->isNot(tok::period) &&
2002 if (Current->isOneOf(tok::period, tok::arrow))
2447 (Right.is(tok::period) && Style.Language == FormatStyle::LK_Proto))
2801 (!Left.Previous || Left.Previous->isNot(tok::period))))) ||
2820 if (Left.is(tok::period) || Righ
[all...]
H A DUnwrappedLineParser.cpp461 NextTok->isOneOf(tok::comma, tok::period, tok::colon,
603 if (I->Tok->isNot(tok::period))
864 Tok.isNot(tok::period) && Tok.isNot(tok::periodstar) &&
1239 case tok::period:
2189 FormatTok->isOneOf(tok::period, tok::comma))) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DModuleMap.cpp1531 case tok::period:
H A DPragma.cpp777 if (Tok.isNot(tok::period))
H A DPreprocessor.cpp1228 if (!ModuleImportExpectsIdentifier && Result.getKind() == tok::period) {
H A DTokenConcatenation.cpp75 TokenInfo[tok::period ] |= aci_custom_firstchar;
267 case tok::period: // ..., .*, .1234
268 return (FirstChar == '.' && PrevPrevTok.is(tok::period)) ||
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseDecl.cpp5058 if (getLangOpts().ObjC && NextToken().is(tok::period))
6073 if (Tok.isOneOf(tok::period, tok::arrow))
H A DParseExpr.cpp293 Tok.isOneOf(tok::period, tok::plusplus, tok::minusminus) ||
693 if (!NextToken.isOneOf(tok::equal, tok::arrow, tok::period))
1122 if (getLangOpts().ObjC && Tok.is(tok::period) &&
1955 case tok::period: {
1995 OpKind == tok::arrow ? tok::period : tok::arrow;
2036 if (getLangOpts().ObjC && OpKind == tok::period &&
2385 if (Tok.is(tok::period)) {
2817 GetLookAheadToken(1).isNot(tok::period)) {
H A DParseInit.cpp30 case tok::period: // designator: '.' identifier
191 while (Tok.is(tok::period) || Tok.is(tok::l_square)) {
192 if (Tok.is(tok::period)) {
242 NextToken().isNot(tok::period) &&
281 NextToken().is(tok::period), ReceiverType)) {
H A DParseObjc.cpp3033 NextToken().isNot(tok::period) && getCurScope()->isInObjcMethodScope())
3060 NextToken().is(tok::period),
H A DParsePragma.cpp3174 // Parse the optional namespace followed by a period.
3181 if (!Tok.is(tok::period)) {
H A DParseStmt.cpp125 nextTok.isOneOf(tok::l_paren, tok::identifier, tok::arrow, tok::period);
136 if (NextToken.is(tok::period) &&
H A DParseStmtAsm.cpp246 // While the next two tokens are 'period' 'identifier', repeatedly parse it as
249 while (Result.isUsable() && Tok.is(tok::period)) {
253 ConsumeToken(); // Consume the period.
427 // If we hit EOF, we're done, period.
H A DParser.cpp1921 false, NextToken().is(tok::period), nullptr,
2427 if (Tok.isNot(tok::period))
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDecl.cpp1146 if (NextToken.is(tok::period)) {
H A DSemaExprCXX.cpp7008 OpKind = tok::period;
7109 OpKind = tok::period;
7171 if (OpKind == tok::period && ObjectType->isPointerType() &&

Completed in 351 milliseconds

12345678