Searched refs:SC (Results 1 - 25 of 92) sorted by relevance

1234

/freebsd-10-stable/sys/dev/fatm/
H A Dif_fatmvar.h265 #define FATM_LOCK(SC) mtx_lock(&(SC)->mtx)
266 #define FATM_UNLOCK(SC) mtx_unlock(&(SC)->mtx)
268 #define FATM_LOCK(SC) do { \
269 DBG(SC, LOCK, ("locking in line %d", __LINE__)); \
270 mtx_lock(&(SC)->mtx); \
272 #define FATM_UNLOCK(SC) do { \
273 DBG(SC, LOCK, ("unlocking in line %d", __LINE__)); \
274 mtx_unlock(&(SC)
[all...]
/freebsd-10-stable/sys/dev/hatm/
H A Dif_hatmvar.h180 #define TPD_SET_USED(SC, I) do { \
181 (SC)->tpd_used[(I) / 8] |= (1 << ((I) % 8)); \
184 #define TPD_CLR_USED(SC, I) do { \
185 (SC)->tpd_used[(I) / 8] &= ~(1 << ((I) % 8)); \
188 #define TPD_TST_USED(SC, I) ((SC)->tpd_used[(I) / 8] & (1 << ((I) % 8)))
190 #define TPD_ADDR(SC, I) ((struct tpd *)((char *)sc->tpds.base + \
472 #define READ4(SC,OFF) bus_space_read_4(SC->memt, SC
[all...]
/freebsd-10-stable/contrib/llvm/include/llvm/MC/
H A DMCSubtargetInfo.h97 const MCSchedClassDesc *SC) const {
98 return &WriteProcResTable[SC->WriteProcResIdx];
101 const MCSchedClassDesc *SC) const {
102 return getWriteProcResBegin(SC) + SC->NumWriteProcResEntries;
105 const MCWriteLatencyEntry *getWriteLatencyEntry(const MCSchedClassDesc *SC, argument
107 assert(DefIdx < SC->NumWriteLatencyEntries &&
110 return &WriteLatencyTable[SC->WriteLatencyIdx + DefIdx];
113 int getReadAdvanceCycles(const MCSchedClassDesc *SC, unsigned UseIdx, argument
118 for (const MCReadAdvanceEntry *I = &ReadAdvanceTable[SC
[all...]
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/
H A DTargetSchedule.h89 const MCSchedClassDesc *SC = 0) const;
105 ProcResIter getWriteProcResBegin(const MCSchedClassDesc *SC) const {
107 return STI->getWriteProcResBegin(SC);
109 ProcResIter getWriteProcResEnd(const MCSchedClassDesc *SC) const {
110 return STI->getWriteProcResEnd(SC);
/freebsd-10-stable/sys/sys/
H A Dposix4.h50 #define SYSCALL_NOT_PRESENT_GEN(SC) \
51 int sys_ ## SC (struct thread *td, struct SC##_args *uap) \
53 return syscall_not_present(td, #SC , (struct nosys_args *)uap); \
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/
H A DSpecifiers.h192 inline bool isLegalForFunction(StorageClass SC) { argument
193 return SC <= SC_PrivateExtern;
197 inline bool isLegalForVariable(StorageClass SC) { argument
/freebsd-10-stable/sys/dev/patm/
H A Dif_patmvar.h151 #define PATM_CID(SC, VPI, VCI) \
152 (((VPI) << IFP2IFATM((SC)->ifp)->mib.vci_bits) | (VCI))
328 #define patm_printf(SC, ...) if_printf((SC)->ifp, __VA_ARGS__);
349 #define patm_debug(SC, FLAG, ...) do { \
350 if((SC)->debug & DBG_##FLAG) { \
351 if_printf((SC)->ifp, "%s: ", __func__); \
358 #define patm_debug(SC, FLAG, ...) do { } while (0)
512 #define LEGAL_VPI(SC, VPI) \
513 (((VPI) & ~((1 << IFP2IFATM((SC)
[all...]
/freebsd-10-stable/contrib/compiler-rt/lib/sparc64/
H A Ddivmod.m443 define(SC,`%g2')
142 ! The total number of bits in the result here is N*ITER+SC, where
143 ! SC <= N.
149 mov 1,SC
153 ! Now compute SC
156 add SC,1,SC
164 dec SC
173 ! dec SC
183 deccc SC
[all...]
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/
H A DScalarEvolutionExpressions.h452 template<typename SC, typename RetVal=void>
457 return ((SC*)this)->visitConstant((const SCEVConstant*)S);
459 return ((SC*)this)->visitTruncateExpr((const SCEVTruncateExpr*)S);
461 return ((SC*)this)->visitZeroExtendExpr((const SCEVZeroExtendExpr*)S);
463 return ((SC*)this)->visitSignExtendExpr((const SCEVSignExtendExpr*)S);
465 return ((SC*)this)->visitAddExpr((const SCEVAddExpr*)S);
467 return ((SC*)this)->visitMulExpr((const SCEVMulExpr*)S);
469 return ((SC*)this)->visitUDivExpr((const SCEVUDivExpr*)S);
471 return ((SC*)this)->visitAddRecExpr((const SCEVAddRecExpr*)S);
473 return ((SC*)thi
[all...]
/freebsd-10-stable/contrib/llvm/lib/CodeGen/
H A DTargetSchedule.cpp78 const MCSchedClassDesc *SC) const {
84 if (!SC)
85 SC = resolveSchedClass(MI);
86 if (SC->isValid())
87 return SC->NumMicroOps;
H A DMachineTraceMetrics.cpp110 const MCSchedClassDesc *SC = SchedModel.resolveSchedClass(MI); local
111 if (!SC->isValid())
115 PI = SchedModel.getWriteProcResBegin(SC),
116 PE = SchedModel.getWriteProcResEnd(SC); PI != PE; ++PI) {
1214 const MCSchedClassDesc* SC = ExtraInstrs[I];
1215 if (!SC->isValid())
1218 PI = TE.MTM.SchedModel.getWriteProcResBegin(SC),
1219 PE = TE.MTM.SchedModel.getWriteProcResEnd(SC); PI != PE; ++PI) {
/freebsd-10-stable/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DTransProtectedScope.cpp42 SwitchCase *SC; member in struct:__anon3104::CaseInfo
50 CaseInfo() : SC(0), State(St_Unchecked) {}
52 : SC(S), Range(Range), State(St_Unchecked) {}
175 Pass.TA.insertAfterToken(info.SC->getColonLoc(), " {");
/freebsd-10-stable/gnu/usr.bin/groff/font/devdvi/
H A DMakefile8 MI S EX SA SB SC \
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/
H A DDeclSpec.cpp484 bool DeclSpec::SetStorageClassSpec(Sema &S, SCS SC, SourceLocation Loc, argument
496 switch (SC) {
502 PrevSpec = getSpecifierName(SC);
509 PrevSpec = getSpecifierName(SC);
520 if (SC == SCS_auto)
535 SC == SCS_typedef))
536 return BadSpecifier(SC, (SCS)StorageClassSpec, PrevSpec, DiagID);
538 StorageClassSpec = SC;
540 assert((unsigned)SC == StorageClassSpec && "SCS constants overflow bitfield");
1108 if (DeclSpec::SCS SC
[all...]
H A DJumpDiagnostics.cpp516 for (SwitchCase *SC = SS->getSwitchCaseList(); SC;
517 SC = SC->getNextSwitchCase()) {
518 assert(LabelAndGotoScopes.count(SC) && "Case not visited?");
520 if (CaseStmt *CS = dyn_cast<CaseStmt>(SC))
522 else if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC))
525 Loc = SC->getLocStart();
526 CheckJump(SS, SC, Loc, diag::err_switch_into_protected_scope, 0,
/freebsd-10-stable/contrib/llvm/utils/TableGen/
H A DCodeGenSchedule.cpp549 CodeGenSchedClass &SC = getSchedClass(SCIdx);
550 if (SC.ProcIndices[0] != 0)
555 if (SC.ItinClassDef->getName() != "NoItinerary") {
558 << SC.ItinClassDef->getName() << '\n';
560 if (!SC.Writes.empty()) {
563 for (IdxIter WI = SC.Writes.begin(), WE = SC.Writes.end(); WI != WE; ++WI)
565 for (IdxIter RI = SC.Reads.begin(), RE = SC.Reads.end(); RI != RE; ++RI)
667 CodeGenSchedClass &SC
[all...]
H A DSetTheory.cpp310 const std::vector<Record*> &SC = Set->getSuperClasses(); local
311 for (unsigned i = 0, e = SC.size(); i != e; ++i) {
313 if (!dyn_cast<StringInit>(SC[i]->getNameInit()))
315 if (Expander *Exp = Expanders.lookup(SC[i]->getName())) {
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DUnixAPIChecker.cpp341 SubChecker SC =
353 if (SC)
354 (this->*SC)(C, CE);
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/
H A DMultiplexConsumer.cpp287 if (SemaConsumer *SC = dyn_cast<SemaConsumer>(Consumers[i]))
288 SC->InitializeSema(S);
293 if (SemaConsumer *SC = dyn_cast<SemaConsumer>(Consumers[i]))
294 SC->ForgetSema();
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/
H A DStmt.h344 explicit Stmt(StmtClass SC, EmptyShell) { argument
345 StmtBits.sClass = SC;
346 if (StatisticsEnabled) Stmt::addStmtClass(SC);
350 Stmt(StmtClass SC) { argument
351 StmtBits.sClass = SC;
352 if (StatisticsEnabled) Stmt::addStmtClass(SC);
632 SwitchCase(StmtClass SC, SourceLocation KWLoc, SourceLocation ColonLoc) argument
633 : Stmt(SC), NextSwitchCase(0), KeywordLoc(KWLoc), ColonLoc(ColonLoc) {}
635 SwitchCase(StmtClass SC, EmptyShell) argument
636 : Stmt(SC), NextSwitchCas
643 setNextSwitchCase(SwitchCase *SC) argument
961 setSwitchCaseList(SwitchCase *SC) argument
970 addSwitchCase(SwitchCase *SC) argument
1382 AsmStmt(StmtClass SC, SourceLocation asmloc, bool issimple, bool isvolatile, unsigned numoutputs, unsigned numinputs, unsigned numclobbers) argument
1391 AsmStmt(StmtClass SC, EmptyShell Empty) argument
[all...]
H A DStmtOpenMP.h392 /// \param SC Statement class.
398 OMPExecutableDirective(const T *, StmtClass SC, OpenMPDirectiveKind K, argument
401 : Stmt(SC), Kind(K), StartLoc(StartLoc), EndLoc(EndLoc),
H A DExpr.h107 Expr(StmtClass SC, QualType T, ExprValueKind VK, ExprObjectKind OK, argument
109 : Stmt(SC)
121 explicit Expr(StmtClass SC, EmptyShell) : Stmt(SC) { } argument
2138 CallExpr(const ASTContext& C, StmtClass SC, Expr *fn, unsigned NumPreArgs,
2141 CallExpr(const ASTContext &C, StmtClass SC, unsigned NumPreArgs,
2164 CallExpr(const ASTContext &C, StmtClass SC, EmptyShell Empty);
2650 CastExpr(StmtClass SC, QualType ty, ExprValueKind VK, argument
2652 Expr(SC, ty, VK, OK_Ordinary,
2673 CastExpr(StmtClass SC, EmptyShel argument
2802 ExplicitCastExpr(StmtClass SC, QualType exprTy, ExprValueKind VK, CastKind kind, Expr *op, unsigned PathSize, TypeSourceInfo *writtenTy) argument
2808 ExplicitCastExpr(StmtClass SC, EmptyShell Shell, unsigned PathSize) argument
3070 BinaryOperator(StmtClass SC, EmptyShell Empty) argument
3121 AbstractConditionalOperator(StmtClass SC, QualType T, ExprValueKind VK, ExprObjectKind OK, bool TD, bool VD, bool ID, bool ContainsUnexpandedParameterPack, SourceLocation qloc, SourceLocation cloc) argument
3130 AbstractConditionalOperator(StmtClass SC, EmptyShell Empty) argument
[all...]
/freebsd-10-stable/contrib/flex/
H A Dscan.l101 %x SECT2 SECT2PROLOG SECT3 CODEBLOCK PICKUPDEF SC CARETISBOL NUM QUOTE
501 BEGIN(SC);
748 <SC>{
/freebsd-10-stable/contrib/texinfo/makeinfo/
H A Dxml.h70 VAR, SC, DFN, EMPH, STRONG, CITE, NOTFIXEDWIDTH, I, B, R, SLANTED, SANSSERIF, enumerator in enum:xml_element
/freebsd-10-stable/contrib/groff/font/devdvi/generate/
H A DMakefile35 MI S SC EX SA SB
81 SC: $(srcdir)/textex.map

Completed in 248 milliseconds

1234