Searched refs:prm (Results 1 - 19 of 19) sorted by relevance

/netbsd-current/crypto/external/bsd/openssl/dist/crypto/ffc/
H A Dffc_backend.c22 const OSSL_PARAM *prm; local
30 prm = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_GROUP_NAME);
31 if (prm != NULL) {
39 if (prm->data_type != OSSL_PARAM_UTF8_STRING
40 || prm->data == NULL
41 || (group = ossl_ffc_name_to_dh_named_group(prm->data)) == NULL
56 prm = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_GINDEX);
57 if (prm != NULL) {
58 if (!OSSL_PARAM_get_int(prm, &i))
62 prm
[all...]
/netbsd-current/sys/dev/raidframe/
H A Drf_evenodd_dagfuncs.c638 int i, prm, sector, nresults = node->numResults; local
742 for (prm = 0; prm < ndataParam; prm++) {
743 pda = node->params[prm].p;
744 suoff[prm] = rf_StripeUnitOffset(layoutPtr, pda->startSector);
745 suend[prm] = suoff[prm] + pda->numSector;
746 prmToCol[prm] = rf_EUCol(layoutPtr, pda->raidAddress);
758 for (prm
832 int prm, i, j; local
[all...]
/netbsd-current/sys/arch/i386/stand/lib/netif/
H A Di82557.c221 #define prm 0 macro
237 cbp->save_bf = prm; /* save bad frames */
238 cbp->disc_short_rx = !prm; /* discard short packets */
247 cbp->promiscuous = prm; /* promiscuous mode */
250 cbp->stripping = !prm; /* truncate rx packet to byte count */
257 #undef prm macro
/netbsd-current/sys/arch/sandpoint/stand/altboot/
H A Dfxp.c233 #define prm 0 macro
250 cbp->save_bf = prm; /* save bad frames */
251 cbp->disc_short_rx = !prm; /* discard short packets */
260 cbp->promiscuous = prm; /* promiscuous mode */
263 cbp->stripping = !prm; /* truncate rx packet to byte count */
270 #undef prm macro
/netbsd-current/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dstatementsem.d1629 Parameter prm = tfld.parameterList[i];
1630 //printf("\tprm = %s%s\n", (prm.storageClass&STC.ref_?"ref ":"").ptr, prm.ident.toChars());
1631 stc = (prm.storageClass & STC.ref_) | (p.storageClass & STC.scope_);
1632 if ((p.storageClass & STC.ref_) != (prm.storageClass & STC.ref_))
1634 if (!(prm.storageClass & STC.ref_))
1705 if (fs.prm.type)
1707 fs.prm.type = fs.prm.type.typeSemantic(loc, sc);
1708 fs.prm
[all...]
H A Dstatement.d983 Parameter prm; // loop index variable
991 extern (D) this(const ref Loc loc, TOK op, Parameter prm, Expression lwr, Expression upr, Statement _body, Loc endloc)
995 this.prm = prm;
1004 return new ForeachRangeStatement(loc, op, prm.syntaxCopy(), lwr.syntaxCopy(), upr.syntaxCopy(), _body ? _body.syntaxCopy() : null, endloc);
1028 Parameter prm;
1035 extern (D) this(const ref Loc loc, Parameter prm, Expression condition, Statement ifbody, Statement elsebody, Loc endloc)
1038 this.prm = prm;
1048 prm
[all...]
H A Dtransitivevisitor.d155 if (s.prm.type)
156 visitType(s.prm.type);
166 if (s.prm && s.prm.type)
167 visitType(s.prm.type);
H A Dstatement.h354 Parameter *prm; // loop index variable member in class:ForeachRangeStatement
372 Parameter *prm; member in class:IfStatement
H A Dhdrgen.d359 if (s.prm.type)
360 typeToBuffer(s.prm.type, s.prm.ident, buf, hgs);
362 buf.writestring(s.prm.ident.toString());
406 if (Parameter p = s.prm)
1112 /* s.op ( prm ; lwr .. upr )
1116 if (s.prm.type)
1117 typeToBuffer(s.prm.type, s.prm.ident, buf, hgs);
1119 buf.writestring(s.prm
[all...]
H A Dcond.d318 auto p = aggrfe ? (*aggrfe.parameters)[i] : rangefe.prm;
/netbsd-current/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dstatementsem.c1463 Parameter *prm = Parameter::getNth(tfld->parameters, i); local
1464 //printf("\tprm = %s%s\n", (prm->storageClass&STCref?"ref ":""), prm->ident->toChars());
1465 stc = prm->storageClass & STCref;
1772 if (fs->prm->type)
1774 fs->prm->type = fs->prm->type->semantic(loc, sc);
1775 fs->prm->type = fs->prm->type->addStorageClass(fs->prm
[all...]
H A Dstatement.c916 ForeachRangeStatement::ForeachRangeStatement(Loc loc, TOK op, Parameter *prm, argument
921 this->prm = prm;
933 prm->syntaxCopy(),
952 IfStatement::IfStatement(Loc loc, Parameter *prm, Expression *condition, Statement *ifbody, Statement *elsebody, Loc endloc) argument
955 this->prm = prm;
966 prm ? prm->syntaxCopy() : NULL,
H A Dstatement.h331 Parameter *prm; // loop index variable member in class:ForeachRangeStatement
339 ForeachRangeStatement(Loc loc, TOK op, Parameter *prm,
351 Parameter *prm; member in class:IfStatement
359 IfStatement(Loc loc, Parameter *prm, Expression *condition, Statement *ifbody, Statement *elsebody, Loc endloc);
H A Dcond.c262 Parameter *p = sfe->aggrfe ? (*sfe->aggrfe->parameters)[i] : sfe->rangefe->prm;
H A Dhdrgen.c292 if (s->prm->type)
293 typeToBuffer(s->prm->type, s->prm->ident);
295 buf->writestring(s->prm->ident->toChars());
335 if (Parameter *p = s->prm)
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/asn1/
H A Dasn_mime.c384 MIME_PARAM *prm; local
407 prm = mime_param_find(hdr, "boundary");
408 if (!prm || !prm->param_value) {
413 ret = multi_split(bio, prm->param_value, &parts);
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/asn1/
H A Dasn_mime.c405 MIME_PARAM *prm; local
428 prm = mime_param_find(hdr, "boundary");
429 if (prm == NULL || prm->param_value == NULL) {
434 ret = multi_split(bio, flags, prm->param_value, &parts);
/netbsd-current/sys/dev/ic/
H A Di82557.c1677 int i, prm, save_bf, lrxen, vlan_drop, allm, error = 0; local
1715 prm = (ifp->if_flags & IFF_PROMISC) ? 1 : 0;
1791 cbp->disc_short_rx = !prm; /* discard short packets */
1811 cbp->promiscuous = prm; /* promiscuous mode */
1817 cbp->stripping = !prm; /* truncate rx packet to byte count */
1851 cbp->fc_filter = !prm; /* drop FC frames to host */
/netbsd-current/usr.bin/tftp/
H A Dmain.c227 getmore(const char *cmd, const char *prm) argument
230 (void)printf("%s", prm);

Completed in 315 milliseconds