Home
last modified time | relevance | path

Searched refs:SM (Results 1 – 25 of 293) sorted by relevance

12345678910>>...12

/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/
DDiagnosticRenderer.cpp43 const SourceManager &SM, in getImmediateMacroName() argument
47 while (SM.isMacroArgExpansion(Loc)) in getImmediateMacroName()
48 Loc = SM.getImmediateExpansionRange(Loc).first; in getImmediateMacroName()
52 if (!SM.getFileEntryForID(SM.getFileID(SM.getSpellingLoc(Loc)))) in getImmediateMacroName()
58 Loc = SM.getSpellingLoc(SM.getImmediateExpansionRange(Loc).first); in getImmediateMacroName()
62 std::pair<FileID, unsigned> ExpansionInfo = SM.getDecomposedLoc(Loc); in getImmediateMacroName()
63 unsigned MacroTokenLength = Lexer::MeasureTokenLength(Loc, SM, LangOpts); in getImmediateMacroName()
64 StringRef ExpansionBuffer = SM.getBufferData(ExpansionInfo.first); in getImmediateMacroName()
93 const SourceManager &SM, const LangOptions &LangOpts, in mergeFixits() argument
95 edit::Commit commit(SM, LangOpts); in mergeFixits()
[all …]
DVerifyDiagnosticConsumer.cpp55 SourceManager &SM; member in __anon6b7d1e610111::VerifyFileTracker
58 VerifyFileTracker(VerifyDiagnosticConsumer &Verify, SourceManager &SM) in VerifyFileTracker() argument
59 : Verify(Verify), SM(SM) { } in VerifyFileTracker()
66 Verify.UpdateParsedFileStatus(SM, SM.getFileID(Loc), in FileChanged()
285 static bool ParseDirective(StringRef S, ExpectedData *ED, SourceManager &SM, in ParseDirective() argument
288 DiagnosticsEngine &Diags = PP ? PP->getDiagnostics() : SM.getDiagnostics(); in ParseDirective()
357 unsigned ExpectedLine = SM.getSpellingLineNumber(Pos, &Invalid); in ParseDirective()
361 ExpectedLoc = SM.translateLineCol(SM.getFileID(Pos), ExpectedLine, 1); in ParseDirective()
366 ExpectedLoc = SM.translateLineCol(SM.getFileID(Pos), Line, 1); in ParseDirective()
382 if (SM.translateFile(FE).isInvalid()) in ParseDirective()
[all …]
DSerializedDiagnosticPrinter.cpp67 const SourceManager *SM,
73 const SourceManager &SM) {} in emitDiagnosticLoc() argument
76 const SourceManager *SM);
82 const SourceManager &SM);
138 const SourceManager *SM,
144 const SourceManager &SM);
147 void EmitCharSourceRange(CharSourceRange R, const SourceManager &SM);
160 void AddLocToRecord(SourceLocation Loc, const SourceManager *SM,
166 const SourceManager *SM, in AddLocToRecord() argument
168 AddLocToRecord(Loc, SM, SM ? SM->getPresumedLoc(Loc) : PresumedLoc(), in AddLocToRecord()
[all …]
DTextDiagnostic.cpp685 const SourceManager *SM, in emitDiagnosticMessage() argument
691 emitDiagnosticLoc(Loc, PLoc, Level, Ranges, *SM); in emitDiagnosticMessage()
784 const SourceManager &SM) { in emitDiagnosticLoc() argument
787 FileID FID = SM.getFileID(Loc); in emitDiagnosticLoc()
789 const FileEntry* FE = SM.getFileEntryForID(FID); in emitDiagnosticLoc()
832 SM.getFileID(SM.getExpansionLoc(Loc)); in emitDiagnosticLoc()
841 SourceLocation B = SM.getExpansionLoc(RI->getBegin()); in emitDiagnosticLoc()
842 SourceLocation E = SM.getExpansionLoc(RI->getEnd()); in emitDiagnosticLoc()
850 E = SM.getExpansionRange(RI->getEnd()).second; in emitDiagnosticLoc()
852 std::pair<FileID, unsigned> BInfo = SM.getDecomposedLoc(B); in emitDiagnosticLoc()
[all …]
/freebsd-10-stable/sys/contrib/dev/ath/ath_hal/ar9300/
Dar9300_aic.c453 ahp->ah_aic_sram[i] = (SM(aic_sram[i].sram.vga_dir_sign, in ar9300_aic_cal_post_process()
455 SM(aic_sram[i].sram.vga_quad_sign, in ar9300_aic_cal_post_process()
457 SM(aic_sram[i].sram.com_att_6db, in ar9300_aic_cal_post_process()
459 SM(aic_sram[i].sram.valid, in ar9300_aic_cal_post_process()
461 SM(aic_sram[i].sram.rot_dir_att_db, in ar9300_aic_cal_post_process()
463 SM(aic_sram[i].sram.rot_quad_att_db, in ar9300_aic_cal_post_process()
525 (SM(0, AR_PHY_AIC_MON_ENABLE) | in ar9300_aic_calibration()
526 SM(40, AR_PHY_AIC_CAL_MAX_HOP_COUNT) | in ar9300_aic_calibration()
527 SM(1, AR_PHY_AIC_CAL_MIN_VALID_COUNT) | //26 in ar9300_aic_calibration()
528 SM(37, AR_PHY_AIC_F_WLAN) | in ar9300_aic_calibration()
[all …]
Dar9300_radar.c241 val |= SM(pe->pe_firpwr, AR_PHY_RADAR_0_FIRPWR);
245 val |= SM(pe->pe_rrssi, AR_PHY_RADAR_0_RRSSI);
249 val |= SM(pe->pe_height, AR_PHY_RADAR_0_HEIGHT);
256 val |= SM(AR9300_DFS_PRSSI_CAC, AR_PHY_RADAR_0_PRSSI);
259 val |= SM(pe->pe_prssi, AR_PHY_RADAR_0_PRSSI);
262 val |= SM(pe->pe_prssi, AR_PHY_RADAR_0_PRSSI);
267 val |= SM(pe->pe_inband, AR_PHY_RADAR_0_INBAND);
275 val |= SM(pe->pe_maxlen, AR_PHY_RADAR_1_MAXLEN);
279 val |= SM(pe->pe_relstep, AR_PHY_RADAR_1_RELSTEP_THRESH);
283 val |= SM(pe->pe_relpwr, AR_PHY_RADAR_1_RELPWR_THRESH);
[all …]
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
DPlistDiagnostics.cpp84 const SourceManager* SM, SourceLocation L) { in AddFID() argument
86 FileID FID = SM->getFileID(SM->getExpansionLoc(L)); in AddFID()
93 static unsigned GetFID(const FIDMap& FIDs, const SourceManager &SM, in GetFID() argument
95 FileID FID = SM.getFileID(SM.getExpansionLoc(L)); in GetFID()
106 static void EmitLocation(raw_ostream &o, const SourceManager &SM, in EmitLocation() argument
111 FullSourceLoc Loc(SM.getExpansionLoc(L), const_cast<SourceManager&>(SM)); in EmitLocation()
115 extend ? Lexer::MeasureTokenLength(Loc, SM, LangOpts) - 1 : 0; in EmitLocation()
123 << GetFID(FM, SM, Loc) << "</integer>\n"; in EmitLocation()
127 static void EmitLocation(raw_ostream &o, const SourceManager &SM, in EmitLocation() argument
131 EmitLocation(o, SM, LangOpts, L.asLocation(), FM, indent, extend); in EmitLocation()
[all …]
DPathDiagnostic.cpp334 const SourceManager &SM = XL.getManager(); in comparePiece() local
341 return SM.isBeforeInTranslationUnit(XR.getBegin(), YR.getBegin()); in comparePiece()
342 return SM.isBeforeInTranslationUnit(XR.getEnd(), YR.getEnd()); in comparePiece()
401 const SourceManager &SM = XL.getManager(); in compare() local
402 return SM.isBeforeInTranslationUnit(XDL, YDL); in compare()
544 const SourceManager &SM) { in getLocationForCaller() argument
551 SM, CallerCtx); in getLocationForCaller()
555 SM, CallerCtx); in getLocationForCaller()
560 SM, CallerCtx); in getLocationForCaller()
564 return PathDiagnosticLocation(Dtor.getDeleteExpr(), SM, CallerCtx); in getLocationForCaller()
[all …]
/freebsd-10-stable/contrib/llvm/tools/clang/lib/ARCMigrate/
DPlistReporter.cpp23 const SourceManager &SM, SourceLocation L) { in AddFID() argument
25 FileID FID = SM.getFileID(SM.getExpansionLoc(L)); in AddFID()
32 static unsigned GetFID(const FIDMap& FIDs, const SourceManager &SM, in GetFID() argument
34 FileID FID = SM.getFileID(SM.getExpansionLoc(L)); in GetFID()
45 static void EmitLocation(raw_ostream& o, const SourceManager &SM, in EmitLocation() argument
50 FullSourceLoc Loc(SM.getExpansionLoc(L), const_cast<SourceManager&>(SM)); in EmitLocation()
54 extend ? Lexer::MeasureTokenLength(Loc, SM, LangOpts) - 1 : 0; in EmitLocation()
62 << GetFID(FM, SM, Loc) << "</integer>\n"; in EmitLocation()
66 static void EmitRange(raw_ostream& o, const SourceManager &SM, in EmitRange() argument
71 EmitLocation(o, SM, LangOpts, R.getBegin(), FM, indent+1); in EmitRange()
[all …]
DTransformActions.cpp179 SourceManager &SM,Preprocessor &PP);
386 SourceManager &SM = Ctx.getSourceManager(); in canInsert() local
387 if (SM.isInSystemHeader(SM.getExpansionLoc(loc))) in canInsert()
399 SourceManager &SM = Ctx.getSourceManager(); in canInsertAfterToken() local
400 if (SM.isInSystemHeader(SM.getExpansionLoc(loc))) in canInsertAfterToken()
421 SourceManager &SM = Ctx.getSourceManager(); in canReplaceText() local
422 loc = SM.getExpansionLoc(loc); in canReplaceText()
425 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(loc); in canReplaceText()
429 StringRef file = SM.getBufferData(locInfo.first, &invalidTemp); in canReplaceText()
482 SourceManager &SM = Ctx.getSourceManager(); in commitReplaceText() local
[all …]
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Frontend/
DDiagnosticRenderer.h79 const SourceManager *SM,
85 const SourceManager &SM) = 0;
93 const SourceManager &SM) = 0;
96 const SourceManager &SM) = 0;
99 const SourceManager &SM) = 0;
102 const SourceManager &SM) = 0;
112 DiagnosticsEngine::Level Level, const SourceManager &SM);
113 void emitIncludeStackRecursively(SourceLocation Loc, const SourceManager &SM);
114 void emitImportStack(SourceLocation Loc, const SourceManager &SM);
116 const SourceManager &SM);
[all …]
DTextDiagnostic.h84 const SourceManager *SM,
90 const SourceManager &SM);
96 const SourceManager &SM) { in emitCodeContext() argument
97 emitSnippetAndCaret(Loc, Level, Ranges, Hints, SM); in emitCodeContext()
103 const SourceManager &SM);
107 const SourceManager &SM);
111 const SourceManager &SM);
117 const SourceManager &SM);
121 void emitParseableFixits(ArrayRef<FixItHint> Hints, const SourceManager &SM);
/freebsd-10-stable/sys/dev/ath/ath_hal/ar5416/
Dar5416_xmit.c79 SM(10, AR_QUIET2_QUIET_DUR)); in ar5416StopTxDma()
125 (SM((_series)[_index].Tries, AR_XmitDataTries##_index))
128 (SM((_series)[_index].Rate, AR_XmitRate##_index))
131 (SM((_series)[_index].PktDuration, AR_PacketDur##_index) |\
139 |SM((_series)[_index].ChSel, AR_ChainSel##_index)
372 ads->ds_ctl2 = SM(txTries0, AR_XmitDataTries0) in ar5416SetupTxDesc()
380 ads->ds_ctl7 = SM(ahp->ah_tx_chainmask, AR_ChainSel0) in ar5416SetupTxDesc()
381 | SM(ahp->ah_tx_chainmask, AR_ChainSel1) in ar5416SetupTxDesc()
382 | SM(ahp->ah_tx_chainmask, AR_ChainSel2) in ar5416SetupTxDesc()
383 | SM(ahp->ah_tx_chainmask, AR_ChainSel3) in ar5416SetupTxDesc()
[all …]
Dar5416_btcoex.c66 SM(btconf->bt_time_extend, AR_BT_TIME_EXTEND) | in ar5416BTCoexConfig()
67 SM(btconf->bt_txstate_extend, AR_BT_TXSTATE_EXTEND) | in ar5416BTCoexConfig()
68 SM(btconf->bt_txframe_extend, AR_BT_TX_FRAME_EXTEND) | in ar5416BTCoexConfig()
69 SM(btconf->bt_mode, AR_BT_MODE) | in ar5416BTCoexConfig()
70 SM(btconf->bt_quiet_collision, AR_BT_QUIET) | in ar5416BTCoexConfig()
71 SM(rxClearPolarity, AR_BT_RX_CLEAR_POLARITY) | in ar5416BTCoexConfig()
72 SM(btconf->bt_priority_time, AR_BT_PRIORITY_TIME) | in ar5416BTCoexConfig()
73 SM(btconf->bt_first_slot_time, AR_BT_FIRST_SLOT_TIME); in ar5416BTCoexConfig()
75 ahp->ah_btCoexMode2 |= SM(btconf->bt_hold_rxclear, in ar5416BTCoexConfig()
89 ahp->ah_btCoexMode |= SM(qnum, AR_BT_QCU_THRESH); in ar5416BTCoexSetQcuThresh()
[all …]
/freebsd-10-stable/sys/dev/ath/ath_hal/ar9002/
Dar9285_diversity.c91 regVal |= SM(ant_div_control1, AR_PHY_9285_ANT_DIV_CTL); in ar9285SetAntennaSwitch()
96 regVal |= SM(ant_div_control2, AR_PHY_9285_ANT_DIV_ALT_LNACONF); in ar9285SetAntennaSwitch()
97 regVal |= SM((ant_div_control2 >> 2), AR_PHY_9285_ANT_DIV_MAIN_LNACONF); in ar9285SetAntennaSwitch()
98 regVal |= SM((ant_div_control1 >> 1), AR_PHY_9285_ANT_DIV_ALT_GAINTB); in ar9285SetAntennaSwitch()
99 regVal |= SM((ant_div_control1 >> 2), AR_PHY_9285_ANT_DIV_MAIN_GAINTB); in ar9285SetAntennaSwitch()
105 regVal |= SM(HAL_ANT_DIV_COMB_LNA2, AR_PHY_9285_ANT_DIV_ALT_LNACONF); in ar9285SetAntennaSwitch()
106 regVal |= SM(HAL_ANT_DIV_COMB_LNA1, AR_PHY_9285_ANT_DIV_MAIN_LNACONF); in ar9285SetAntennaSwitch()
107 regVal |= SM(AR_PHY_9285_ANT_DIV_GAINTB_0, AR_PHY_9285_ANT_DIV_ALT_GAINTB); in ar9285SetAntennaSwitch()
108 regVal |= SM(AR_PHY_9285_ANT_DIV_GAINTB_1, AR_PHY_9285_ANT_DIV_MAIN_GAINTB); in ar9285SetAntennaSwitch()
114 regVal |= SM(HAL_ANT_DIV_COMB_LNA1, AR_PHY_9285_ANT_DIV_ALT_LNACONF); in ar9285SetAntennaSwitch()
[all …]
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Rewrite/Frontend/
DRewriteMacros.cpp64 SourceManager &SM = PP.getSourceManager(); in LexRawTokensFromMainFile() local
68 const llvm::MemoryBuffer *FromFile = SM.getBuffer(SM.getMainFileID()); in LexRawTokensFromMainFile()
69 Lexer RawLex(SM.getMainFileID(), FromFile, SM, PP.getLangOpts()); in LexRawTokensFromMainFile()
91 SourceManager &SM = PP.getSourceManager(); in RewriteMacrosInInput() local
94 Rewrite.setSourceMgr(SM, PP.getLangOpts()); in RewriteMacrosInInput()
95 RewriteBuffer &RB = Rewrite.getEditBuffer(SM.getMainFileID()); in RewriteMacrosInInput()
115 SourceLocation PPLoc = SM.getExpansionLoc(PPTok.getLocation()); in RewriteMacrosInInput()
118 if (!SM.isWrittenInMainFile(PPLoc)) { in RewriteMacrosInInput()
134 RB.InsertTextAfter(SM.getFileOffset(RawTok.getLocation()), "//"); in RewriteMacrosInInput()
140 RB.InsertTextAfter(SM.getFileOffset(RawTok.getLocation()), "//"); in RewriteMacrosInInput()
[all …]
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Analysis/
DCFGStmtMap.cpp28 SMap *SM = AsMap(M); in getBlock() local
34 SMap::iterator I = SM->find(X); in getBlock()
35 if (I != SM->end()) { in getBlock()
39 (*SM)[X] = B; in getBlock()
49 static void Accumulate(SMap &SM, CFGBlock *B) { in Accumulate() argument
57 CFGBlock *&Entry = SM[CS->getStmt()]; in Accumulate()
69 SM[Label] = B; in Accumulate()
75 SM[Term] = B; in Accumulate()
82 SMap *SM = new SMap(); in Build() local
87 Accumulate(*SM, *I); in Build()
[all …]
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Basic/
DSourceLocation.cpp28 Loc.print(OS, SM); in print()
38 void SourceLocation::print(raw_ostream &OS, const SourceManager &SM)const{ in print()
45 PresumedLoc PLoc = SM.getPresumedLoc(*this); in print()
57 SM.getExpansionLoc(*this).print(OS, SM); in print()
60 SM.getSpellingLoc(*this).print(OS, SM); in print()
64 std::string SourceLocation::printToString(const SourceManager &SM) const { in printToString()
67 print(OS, SM); in printToString()
71 void SourceLocation::dump(const SourceManager &SM) const { in dump()
72 print(llvm::errs(), SM); in dump()
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Edit/
DCommit.cpp19 SourceLocation Commit::Edit::getFileLocation(SourceManager &SM) const { in getFileLocation()
20 SourceLocation Loc = SM.getLocForStartOfFile(Offset.getFID()); in getFileLocation()
26 CharSourceRange Commit::Edit::getFileRange(SourceManager &SM) const { in getFileRange()
27 SourceLocation Loc = getFileLocation(SM); in getFileRange()
31 CharSourceRange Commit::Edit::getInsertFromRange(SourceManager &SM) const { in getInsertFromRange()
32 SourceLocation Loc = SM.getLocForStartOfFile(InsertFromRangeOffs.getFID()); in getInsertFromRange()
229 const SourceManager &SM = SourceMgr; in canInsert() local
230 while (SM.isMacroArgExpansion(loc)) in canInsert()
231 loc = SM.getImmediateSpellingLoc(loc); in canInsert()
237 if (SM.isInSystemHeader(loc) && ForceCommitInSystemHeader) in canInsert()
[all …]
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Rewrite/Core/
DHTMLRewrite.cpp34 SourceManager &SM = R.getSourceMgr(); in HighlightRange() local
35 B = SM.getExpansionLoc(B); in HighlightRange()
36 E = SM.getExpansionLoc(E); in HighlightRange()
37 FileID FID = SM.getFileID(B); in HighlightRange()
38 assert(SM.getFileID(E) == FID && "B/E not in the same file!"); in HighlightRange()
40 unsigned BOffset = SM.getFileOffset(B); in HighlightRange()
41 unsigned EOffset = SM.getFileOffset(E); in HighlightRange()
47 const char *BufferStart = SM.getBufferData(FID, &Invalid).data(); in HighlightRange()
360 const SourceManager &SM = PP.getSourceManager(); in SyntaxHighlight() local
361 const llvm::MemoryBuffer *FromFile = SM.getBuffer(FID); in SyntaxHighlight()
[all …]
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Lex/
DTokenLexer.cpp46 SourceManager &SM = PP.getSourceManager(); in Init() local
47 MacroStartSLocOffset = SM.getNextLocalOffset(); in Init()
59 MacroDefStart = SM.getExpansionLoc(Tokens[0].getLocation()); in Init()
60 MacroDefLength = Macro->getDefinitionLength(SM); in Init()
61 MacroExpansionStart = SM.createExpansionLoc(MacroDefStart, in Init()
434 SourceManager &SM = PP.getSourceManager(); in Lex() local
463 SM.isBeforeInSLocAddrSpace(Tok.getLocation(), MacroStartSLocOffset)) { in Lex()
466 instLoc = SM.createExpansionLoc(Tok.getLocation(), in Lex()
619 SourceManager &SM = PP.getSourceManager(); in PasteTokens() local
621 SM.createExpansionLoc(PasteOpLoc, ExpandLocStart, ExpandLocEnd, 2); in PasteTokens()
[all …]
DLexer.cpp158 const SourceManager &SM, const LangOptions &langOpts) in Lexer() argument
159 : FileLoc(SM.getLocForStartOfFile(FID)), LangOpts(langOpts) { in Lexer()
187 SourceManager &SM = PP.getSourceManager(); in Create_PragmaLexer() local
190 FileID SpellingFID = SM.getFileID(SpellingLoc); in Create_PragmaLexer()
191 const llvm::MemoryBuffer *InputFile = SM.getBuffer(SpellingFID); in Create_PragmaLexer()
197 const char *StrData = SM.getCharacterData(SpellingLoc); in Create_PragmaLexer()
205 L->FileLoc = SM.createExpansionLoc(SM.getLocForStartOfFile(SpellingFID), in Create_PragmaLexer()
306 const SourceManager &SM, in getSpelling() argument
310 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(loc); in getSpelling()
314 StringRef file = SM.getBufferData(locInfo.first, &invalidTemp); in getSpelling()
[all …]
/freebsd-10-stable/contrib/llvm/tools/llvm-mc/
DDisassembler.cpp53 SourceMgr &SM, raw_ostream &Out, in PrintInsts() argument
70 SM.PrintMessage(SMLoc::getFromPointer(Bytes[Index].second), in PrintInsts()
83 SM.PrintMessage(SMLoc::getFromPointer(Bytes[Index].second), in PrintInsts()
126 SourceMgr &SM) { in ByteArrayFromString() argument
140 SM.PrintMessage(SMLoc::getFromPointer(Value.data()), SourceMgr::DK_Error, in ByteArrayFromString()
159 SourceMgr &SM, in disassemble() argument
182 SM.PrintMessage(SMLoc::getFromPointer(Str.data()), SourceMgr::DK_Error, in disassemble()
191 SM.PrintMessage(SMLoc::getFromPointer(Str.data()), SourceMgr::DK_Error, in disassemble()
201 ErrorOccurred |= ByteArrayFromString(ByteArray, Str, SM); in disassemble()
204 ErrorOccurred |= PrintInsts(*DisAsm, ByteArray, SM, Out, Streamer, in disassemble()
[all …]
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Lex/
DPPConditionalDirectiveRecord.h43 SourceManager &SM; variable
45 explicit Comp(SourceManager &SM) : SM(SM) {} in Comp() argument
48 return SM.isBeforeInTranslationUnit(LHS.getLoc(), RHS.getLoc()); in operator()
51 return SM.isBeforeInTranslationUnit(LHS.getLoc(), RHS); in operator()
54 return SM.isBeforeInTranslationUnit(LHS, RHS.getLoc()); in operator()
67 explicit PPConditionalDirectiveRecord(SourceManager &SM);
/freebsd-10-stable/sys/dev/ath/ath_hal/ar5212/
Dar5212_xmit.c71 (txcfg &~ AR_FTRIG) | SM(newLevel, AR_FTRIG)); in ar5212UpdateTxTrigLevel()
216 SM(ahp->ah_txOkInterruptMask, AR_IMR_S0_QCU_TXOK) in setTxQInterrupts()
217 | SM(ahp->ah_txDescInterruptMask, AR_IMR_S0_QCU_TXDESC) in setTxQInterrupts()
220 SM(ahp->ah_txErrInterruptMask, AR_IMR_S1_QCU_TXERR) in setTxQInterrupts()
221 | SM(ahp->ah_txEolInterruptMask, AR_IMR_S1_QCU_TXEOL) in setTxQInterrupts()
308 SM(cwMin, AR_D_LCL_IFS_CWMIN) in ar5212ResetTxQueue()
309 | SM(qi->tqi_cwmax, AR_D_LCL_IFS_CWMAX) in ar5212ResetTxQueue()
310 | SM(qi->tqi_aifs, AR_D_LCL_IFS_AIFS)); in ar5212ResetTxQueue()
314 SM(INIT_SSH_RETRY, AR_D_RETRY_LIMIT_STA_SH) in ar5212ResetTxQueue()
315 | SM(INIT_SLG_RETRY, AR_D_RETRY_LIMIT_STA_LG) in ar5212ResetTxQueue()
[all …]

12345678910>>...12