Searched refs:scx (Results 1 - 25 of 30) sorted by relevance

12

/netbsd-current/sys/dev/hpc/
H A Dhpcapm.c295 hpcapm_disconnect(void *scx) argument
300 hpcapm_enable(void *scx, int onoff) argument
305 hpcapm_set_powstate(void *scx, u_int devid, u_int powstat) argument
310 sc = scx;
365 hpcapm_get_powstat(void *scx, u_int batteryid, struct apm_power_info *pinfo) argument
370 sc = scx;
400 hpcapm_get_event(void *scx, u_int *event_type, u_int *event_info) argument
405 sc = scx;
429 hpcapm_cpu_busy(void *scx) argument
434 hpcapm_cpu_idle(void *scx) argument
439 hpcapm_get_capabilities(void *scx, u_int *numbatts, u_int *capflags) argument
[all...]
H A Dbtnmgr.c270 btnmgr_wskbd_enable(void *scx, int on) argument
272 struct btnmgr_softc *sc = scx;
286 btnmgr_wskbd_set_leds(void *scx, int leds) argument
294 btnmgr_wskbd_ioctl(void *scx, u_long cmd, void *data, int flag, argument
298 struct btnmgr_softc *sc = scx;
/netbsd-current/external/gpl3/gcc/dist/gcc/d/dmd/
H A Daccess.d151 for (auto scx = sc; scx; scx = scx.enclosing)
153 if (!scx.scopesym)
155 auto cd2 = scx.scopesym.isClassDeclaration();
H A Dattrib.d365 auto scx = super.newScope(sc);
367 if (scx == sc)
368 scx = sc.push();
369 scx.depdecl = this;
370 return scx;
551 auto scx = sc.copy();
552 scx.linkage = LINK.cpp;
553 scx.namespace = this;
554 return scx;
H A Dstatementsem.d2253 for (Scope* scx = sc; scx; scx = scx.enclosing)
2255 if (!scx.sw)
2257 foreach (cs; *scx.sw.cases)
2519 /* Find the outermost scope `scx` that set `sw`.
2520 * Then search scope `scx` for a declaration of `v`.
2522 for (Scope* scx = sc; scx; sc
[all...]
H A Ddeclaration.d368 for (Scope* scx = sc; scx; scx = scx.enclosing)
370 if (scx.func == parent && (scx.flags & SCOPE.contract))
383 for (Scope* scx = sc; scx; scx = scx
[all...]
H A Ddsymbolsem.d218 private void deferDsymbolSemantic(Dsymbol s, Scope *scx)
220 s._scope = scx ? scx : sc.copy();
362 Scope* scx = null;
366 scx = sc;
1069 dsym._scope = scx ? scx : sc.copy();
1153 dsym._scope = scx ? scx : sc.copy();
2028 Scope* scx
[all...]
H A Ddstruct.d104 Scope scx;
105 scx._module = sd.getModule();
106 getTypeInfoType(sd.loc, t, &scx);
H A Ddtemplate.d814 for (Scope* scx = paramscope.callsc; scx; scx = scx.callsc)
816 // The first scx might be identical for nested eponymeous templates, e.g.
818 if (scx == p.sc && scx !is paramscope.callsc)
831 Scope* scx = paramscope.push(ti);
832 scx.parent = ti;
833 scx
[all...]
H A Dtraits.d1043 Scope* scx = sc.push();
1044 scx.flags |= SCOPE.ignoresymbolvisibility | SCOPE.noaccesscheck;
1045 scope (exit) scx.pop();
1051 ex = ex.trySemantic(scx);
1059 ex = ex.expressionSemantic(scx);
1068 ex = ex.expressionSemantic(scx);
1209 return tup.expressionSemantic(scx);
H A Dexpressionsem.d399 for (Scope* scx = sc; scx; scx = scx.enclosing)
401 if (!scx.scopesym)
403 if (scx.scopesym.isModule())
405 s = scx.scopesym.search(loc, ident, flags);
425 if (scx.scopesym.isModule() && !(scx.enclosing && !scx
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Ddclass.c300 static Type *resolveBase(ClassDeclaration *cd, Scope *sc, Scope *&scx, Type *type) argument
302 if (!scx)
304 scx = sc->copy();
305 scx->setNoFree();
307 cd->_scope = scx;
313 static void resolveBase(ClassDeclaration *cd, Scope *sc, Scope *&scx, ClassDeclaration *sym) argument
315 if (!scx)
317 scx = sc->copy();
318 scx->setNoFree();
320 cd->_scope = scx;
345 Scope *scx = NULL; local
1439 Scope *scx = NULL; local
[all...]
H A Daccess.c280 for (Scope *scx = sc; scx; scx = scx->enclosing)
282 if (!scx->scopesym)
284 ClassDeclaration *cd2 = scx->scopesym->isClassDeclaration();
H A Ddstruct.c102 Scope scx; local
103 scx._module = sd->getModule();
104 getTypeInfoType(sd->loc, t, &scx);
1032 Scope *scx = NULL; local
1036 scx = _scope; // save so we don't make redundant copies
1079 else if (symtab && !scx)
1151 _scope = scx ? scx : sc->copy();
H A Dtraits.c784 Scope *scx = sc->push(); local
785 scx->flags |= SCOPEignoresymbolvisibility;
786 ex = trySemantic(ex, scx);
787 scx->pop();
795 Scope *scx = sc->push(); local
796 scx->flags |= SCOPEignoresymbolvisibility;
797 ex = semantic(ex, scx);
798 scx->pop();
807 Scope *scx = sc->push(); local
808 scx
[all...]
H A Ddenum.c105 Scope *scx = NULL; local
109 scx = _scope; // save so we don't make redundant copies
156 _scope = scx ? scx : sc->copy();
H A Dstatementsem.c2274 for (Scope *scx = sc; scx; scx = scx->enclosing)
2276 if (!scx->sw)
2278 for (size_t j = 0; j < scx->sw->cases->dim; j++)
2280 CaseStatement *cs = (*scx->sw->cases)[j];
2431 * 'scx' is set to the scope of the switch statement.
2433 for (Scope *scx = sc; scx; sc
3099 Scope *scx; local
[all...]
H A Ddeclaration.c137 for (Scope *scx = sc; scx; scx = scx->enclosing)
139 if (scx->func == parent && (scx->flags & SCOPEcontract))
876 Scope *scx = NULL;
880 scx = sc;
1530 _scope = scx ? scx
[all...]
H A Ddtemplate.c758 for (Scope *scx = sc; scx; scx = scx->enclosing)
760 if (scx == p->sc)
774 Scope *scx = paramscope->push(ti); local
775 scx->parent = ti;
776 scx->tinst = NULL;
777 scx->minst = NULL;
788 scx
2682 Scope *scx = sc2->push(); local
8354 Scope *scx = NULL; local
[all...]
H A Dattrib.c461 Scope *scx = StorageClassDeclaration::newScope(sc); local
463 if (scx == sc)
464 scx = sc->push();
465 scx->depdecl = this;
466 return scx;
H A Dclone.c502 Scope scx; local
510 tfeqptr = (TypeFunction *)tfeqptr->semantic(Loc(), &scx);
582 Scope scx; local
590 tfcmpptr = (TypeFunction *)tfcmpptr->semantic(Loc(), &scx);
H A Dexpressionsem.c317 for (Scope *scx = scwith; scx && scx->func == scwith->func; scx = scx->enclosing)
320 if (scx->scopesym && scx->scopesym->symtab &&
321 (s2 = scx->scopesym->symtab->lookup(s->ident)) != NULL &&
1770 for (Scope *scx = sc->enclosing; scx
4556 Scope *scx = sc; local
4903 Scope *scx = sc; local
[all...]
/netbsd-current/sys/arch/hpcmips/vr/
H A Dvr4181giu.c247 vr4181giu_getchip(void* scx, int chipid) argument
249 struct vr4181giu_softc *sc = scx;
H A Dvrgiu.c506 vrgiu_getchip(void* scx, int chipid) argument
508 struct vrgiu_softc *sc = scx;
H A Dvrc4172gpio.c464 vrc4172gpio_getchip(void* scx, int chipid) argument
466 struct vrc4172gpio_softc *sc = scx;

Completed in 476 milliseconds

12