Home
last modified time | relevance | path

Searched refs:einit (Results 1 – 10 of 10) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Ddeclaration.c1135 Expression *einit = ie; in semantic() local
1139 einit = (*te->exps)[i]; in semantic()
1141 einit = Expression::combine(te->e0, einit); in semantic()
1143 ti = new ExpInitializer(einit->loc, einit); in semantic()
H A Ddinterpret.c2302 Expression *einit; in visit() local
2305 einit = interpret(ie->exp, istate, goal); in visit()
2306 if (exceptionOrCant(einit)) in visit()
2311 einit = voidInitLiteral(v2->type, v2).copy(); in visit()
2319 setValue(v2, einit); in visit()
H A Dstatementsem.c1311 Expression *einit = new DotIdExp(loc, e, idfront); in visit() local
1316 … VarDeclaration *ve = new VarDeclaration(loc, p->type, p->ident, new ExpInitializer(loc, einit)); in visit()
1324 VarDeclaration *vd = copyToTemp(STCref, "__front", einit); in visit()
H A Dexpressionsem.c5677 Expression *einit; in visit() local
5678 einit = new BlitExp(exp->loc, e1x, e1x->type->defaultInit(exp->loc)); in visit()
5679 einit->type = e1x->type; in visit()
5684 e = new CommaExp(exp->loc, einit, e); in visit()
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/evp/
H A Devp_enc.c263 if (ctx->cipher->einit == NULL) { in evp_cipher_init_internal()
268 return ctx->cipher->einit(ctx->algctx, in evp_cipher_init_internal()
1560 if (cipher->einit != NULL) in evp_cipher_from_algorithm()
1562 cipher->einit = OSSL_FUNC_cipher_encrypt_init(fns); in evp_cipher_from_algorithm()
/netbsd-src/crypto/external/bsd/openssl/dist/include/crypto/
H A Devp.h331 OSSL_FUNC_cipher_encrypt_init_fn *einit; member
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Ddsymbolsem.d641 Expression einit = ie; in visit() local
644 einit = (*te.exps)[i]; in visit()
646 einit = Expression.combine(te.e0, einit); in visit()
648 ti = new ExpInitializer(einit.loc, einit); in visit()
H A Dexpressionsem.d9104 Expression einit = getInitExp(sd, exp.loc, sc, t1); in visit() local
9105 if (einit.op == EXP.error) in visit()
9107 result = einit; in visit()
9111 auto ae = new BlitExp(exp.loc, exp.e1, einit); in visit()
9163 … Expression einit = new BlitExp(exp.loc, exp.e1, getInitExp(sd, exp.loc, sc, t1)); in visit() local
9164 einit.type = e1x.type; in visit()
9169 e = new CommaExp(exp.loc, einit, e); in visit()
9266 … Expression einit = new BlitExp(exp.loc, e1x, getInitExp(sd, exp.loc, sc, t1)); in visit() local
9267 einit.type = e1x.type; in visit()
9272 e = new CommaExp(exp.loc, einit, e); in visit()
H A Ddinterpret.d2304 Expression einit; in visit()
2307 einit = interpretRegion(ie.exp, istate, goal); in visit()
2308 if (exceptionOrCant(einit)) in visit()
2313 einit = voidInitLiteral(v2.type, v2).copy(); in visit()
2321 setValue(v2, einit); in visit()
H A Dstatementsem.d1242 Expression einit = new DotIdExp(loc, e, idfront); in package() local
1285 … auto ve = new VarDeclaration(loc, p.type, p.ident, new ExpInitializer(loc, einit)); in package()
1296 auto vd = copyToTemp(STC.ref_, "__front", einit); in package()