Searched defs:RS (Results 1 - 25 of 46) sorted by relevance

12

/external/clang/lib/StaticAnalyzer/Checkers/
H A DReturnPointerRangeChecker.cpp31 void checkPreStmt(const ReturnStmt *RS, CheckerContext &C) const;
35 void ReturnPointerRangeChecker::checkPreStmt(const ReturnStmt *RS, argument
39 const Expr *RetE = RS->getRetValue();
H A DReturnUndefChecker.cpp35 void checkPreStmt(const ReturnStmt *RS, CheckerContext &C) const;
39 void ReturnUndefChecker::checkPreStmt(const ReturnStmt *RS, argument
41 const Expr *RetE = RS->getRetValue();
H A DCheckObjCDealloc.cpp165 Selector RS = Ctx.Selectors.getSelector(0, &RII); local
195 if (scan_ivar_release(MD->getBody(), ID, PD, RS, SelfII, Ctx)
H A DStackAddrEscapeChecker.cpp35 void checkPreStmt(const ReturnStmt *RS, CheckerContext &C) const;
119 void StackAddrEscapeChecker::checkPreStmt(const ReturnStmt *RS, argument
122 const Expr *RetE = RS->getRetValue();
H A DVforkChecker.cpp65 void checkPreStmt(const ReturnStmt *RS, CheckerContext &C) const;
210 void VforkChecker::checkPreStmt(const ReturnStmt *RS, CheckerContext &C) const { argument
/external/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFCompileUnit.h20 const DWARFDebugAbbrev *DA, StringRef RS, StringRef SS,
24 : DWARFUnit(Context, Section, DA, RS, SS, SOS, AOS, LS, LE, UnitSection,
19 DWARFCompileUnit(DWARFContext &Context, const DWARFSection &Section, const DWARFDebugAbbrev *DA, StringRef RS, StringRef SS, StringRef SOS, StringRef AOS, StringRef LS, bool LE, const DWARFUnitSectionBase &UnitSection, const DWARFUnitIndex::Entry *Entry) argument
H A DDWARFTypeUnit.h23 const DWARFDebugAbbrev *DA, StringRef RS, StringRef SS,
27 : DWARFUnit(Context, Section, DA, RS, SS, SOS, AOS, LS, LE, UnitSection,
22 DWARFTypeUnit(DWARFContext &Context, const DWARFSection &Section, const DWARFDebugAbbrev *DA, StringRef RS, StringRef SS, StringRef SOS, StringRef AOS, StringRef LS, bool LE, const DWARFUnitSectionBase &UnitSection, const DWARFUnitIndex::Entry *Entry) argument
H A DDWARFUnit.h48 const DWARFDebugAbbrev *DA, StringRef RS, StringRef SS,
86 const DWARFDebugAbbrev *DA, StringRef RS, StringRef SS,
94 auto U = llvm::make_unique<UnitType>(Context, Section, DA, RS, SS, SOS,
150 const DWARFDebugAbbrev *DA, StringRef RS, StringRef SS,
166 void setRangesSection(StringRef RS, uint32_t Base) { argument
167 RangeSection = RS;
/external/clang/lib/StaticAnalyzer/Core/
H A DEnvironment.cpp98 const ReturnStmt *RS = cast<ReturnStmt>(S); local
99 if (const Expr *RE = RS->getRetValue())
H A DRangeConstraintManager.cpp82 RangeSet(PrimRangeSet RS) : ranges(RS) {} argument
84 /// Create a new set with all ranges of this set and RS.
86 RangeSet addRange(Factory &F, const RangeSet &RS) { argument
87 PrimRangeSet Ranges(RS.ranges);
353 RangeSet getSymLERange(const RangeSet &RS, const llvm::APSInt &Int,
593 RangeConstraintManager::getSymLERange(const RangeSet &RS, argument
604 return RS;
611 return RS;
617 return RS
[all...]
H A DExprEngineCallAndReturn.cpp245 if (const ReturnStmt *RS = dyn_cast_or_null<ReturnStmt>(LastSt)) {
247 SVal V = state->getSVal(RS, LCtx);
995 void ExprEngine::VisitReturnStmt(const ReturnStmt *RS, ExplodedNode *Pred, argument
999 getCheckerManager().runCheckersForPreStmt(dstPreVisit, Pred, RS, *this);
1003 if (RS->getRetValue()) {
1006 B.generateNode(RS, *it, (*it)->getState());
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
H A DSecP224R1FieldElement.java226 RS(d1, e1, f1, t);
233 private static void RS(int[] d, int[] e, int[] f, int[] t) method in class:SecP224R1FieldElement
261 RS(d1, e1, f1, t);
/external/guava/guava/src/com/google/common/base/
H A DAscii.java352 * relationship shall be: FS is the most inclusive, then GS, then RS,
363 * relationship shall be: FS is the most inclusive, then GS, then RS,
374 * relationship shall be: FS is the most inclusive, then GS, then RS,
380 public static final byte RS = 30; field in class:Ascii
385 * relationship shall be: FS is the most inclusive, then GS, then RS,
/external/llvm/lib/CodeGen/
H A DBranchFolding.h99 RegScavenger *RS; member in class:llvm::BranchFolder
H A DShrinkWrap.cpp134 bool useOrDefCSROrFI(const MachineInstr &MI, RegScavenger *RS) const;
136 const SetOfRegs &getCurrentCSRs(RegScavenger *RS) const {
142 TFI->determineCalleeSaves(*MachineFunc, SavedRegs, RS);
156 void updateSaveRestorePoints(MachineBasicBlock &MBB, RegScavenger *RS);
223 RegScavenger *RS) const {
240 for (unsigned Reg : getCurrentCSRs(RS)) {
270 RegScavenger *RS) {
291 if (!useOrDefCSROrFI(Terminator, RS))
398 std::unique_ptr<RegScavenger> RS(
411 if (!useOrDefCSROrFI(MI, RS
269 updateSaveRestorePoints(MachineBasicBlock &MBB, RegScavenger *RS) argument
[all...]
H A DPrologEpilogInserter.cpp68 RegScavenger *RS; member in class:__anon12256::PEI
173 RS = TRI->requiresRegisterScavenging(Fn) ? new RegScavenger() : nullptr;
183 TFI->determineCalleeSaves(Fn, SavedRegs, RS);
198 TFI->processFunctionBeforeFrameFinalized(Fn, RS);
233 delete RS;
625 if (RS && EarlyScavengingSlots) {
627 RS->getScavengingFrameIndices(SFIs);
677 if (RS && RS->isScavengingFrameIndex((int)i))
716 if (RS
[all...]
H A DTailDuplication.cpp69 std::unique_ptr<RegScavenger> RS; member in class:__anon12302::TailDuplicatePass
146 RS.reset();
148 RS.reset(new RegScavenger());
810 if (RS && !TailBB->livein_empty()) {
812 RS->enterBasicBlock(PredBB);
814 RS->forward(std::prev(PredBB->end()));
816 if (!RS->isRegUsed(LI.PhysReg, false))
H A DRegAllocPBQP.cpp781 std::ostringstream RS; local
782 RS << Round;
783 std::string GraphFileName = FullyQualifiedName + "." + RS.str() +
/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnit.cpp35 const DWARFDebugAbbrev *DA, StringRef RS, StringRef SS,
39 : Context(DC), InfoSection(Section), Abbrev(DA), RangeSection(RS),
34 DWARFUnit(DWARFContext &DC, const DWARFSection &Section, const DWARFDebugAbbrev *DA, StringRef RS, StringRef SS, StringRef SOS, StringRef AOS, StringRef LS, bool LE, const DWARFUnitSectionBase &UnitSection, const DWARFUnitIndex::Entry *IndexEntry) argument
/external/llvm/lib/Target/Hexagon/
H A DHexagonBitSimplify.cpp37 RegisterSet(const RegisterSet &RS) : BitVector(RS) {} argument
119 : RS(S), TRI(RI) {}
123 const RegisterSet &RS; member in struct:__anon12580::PrintRegSet
131 for (unsigned R = P.RS.find_first(); R; R = P.RS.find_next(R))
187 const BitTracker::RegisterRef &RS, MachineRegisterInfo &MRI);
884 // Check if RD could be replaced with RS at any possible use of RD.
889 const BitTracker::RegisterRef &RS, MachineRegisterInfo &MRI) {
891 !TargetRegisterInfo::isVirtualRegister(RS
[all...]
H A DHexagonBitTracker.cpp1102 RegisterRef RS = MI->getOperand(1); local
1104 if (!TargetRegisterInfo::isPhysicalRegister(RS.Reg))
1115 putCell(RD, getCell(RS, Inputs), Outputs);
1118 // Read RD's cell from the outputs instead of RS's cell from the inputs:
H A DHexagonGenInsert.cpp162 : RS(S), TRI(RI) {}
166 const RegisterSet &RS; member in struct:__anon12606::PrintRegSet
172 for (unsigned R = P.RS.find_first(); R; R = P.RS.find_next(R))
/external/llvm/lib/Target/WebAssembly/
H A DWebAssemblyPEI.cpp77 RegScavenger *RS; member in class:__anon12776::WasmPEI
188 RS = TRI->requiresRegisterScavenging(Fn) ? new RegScavenger() : nullptr;
198 TFI->determineCalleeSaves(Fn, SavedRegs, RS);
213 TFI->processFunctionBeforeFrameFinalized(Fn, RS);
249 delete RS;
641 if (RS && EarlyScavengingSlots) {
643 RS->getScavengingFrameIndices(SFIs);
693 if (RS && RS->isScavengingFrameIndex((int)i))
732 if (RS
[all...]
/external/aac/libAACenc/src/
H A Dmetadata_compressor.cpp121 RS = 5, enumerator in enum:__anon277
531 drcComp->channelIdx[RS] = channelMapping.elInfo[2].ChannelIndex[1];
539 drcComp->channelIdx[RS] = channelMapping.elInfo[2].ChannelIndex[1];
548 drcComp->channelIdx[RS] = channelMapping.elInfo[3].ChannelIndex[1]; /* rs */
558 drcComp->channelIdx[RS] = channelMapping.elInfo[3].ChannelIndex[1]; /* rrear */
895 if (drcComp->channelIdx[RS] >= 0) tmp -= fMultDiv2(FL2FXCONST_DBL(0.707f), (FIXP_PCM)pSamples[drcComp->channelIdx[RS]])>>(DOWNMIX_SHIFT-1); /* Rs */
908 if (drcComp->channelIdx[RS] >= 0) tmp += fMultDiv2(FL2FXCONST_DBL(0.707f), (FIXP_PCM)pSamples[drcComp->channelIdx[RS]])>>(DOWNMIX_SHIFT-1); /* Rs */
910 if ((drcComp->channelIdx[RS] >
[all...]
/external/llvm/include/llvm/CodeGen/
H A DRegAllocPBQP.h194 : RS(Unprocessed), NumOpts(0), DeniedOpts(0), OptUnsafeEdges(nullptr),
204 : RS(Other.RS), NumOpts(Other.NumOpts), DeniedOpts(Other.DeniedOpts),
220 : RS(Other.RS), NumOpts(Other.NumOpts), DeniedOpts(Other.DeniedOpts),
231 RS = Other.RS;
248 RS = Other.RS;
273 ReductionState getReductionState() const { return RS; }
274 setReductionState(ReductionState RS) argument
316 ReductionState RS; member in class:llvm::PBQP::RegAlloc::NodeMetadata
[all...]

Completed in 507 milliseconds

12