Searched refs:par (Results 1 - 25 of 41) sorted by relevance

12

/freebsd-13-stable/contrib/bmake/
H A Dcond.c169 static CondResult CondParser_Or(CondParser *par, Boolean);
202 CondParser_PushBack(CondParser *par, Token t) argument
204 assert(par->curr == TOK_NONE);
207 par->curr = t;
211 CondParser_SkipWhitespace(CondParser *par) argument
213 cpp_skip_whitespace(&par->p);
231 ParseFuncArg(CondParser *par, const char **pp, Boolean doEval, const char *func, argument
293 par->printedError = TRUE;
413 CondParser_StringExpr(CondParser *par, const char *start, argument
427 nested_p = par
479 CondParser_String(CondParser *par, Boolean doEval, Boolean strictLHS, FStr *out_str, Boolean *out_quoted) argument
549 If_Eval(const CondParser *par, const char *arg, size_t arglen) argument
560 EvalNotEmpty(CondParser *par, const char *value, Boolean quoted) argument
605 EvalCompareStr(CondParser *par, const char *lhs, ComparisonOp op, const char *rhs) argument
622 EvalCompare(CondParser *par, const char *lhs, Boolean lhsQuoted, ComparisonOp op, const char *rhs, Boolean rhsQuoted) argument
635 CondParser_ComparisonOp(CondParser *par, ComparisonOp *out_op) argument
677 CondParser_Comparison(CondParser *par, Boolean doEval) argument
778 CondParser_Func(CondParser *par, Boolean doEval, Token *out_token) argument
831 CondParser_LeafToken(CondParser *par, Boolean doEval) argument
875 CondParser_Token(CondParser *par, Boolean doEval) argument
945 CondParser_Term(CondParser *par, Boolean doEval) argument
982 CondParser_And(CondParser *par, Boolean doEval) argument
1009 CondParser_Or(CondParser *par, Boolean doEval) argument
1032 CondParser_Eval(CondParser *par, Boolean *out_value) argument
1065 CondParser par; local
[all...]
/freebsd-13-stable/lib/libc/stdlib/
H A Dheapsort.c88 #define CREATE(initval, nmemb, par_i, child_i, par, child, size, count, tmp) { \
96 par = base + par_i * size; \
97 if (COMPAR(child, par) <= 0) \
99 SWAP(par, child, count, size, tmp); \
120 #define SELECT(par_i, child_i, nmemb, par, child, size, k, count, tmp1, tmp2) { \
127 par = base + par_i * size; \
128 COPY(par, child, count, size, tmp1, tmp2); \
134 par = base + par_i * size; \
135 if (child_i == 1 || COMPAR(k, par) < 0) { \
139 COPY(child, par, coun
[all...]
/freebsd-13-stable/contrib/ntp/scripts/stats/
H A Densemble.S4 par(mgp=c(1, 0, 0), tck = 0.03, mar = c(2, 2, 1, 1))
H A Ditf.S4 par(mgp=c(1, 0, 0), tck=0.03, mar=c(2, 2, 1, 1))
H A Dtdata.S4 par(mgp=c(1, 0, 0), tck=0.03, mar=c(2, 2, 1, 1))
H A Dloop.S6 par(mgp=c(1, 0, 0), tck=0.03, mar=c(2, 2, 1, 1))
H A Detf.S14 par(mgp=c(1, 0, 0), tck=0.03, mar=c(2, 2, 1, 1))
/freebsd-13-stable/sys/dev/quicc/
H A Dquicc_bfe_fdt.c76 phandle_t par; local
85 par = OF_parent(ofw_bus_get_node(dev));
86 if (OF_getprop(par, "bus-frequency", &clock, sizeof(clock)) <= 0)
/freebsd-13-stable/sbin/ipfw/
H A Ddummynet.c252 us_to_time(ep->par[0], strt1);
253 us_to_time(ep->par[1], strt2);
256 if (ep->par[2] & CODEL_ECN_ENABLED)
261 us_to_time(ep->par[0], strt1);
262 us_to_time(ep->par[1], strt2);
263 us_to_time(ep->par[2], strt3);
268 ep->par[4] / (float) PIE_SCALE,
269 ep->par[5] / (float) PIE_SCALE,
271 ep->par[3] / (float) PIE_SCALE
274 if (ep->par[
[all...]
/freebsd-13-stable/sys/dev/mii/
H A Damphy.c146 int bmsr, bmcr, par, anlpar; local
198 par = PHY_READ(sc, MII_AMPHY_DSCSR);
199 if (par & DSCSR_100FDX)
201 else if (par & DSCSR_100HDX)
203 else if (par & DSCSR_10FDX)
205 else if (par & DSCSR_10HDX)
/freebsd-13-stable/sys/netsmb/
H A Dsmb_tran.h82 #define SMB_TRAN_GETPARAM(vcp,par,data) (vcp)->vc_tdesc->tr_getparam(vcp, par, data)
83 #define SMB_TRAN_SETPARAM(vcp,par,data) (vcp)->vc_tdesc->tr_setparam(vcp, par, data)
/freebsd-13-stable/contrib/sendmail/smrsh/
H A Dsmrsh.c97 char *prg, *par; variable
128 "%s: command too long: %s\n", prg, par);
130 syslog(LOG_WARNING, "command too long: %.40s", par);
183 par = argv[2];
208 if (strlen(par) > (sizeof newcmdbuf - sizeof CMDDIR - 2))
211 "%s: command too long: %s\n", prg, par);
213 syslog(LOG_WARNING, "command too long: %.40s", par);
218 q = par;
397 (int) getuid(), *r, par);
/freebsd-13-stable/sys/netpfil/ipfw/
H A Ddn_aqm_pie.c707 /* par array contains pie configuration as follow
715 if (ep->par[0] < 0)
718 pcfg->qdelay_ref = ep->par[0];
719 if (ep->par[1] < 0)
722 pcfg->tupdate = ep->par[1];
723 if (ep->par[2] < 0)
726 pcfg->max_burst = ep->par[2];
727 if (ep->par[3] < 0)
730 pcfg->max_ecnth = ep->par[3];
731 if (ep->par[
[all...]
H A Ddn_sched_fq_pie.c1103 /* par array contains fq_pie configuration as follow
1111 if (ep->par[0] < 0)
1114 fqp_cfg->pcfg.qdelay_ref = ep->par[0];
1115 if (ep->par[1] < 0)
1118 fqp_cfg->pcfg.tupdate = ep->par[1];
1119 if (ep->par[2] < 0)
1122 fqp_cfg->pcfg.max_burst = ep->par[2];
1123 if (ep->par[3] < 0)
1126 fqp_cfg->pcfg.max_ecnth = ep->par[3];
1127 if (ep->par[
[all...]
H A Ddn_sched_fq_codel.c509 /* par array contains fq_codel configuration as follow
516 if (ep->par[0] < 0)
519 fqc_cfg->ccfg.target = ep->par[0] * AQM_TIME_1US;
521 if (ep->par[1] < 0)
524 fqc_cfg->ccfg.interval = ep->par[1] * AQM_TIME_1US;
526 if (ep->par[2] < 0)
529 fqc_cfg->ccfg.flags = ep->par[2];
532 if (ep->par[3] < 0)
535 fqc_cfg->quantum = ep->par[3];
537 if (ep->par[
[all...]
H A Ddn_aqm_codel.c368 if (ep->par[0] < 0)
371 ccfg->target = ep->par[0] * AQM_TIME_1US;
373 if (ep->par[1] < 0)
376 ccfg->interval = ep->par[1] * AQM_TIME_1US;
378 if (ep->par[2] < 0)
381 ccfg->flags = ep->par[2];
421 ep->par[0] = ccfg->target / AQM_TIME_1US;
422 ep->par[1] = ccfg->interval / AQM_TIME_1US;
423 ep->par[2] = ccfg->flags;
H A Ddn_sched_prio.c90 int prio = q->fs->fs.par[0];
158 ipdn_bound_var(&fs->fs.par[0], 0, 0, MAXPRIO - 1, "PRIO priority");
166 int prio = q->fs->fs.par[0];
200 int prio = q->fs->fs.par[0];
H A Ddn_sched_rr.c247 /* par[0] is the weight, par[1] is the quantum step */
249 ipdn_bound_var(&fs->fs.par[0], 1,
251 ipdn_bound_var(&fs->fs.par[1], schk->q_bytes,
264 quantum = (uint64_t)_q->fs->fs.par[0] * _q->fs->fs.par[1];
/freebsd-13-stable/contrib/unbound/sldns/
H A Dparse.c245 size_t limit, int* par, const char* skipw)
263 p = (par?*par:0);
279 if(par) (*par)++;
289 if(par) (*par)--;
352 if (c == *d && lc != '\\' && (p == 0 || par)) {
375 if (!par && p != 0) {
388 if (!par
244 sldns_bget_token_par(sldns_buffer *b, char *token, const char *delim, size_t limit, int* par, const char* skipw) argument
[all...]
H A Dparse.h79 * \param[in] *par if you pass nonNULL, set to 0 on first call, the parenthesis
87 ssize_t sldns_bget_token_par(struct sldns_buffer *b, char *token, const char *delim, size_t limit, int* par, const char* skipw);
/freebsd-13-stable/contrib/bmake/unit-tests/
H A Dvarmod-edge.exp9 make: "varmod-edge.mk" line 166: ok M-bs1-par
10 make: "varmod-edge.mk" line 166: ok M-bs2-par
H A Dvarmod-edge.mk102 TESTS+= M-bs1-par
103 INP.M-bs1-par= ( (:M (:M} \( \(:M \(:M}
104 MOD.M-bs1-par= ${INP.M-bs1-par:M\(:M*}}}
105 EXP.M-bs1-par= (:M}}
111 TESTS+= M-bs2-par
112 INP.M-bs2-par= ( (:M (:M} \( \(:M \(:M}
113 MOD.M-bs2-par= ${INP.M-bs2-par:M\\(:M*}}}
114 EXP.M-bs2-par
[all...]
/freebsd-13-stable/contrib/libucl/utils/
H A Dobjdump.c110 const ucl_object_t *par; local
167 par = ucl_object_lookup (obj, argv[k]);
168 printf ("%sfound\n", (par == NULL )?"not ":"");
169 ucl_obj_dump (par, 0);
/freebsd-13-stable/sys/netinet/
H A Dip_dummynet.h158 int par[4]; member in struct:dn_fs
232 int64_t par[DN_MAX_EXTRA_PARM]; member in struct:dn_extra_parms
/freebsd-13-stable/sys/dev/extres/regulator/
H A Dregulator.c1136 struct regnode_std_param *par; local
1139 par = &def->std_param;
1148 rv = OF_getencprop(node, "regulator-min-microvolt", &par->min_uvolt,
1149 sizeof(par->min_uvolt));
1151 par->min_uvolt = 0;
1153 rv = OF_getencprop(node, "regulator-max-microvolt", &par->max_uvolt,
1154 sizeof(par->max_uvolt));
1156 par->max_uvolt = 0;
1158 rv = OF_getencprop(node, "regulator-min-microamp", &par->min_uamp,
1159 sizeof(par
[all...]

Completed in 228 milliseconds

12