Searched refs:sc2 (Results 1 - 25 of 49) sorted by relevance

12

/netbsd-current/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dsemantic3.d322 Scope* sc2 = sc.push(ss);
323 sc2.func = funcdecl;
324 sc2.parent = funcdecl;
325 sc2.ctorflow.callSuper = CSX.none;
326 sc2.sbreak = null;
327 sc2.scontinue = null;
328 sc2.sw = null;
329 sc2.fes = funcdecl.fes;
330 sc2.linkage = funcdecl.isCsymbol() ? LINK.c : LINK.d;
331 sc2
[all...]
H A Dattrib.d88 Scope* sc2 = sc;
98 sc2 = sc.copy();
99 sc2.stc = stc;
100 sc2.linkage = linkage;
101 sc2.cppmangle = cppmangle;
102 sc2.visibility = visibility;
103 sc2.explicitVisibility = explicitVisibility;
104 sc2.aligndecl = aligndecl;
105 sc2.inlining = inlining;
107 return sc2;
[all...]
H A Dclone.d377 Scope* sc2 = sc.push();
378 sc2.stc = 0;
379 sc2.linkage = LINK.d;
380 fop.dsymbolSemantic(sc2);
381 fop.semantic2(sc2);
383 //semantic3(fop, sc2); // isn't run here for lazy forward reference resolution.
385 sc2.pop();
588 Scope* sc2 = sc.push();
589 sc2.stc = 0;
590 sc2
[all...]
H A Daggregate.d168 auto sc2 = sc.push(this);
169 sc2.stc &= STC.flowThruAggregate;
170 sc2.parent = this;
171 sc2.inunion = isUnionDeclaration();
172 sc2.visibility = Visibility(Visibility.Kind.public_);
173 sc2.explicitVisibility = 0;
174 sc2.aligndecl = null;
175 sc2.userAttribDecl = null;
176 sc2.namespace = null;
177 return sc2;
[all...]
H A Ddsymbolsem.d444 Scope* sc2 = sc.push();
445 sc2.stc |= (dsym.storage_class & STC.FUNCATTR);
447 dsym.type = dsym.type.typeSemantic(dsym.loc, sc2);
449 sc2.pop();
1427 Scope* sc2 = ad.newScope(sc);
1432 s.dsymbolSemantic(sc2);
1436 if (sc2 != sc)
1437 sc2.pop();
1541 Scope* sc2 = pd.newScope(sc);
1543 if (sc2 !
[all...]
H A Ddscope.d788 for (const(Scope)* sc2 = &this; sc2; sc2 = sc2.enclosing)
790 if (sc2.scopesym && sc2.scopesym.isDeprecated())
794 if (sc2.stc & STC.deprecated_)
H A Ddclass.d407 auto sc2 = super.newScope(sc);
413 sc2.linkage = target.systemLinkage();
415 return sc2;
1031 auto sc2 = super.newScope(sc);
1033 sc2.linkage = LINK.windows;
1035 sc2.linkage = LINK.cpp;
1037 sc2.linkage = LINK.objc;
1038 return sc2;
H A Dtraits.d821 Scope* sc2 = sc.push();
822 sc2.flags = sc.flags | SCOPE.noaccesscheck | SCOPE.ignoresymbolvisibility;
823 bool ok = TemplateInstance.semanticTiargs(e.loc, sc2, e.args, 1);
824 sc2.pop();
1727 Scope* sc2 = sc.push();
1728 sc2.tinst = null;
1729 sc2.minst = null;
1730 sc2.flags = (sc.flags & ~(SCOPE.ctfe | SCOPE.condition)) | SCOPE.compile | SCOPE.fullinst;
1739 t.resolve(e.loc, sc2, ex, t, s);
1742 t.typeSemantic(e.loc, sc2);
[all...]
H A Dsemantic2.d522 Scope* sc2 = ad.newScope(sc);
526 s.semantic2(sc2);
528 if (sc2 != sc)
529 sc2.pop();
608 auto sc2 = ad.newScope(sc);
616 s.semantic2(sc2);
619 sc2.pop();
H A Dtypesem.d2043 Scope* sc2 = sc;
2046 sc2 = sc2.inner();
2047 auto scopesym = sc2.scopesym;
2050 sc2 = sc2.enclosing;
2063 auto scopesym = sc2.inner().scopesym;
2069 handleTagSymbols(*sc2, sd, s2, scopesym);
2071 sd.parent = sc2.parent;
2072 sd.dsymbolSemantic(sc2);
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dattrib.c81 Scope *sc2 = sc; local
91 sc2 = sc->copy();
92 sc2->stc = stc;
93 sc2->linkage = linkage;
94 sc2->cppmangle = cppmangle;
95 sc2->protection = protection;
96 sc2->explicitProtection = explicitProtection;
97 sc2->aligndecl = aligndecl;
98 sc2->inlining = inlining;
100 return sc2;
118 Scope *sc2 = newScope(sc); local
139 Scope *sc2 = newScope(sc); local
159 Scope *sc2 = newScope(sc); local
182 Scope *sc2 = newScope(sc); local
202 Scope *sc2 = newScope(sc); local
221 Scope *sc2 = newScope(sc); local
389 Scope *sc2 = newScope(sc); local
1145 Scope *sc2 = newScope(sc); local
1654 Scope *sc2 = sc; local
[all...]
H A Ddstruct.c226 Scope *sc2 = sc->push(this); local
227 sc2->stc &= STCsafe | STCtrusted | STCsystem;
228 sc2->parent = this;
230 sc2->inunion = 1;
231 sc2->protection = Prot(PROTpublic);
232 sc2->explicitProtection = 0;
233 sc2->aligndecl = NULL;
234 sc2->userAttribDecl = NULL;
235 return sc2;
260 Scope *sc2 local
288 Scope *sc2 = newScope(sc); local
1102 Scope *sc2 = newScope(sc); local
[all...]
H A Dclone.c326 Scope *sc2 = sc->push(); local
327 sc2->stc = 0;
328 sc2->linkage = LINKd;
330 fop->semantic(sc2);
331 fop->semantic2(sc2);
334 sc2->pop();
549 Scope *sc2 = sc->push(); local
550 sc2->stc = 0;
551 sc2->linkage = LINKd;
553 fop->semantic(sc2);
638 Scope *sc2 = sc->push(); local
761 Scope *sc2 = sc->push(); local
[all...]
H A Dfunc.c1456 Scope *sc2 = sc->push(ss); local
1457 sc2->func = this;
1458 sc2->parent = this;
1459 sc2->callSuper = 0;
1460 sc2->sbreak = NULL;
1461 sc2->scontinue = NULL;
1462 sc2->sw = NULL;
1463 sc2->fes = fes;
1464 sc2->linkage = LINKd;
1465 sc2
5473 Scope *sc2 = sc->push(); local
[all...]
H A Ddclass.c277 Scope *sc2 = AggregateDeclaration::newScope(sc); local
281 sc2->linkage = LINKwindows;
287 sc2->linkage = LINKc;
290 return sc2;
634 Scope *sc2 = newScope(sc); local
642 //printf("[%d] setScope %s %s, sc2 = %p\n", i, s->kind(), s->toChars(), sc2);
643 s->setScope(sc2);
646 sc2->pop();
728 Scope *sc2 local
1420 Scope *sc2 = ClassDeclaration::newScope(sc); local
1687 Scope *sc2 = newScope(sc); local
[all...]
H A Dtraits.c659 Scope *sc2 = sc->push();
660 sc2->flags = sc->flags | SCOPEnoaccesscheck;
661 bool ok = TemplateInstance::semanticTiargs(e->loc, sc2, e->args, 1);
662 sc2->pop();
1323 Scope *sc2 = sc->push(); local
1324 sc2->tinst = NULL;
1325 sc2->minst = NULL;
1326 sc2->flags = (sc->flags & ~(SCOPEctfe | SCOPEcondition)) | SCOPEcompile | SCOPEfullinst;
1335 t->resolve(e->loc, sc2, &ex, &t, &s);
1338 t->semantic(e->loc, sc2);
[all...]
H A Ddtemplate.c1959 Scope *sc2 = _scope; local
1960 sc2 = sc2->push(paramsym);
1961 sc2 = sc2->push(ti);
1962 sc2->parent = ti;
1963 sc2->tinst = ti;
1964 sc2->minst = sc->minst;
1966 fd = doHeaderInstantiation(ti, sc2, fd, tthis, fargs);
1968 sc2
2647 doHeaderInstantiation( TemplateInstance *ti, Scope *sc2, FuncDeclaration *fd, Type *tthis, Expressions *fargs) argument
5910 expandMembers(Scope *sc2) argument
5938 tryExpandMembers(Scope *sc2) argument
5955 trySemantic3(Scope *sc2) argument
6280 Scope *sc2; local
8505 Scope *sc2 = argscope->push(this); local
[all...]
H A Ddsymbol.c774 for (Scope *sc2 = sc; sc2; sc2 = sc2->enclosing)
776 if (sc2->scopesym && sc2->scopesym->isDeprecated())
780 if (sc2->stc & STCdeprecated)
/netbsd-current/external/lgpl3/mpfr/dist/src/
H A Dagm.c34 mpfr_t u, v, uf, vf, sc1, sc2; local
207 MPFR_ALIAS (sc2, op2, MPFR_SIGN (op2), e2 + scaleop);
209 op2 = sc2;
/netbsd-current/lib/libm/noieee_src/
H A Dn_erf.c244 sc2 = 2.80952153365721279953959310660e+001, variable
308 S = one+s*(sc1+s*(sc2+s*sc3));
392 S = one+s*(sc1+s*(sc2+s*sc3));
/netbsd-current/sys/arch/pmax/ibus/
H A Dsiireg.h63 u_short sc2; /* SCSI Control Signals Two */ member in struct:__anon1
/netbsd-current/sys/net/
H A Dif_ipsec.c1146 struct ipsec_softc *sc2; local
1215 LIST_FOREACH(sc2, &ipsec_softcs.list, ipsec_list) {
1219 if (sc2 == sc)
1221 var2 = if_ipsec_getref_variant(sc2, &psref);
1226 if (if_ipsec_nat_t(sc) || if_ipsec_nat_t(sc2)) {
1499 struct ipsec_softc *sc2; local
1507 LIST_FOREACH(sc2, &ipsec_softcs.list, ipsec_list) {
1508 if (sc2 == sc)
1510 var2 = if_ipsec_getref_variant(sc2, &psref);
1524 if (sc2
1548 struct ipsec_softc *sc2; local
[all...]
/netbsd-current/sys/netinet/
H A Dtcp_syncache.c320 struct syn_cache *sc2; local
347 sc2 = TAILQ_FIRST(&scp->sch_bucket);
353 if (sc2 == NULL)
356 syn_cache_rm(sc2);
357 syn_cache_put(sc2); /* calls pool_put but see spl above */
389 sc2 = TAILQ_FIRST(&scp2->sch_bucket);
390 syn_cache_rm(sc2);
391 syn_cache_put(sc2); /* calls pool_put but see spl above */
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/ts/
H A Dts_rsp_sign.c640 ESS_SIGNING_CERT_V2 *sc2 = NULL; local
694 sc2 = ess_signing_cert_v2_new_init(ctx->ess_cert_id_digest,
696 if (sc2 == NULL)
699 if (!ess_add_signing_cert_v2(si, sc2)) {
730 ESS_SIGNING_CERT_V2_free(sc2);
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/ts/
H A Dts_rsp_sign.c681 ESS_SIGNING_CERT_V2 *sc2 = NULL; local
745 sc2 = OSSL_ESS_signing_cert_v2_new_init(ctx->ess_cert_id_digest,
747 if (sc2 == NULL)
750 if (!ossl_ess_add1_signing_cert_v2(si, sc2)) {
784 ESS_SIGNING_CERT_V2_free(sc2);

Completed in 466 milliseconds

12