Searched refs:SM (Results 51 - 75 of 229) sorted by relevance

12345678910

/freebsd-10.2-release/sys/dev/ath/ath_hal/ar5211/
H A Dar5211_beacon.c163 | SM(bs->bs_intval, AR_BEACON_PERIOD)
164 | SM(bs->bs_timoffset ? bs->bs_timoffset + 4 : 0, AR_BEACON_TIM)
174 | SM(bs->bs_bmissthreshold, AR_RSSI_THR_BM_THR);
H A Dar5211_xmit.c183 SM(ahp->ah_txOkInterruptMask, AR_IMR_S0_QCU_TXOK)
184 | SM(ahp->ah_txDescInterruptMask, AR_IMR_S0_QCU_TXDESC)
187 SM(ahp->ah_txErrInterruptMask, AR_IMR_S1_QCU_TXERR)
188 | SM(ahp->ah_txEolInterruptMask, AR_IMR_S1_QCU_TXEOL)
269 SM(cwMin, AR_D_LCL_IFS_CWMIN)
270 | SM(qi->tqi_cwmax, AR_D_LCL_IFS_CWMAX)
271 | SM(qi->tqi_aifs, AR_D_LCL_IFS_AIFS));
275 SM(INIT_SSH_RETRY, AR_D_RETRY_LIMIT_STA_SH)
276 | SM(INIT_SLG_RETRY, AR_D_RETRY_LIMIT_STA_LG)
277 | SM(q
[all...]
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Rewrite/Frontend/
H A DInclusionRewriter.cpp41 SourceManager &SM; ///< Used to read and manage source files. member in class:__anon3345::InclusionRewriter
96 : PP(PP), SM(PP.getSourceManager()), OS(OS), PredefinesBuffer(0),
153 LastInsertedFileChange->second.Id = FullSourceLoc(Loc, SM).getFileID();
253 SM.getFileOffset(StartToken.getLocation()), EOL, Line);
260 SM.getFileOffset(DirectiveToken.getLocation()) + DirectiveToken.getLength(),
351 const MemoryBuffer &FromFile = *SM.getBuffer(FileId, &Invalid);
363 if (SM.getFileIDSize(FileId) == 0)
422 FileType = SM.getFileCharacteristic(RawToken.getLocation());
467 OutputContentUpTo(FromFile, NextToWrite, SM.getFileOffset(Loc),
471 SM
521 SourceManager &SM = PP.getSourceManager(); local
[all...]
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DTransforms.cpp139 SourceManager &SM = Ctx.getSourceManager(); local
141 if (!Lexer::isAtEndOfMacroExpansion(loc, SM, Ctx.getLangOpts(), &loc))
144 loc = Lexer::getLocForEndOfToken(loc, /*Offset=*/0, SM, Ctx.getLangOpts());
147 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(loc);
151 StringRef file = SM.getBufferData(locInfo.first, &invalidTemp);
158 Lexer lexer(SM.getLocForStartOfFile(locInfo.first),
395 SourceManager &SM = Pass.Ctx.getSourceManager();
398 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(atLoc);
402 StringRef file = SM.getBufferData(locInfo.first, &invalidTemp);
409 Lexer lexer(SM
554 const SourceManager &SM = pass.Ctx.getSourceManager(); local
[all...]
H A DTransBlockObjCVariable.cpp142 SourceManager &SM = Pass.Ctx.getSourceManager(); local
144 Pass.TA.replaceText(SM.getExpansionLoc(attr->getLocation()),
H A DTransGCAttrs.cpp93 SourceManager &SM = Ctx.getSourceManager(); local
95 Loc = SM.getImmediateExpansionRange(Loc).first;
99 SM.getSpellingLoc(TL.getAttrEnumOperandLoc()),
100 Buf, SM, Ctx.getLangOpts(), &Invalid);
179 SourceManager &SM = MigrateCtx.Pass.Ctx.getSourceManager();
180 return SM.isInFileID(SM.getExpansionLoc(Loc), SM.getMainFileID());
/freebsd-10.2-release/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_timer.c148 (SM(AR_GENTMR_BIT(index), AR_IMR_S5_GENTIMER_THRESH) |
149 SM(AR_GENTMR_BIT(index), AR_IMR_S5_GENTIMER_TRIG)));
168 (SM(AR_GENTMR_BIT(index), AR_IMR_S5_GENTIMER_THRESH) |
169 SM(AR_GENTMR_BIT(index), AR_IMR_S5_GENTIMER_TRIG)));
H A Dar9300_xmit.c72 AR_TXCFG, (txcfg &~ AR_FTRIG) | SM(new_level, AR_FTRIG));
235 SM(ahp->ah_tx_ok_interrupt_mask, AR_IMR_S0_QCU_TXOK));
237 SM(ahp->ah_tx_err_interrupt_mask, AR_IMR_S1_QCU_TXERR)
238 | SM(ahp->ah_tx_eol_interrupt_mask, AR_IMR_S1_QCU_TXEOL));
326 OS_REG_WRITE(ah, AR_DLCL_IFS(q), SM(cw_min, AR_D_LCL_IFS_CWMIN)
327 | SM(qi->tqi_cwmax, AR_D_LCL_IFS_CWMAX)
328 | SM(qi->tqi_aifs, AR_D_LCL_IFS_AIFS));
333 SM(INIT_SSH_RETRY, AR_D_RETRY_LIMIT_STA_SH) |
334 SM(INIT_SLG_RETRY, AR_D_RETRY_LIMIT_STA_LG) |
335 SM(q
[all...]
/freebsd-10.2-release/contrib/llvm/tools/clang/include/clang/Edit/
H A DEditedSource.h48 EditedSource(const SourceManager &SM, const LangOptions &LangOpts, argument
51 : SourceMgr(SM), LangOpts(LangOpts), PPRec(PPRec),
/freebsd-10.2-release/contrib/llvm/lib/AsmParser/
H A DLLLexer.h33 SourceMgr &SM; member in class:llvm::LLLexer
46 explicit LLLexer(MemoryBuffer *StartBuf, SourceMgr &SM, SMDiagnostic &,
/freebsd-10.2-release/contrib/llvm/lib/Target/X86/
H A DX86AsmPrinter.h28 StackMaps SM; member in class:llvm::X86AsmPrinter
42 : AsmPrinter(TM, Streamer), SM(*this, stackmapOperandParser) {
/freebsd-10.2-release/sys/dev/ath/ath_hal/ar5416/
H A Dar5416_radar.c131 val |= SM(pe->pe_firpwr, AR_PHY_RADAR_0_FIRPWR);
135 val |= SM(pe->pe_rrssi, AR_PHY_RADAR_0_RRSSI);
139 val |= SM(pe->pe_height, AR_PHY_RADAR_0_HEIGHT);
143 val |= SM(pe->pe_prssi, AR_PHY_RADAR_0_PRSSI);
147 val |= SM(pe->pe_inband, AR_PHY_RADAR_0_INBAND);
178 val |= SM(pe->pe_relstep, AR_PHY_RADAR_1_RELSTEP_THRESH);
184 val |= SM(pe->pe_relpwr, AR_PHY_RADAR_1_RELPWR_THRESH);
205 val |= SM(pe->pe_maxlen, AR_PHY_RADAR_1_MAXLEN);
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DObjCUnusedIVarsChecker.cpp103 SourceManager &SM) {
108 if (SM.getFileID(L) == FID)
161 SourceManager &SM = BR.getSourceManager();
162 Scan(M, D->getDeclContext(), SM.getFileID(D->getLocation()), SM);
102 Scan(IvarUsageMap &M, const DeclContext *C, const FileID FID, SourceManager &SM) argument
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/AST/
H A DCommentLexer.cpp13 void Token::dump(const Lexer &L, const SourceManager &SM) const {
15 Loc.dump(SM);
16 llvm::errs() << " " << Length << " \"" << L.getSpelling(*this, SM) << "\"\n";
H A DASTDumper.cpp96 const SourceManager *SM; member in class:__anon3120::ASTDumper
154 const SourceManager *SM)
155 : OS(OS), Traits(Traits), SM(SM), IsFirstLine(true), MoreChildren(false),
157 ShowColors(SM && SM->getDiagnostics().getShowColors()) { }
160 const SourceManager *SM, bool ShowColors)
161 : OS(OS), Traits(Traits), SM(SM), IsFirstLine(true), MoreChildren(false),
409 SourceLocation SpellingLoc = SM
153 ASTDumper(raw_ostream &OS, const CommandTraits *Traits, const SourceManager *SM) argument
159 ASTDumper(raw_ostream &OS, const CommandTraits *Traits, const SourceManager *SM, bool ShowColors) argument
2143 dump(llvm::errs(), SM); local
[all...]
H A DASTTypeTraits.cpp81 void DynTypedNode::dump(llvm::raw_ostream &OS, SourceManager &SM) const {
85 S->dump(OS, SM);
/freebsd-10.2-release/sys/dev/ath/ath_hal/ar9001/
H A Dar9160_attach.c92 uint32_t pll = SM(0x5, AR_RTC_SOWL_PLL_REFDIV);
95 pll |= SM(0x1, AR_RTC_SOWL_PLL_CLKSEL);
97 pll |= SM(0x2, AR_RTC_SOWL_PLL_CLKSEL);
100 pll |= SM(0x50, AR_RTC_SOWL_PLL_DIV);
102 pll |= SM(0x58, AR_RTC_SOWL_PLL_DIV);
104 pll |= SM(0x58, AR_RTC_SOWL_PLL_DIV);
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenAction.cpp199 static void InlineAsmDiagHandler(const llvm::SMDiagnostic &SM,void *Context, argument
202 ((BackendConsumer*)Context)->InlineAsmDiagHandler2(SM, Loc);
392 SourceManager &SM = CI.getSourceManager(); local
393 const llvm::MemoryBuffer *MainFile = SM.getBuffer(SM.getMainFileID(),
407 SourceLocation Loc = SM.translateFileLineCol(
408 SM.getFileEntryForID(SM.getMainFileID()), Err.getLineNo(),
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Lex/
H A DPPConditionalDirectiveRecord.cpp19 PPConditionalDirectiveRecord::PPConditionalDirectiveRecord(SourceManager &SM) argument
20 : SourceMgr(SM) {
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseAST.cpp64 const SourceManager &SM = P.getPreprocessor().getSourceManager(); local
66 const char *Spelling = SM.getCharacterData(Tok.getLocation(), &Invalid);
/freebsd-10.2-release/contrib/llvm/include/llvm/MC/
H A DMCInstrItineraries.h125 InstrItineraryData(const MCSchedModel *SM, const InstrStage *S, argument
127 : SchedModel(SM), Stages(S), OperandCycles(OS), Forwardings(F),
/freebsd-10.2-release/sys/dev/ath/ath_hal/ar5312/
H A Dar5312_reset.c241 SM(2, AR_PHY_ADC_CTL_OFF_INBUFGAIN) |
242 SM(2, AR_PHY_ADC_CTL_ON_INBUFGAIN) |
255 SM((ee->ee_cckOfdmPwrDelta*-1), AR_PHY_TXPWRADJ_CCK_GAIN_DELTA) |
256 SM((cckOfdmPwrDelta*-1), AR_PHY_TXPWRADJ_CCK_PCDAC_INDEX));
287 SM(2, AR_PHY_SIGMA_DELTA_ADC_SEL) |
288 SM(4, AR_PHY_SIGMA_DELTA_FILT2) |
289 SM(0x16, AR_PHY_SIGMA_DELTA_FILT1) |
290 SM(0, AR_PHY_SIGMA_DELTA_ADC_CLIP));
539 SM(2, AR_NOACK_2BIT_VALUE) |
540 SM(
[all...]
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp556 static void CompactPathDiagnostic(PathPieces &path, const SourceManager& SM);
1072 SourceManager &SM = PDB.getSourceManager(); local
1073 SourceLocation ContainerRBeg = SM.getExpansionLoc(ContainerR.getBegin());
1074 SourceLocation ContainerREnd = SM.getExpansionLoc(ContainerR.getEnd());
1075 SourceLocation ContaineeRBeg = SM.getExpansionLoc(ContaineeR.getBegin());
1076 SourceLocation ContaineeREnd = SM.getExpansionLoc(ContaineeR.getEnd());
1078 unsigned ContainerBegLine = SM.getExpansionLineNumber(ContainerRBeg);
1079 unsigned ContainerEndLine = SM.getExpansionLineNumber(ContainerREnd);
1080 unsigned ContaineeBegLine = SM.getExpansionLineNumber(ContaineeRBeg);
1081 unsigned ContaineeEndLine = SM
1400 const SourceManager& SM = PDB.getSourceManager(); local
1645 const SourceManager& SM = PDB.getSourceManager(); local
1976 addContextEdges(PathPieces &pieces, SourceManager &SM, const ParentMap &PM, const LocationContext *LCtx) argument
2129 getLengthOnSingleLine(SourceManager &SM, SourceRange Range) argument
2159 getLengthOnSingleLine(SourceManager &SM, const Stmt *S) argument
2180 removeContextCycles(PathPieces &Path, SourceManager &SM, ParentMap &PM) argument
2249 removePunyEdges(PathPieces &path, SourceManager &SM, ParentMap &PM) argument
2331 optimizeEdges(PathPieces &path, SourceManager &SM, OptimizedCallsSet &OCS, LocationContextMap &LCM) argument
2517 dropFunctionEntryEdge(PathPieces &Path, LocationContextMap &LCM, SourceManager &SM) argument
2988 CompactPathDiagnostic(PathPieces &path, const SourceManager& SM) argument
3215 SourceManager &SM = getSourceManager(); local
[all...]
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Frontend/
H A DDependencyFile.cpp112 SourceManager &SM = PP->getSourceManager();
115 SM.getFileEntryForID(SM.getFileID(SM.getExpansionLoc(Loc)));
/freebsd-10.2-release/contrib/llvm/tools/clang/include/clang/Rewrite/Core/
H A DRewriter.h152 explicit Rewriter(SourceManager &SM, const LangOptions &LO) argument
153 : SourceMgr(&SM), LangOpts(&LO) {}
156 void setSourceMgr(SourceManager &SM, const LangOptions &LO) { argument
157 SourceMgr = &SM;

Completed in 133 milliseconds

12345678910