HomeSort by relevance Sort by last modified time
    Searched defs:MR (Results 1 - 25 of 35) sorted by null

1 2

  /external/libcxx/test/std/re/re.results/
types.pass.cpp 36 typedef std::match_results<CharT*> MR;
37 static_assert((std::is_same<typename MR::value_type, std::sub_match<CharT*> >::value), "");
38 static_assert((std::is_same<typename MR::const_reference, const std::sub_match<CharT*>& >::value), "");
39 static_assert((std::is_same<typename MR::reference, std::sub_match<CharT*>& >::value), "");
40 static_assert((!std::is_same<typename MR::const_iterator, void>::value), "");
41 static_assert((std::is_same<typename MR::difference_type, std::ptrdiff_t>::value), "");
42 static_assert((std::is_same<typename MR::size_type, std::size_t>::value), "");
43 static_assert((std::is_same<typename MR::allocator_type, std::allocator<std::sub_match<CharT*> > >::value), "");
44 static_assert((std::is_same<typename MR::char_type, CharT>::value), "");
45 static_assert((std::is_same<typename MR::string_type, std::basic_string<CharT> >::value), "")
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.results/
types.pass.cpp 35 typedef std::match_results<CharT*> MR;
36 static_assert((std::is_same<typename MR::value_type, std::sub_match<CharT*> >::value), "");
37 static_assert((std::is_same<typename MR::const_reference, const std::sub_match<CharT*>& >::value), "");
38 static_assert((std::is_same<typename MR::reference, std::sub_match<CharT*>& >::value), "");
39 static_assert((!std::is_same<typename MR::const_iterator, void>::value), "");
40 static_assert((std::is_same<typename MR::difference_type, std::ptrdiff_t>::value), "");
41 static_assert((std::is_same<typename MR::size_type, std::size_t>::value), "");
42 static_assert((std::is_same<typename MR::allocator_type, std::allocator<std::sub_match<CharT*> > >::value), "");
43 static_assert((std::is_same<typename MR::char_type, CharT>::value), "");
44 static_assert((std::is_same<typename MR::string_type, std::basic_string<CharT> >::value), "")
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/re/re.results/
types.pass.cpp 36 typedef std::match_results<CharT*> MR;
37 static_assert((std::is_same<typename MR::value_type, std::sub_match<CharT*> >::value), "");
38 static_assert((std::is_same<typename MR::const_reference, const std::sub_match<CharT*>& >::value), "");
39 static_assert((std::is_same<typename MR::reference, std::sub_match<CharT*>& >::value), "");
40 static_assert((!std::is_same<typename MR::const_iterator, void>::value), "");
41 static_assert((std::is_same<typename MR::difference_type, std::ptrdiff_t>::value), "");
42 static_assert((std::is_same<typename MR::size_type, std::size_t>::value), "");
43 static_assert((std::is_same<typename MR::allocator_type, std::allocator<std::sub_match<CharT*> > >::value), "");
44 static_assert((std::is_same<typename MR::char_type, CharT>::value), "");
45 static_assert((std::is_same<typename MR::string_type, std::basic_string<CharT> >::value), "")
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXFrameLowering.cpp 38 MachineRegisterInfo &MR = MF.getRegInfo();
54 if (!MR.use_empty(NVPTX::VRFrame)) {
  /external/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
MPIChecker.cpp 30 const MemRegion *const MR =
32 if (!MR)
34 const ElementRegion *const ER = dyn_cast<ElementRegion>(MR);
37 if (!isa<TypedRegion>(MR) || (ER && !isa<TypedRegion>(ER->getSuperRegion())))
41 const Request *const Req = State->get<RequestMap>(MR);
46 BReporter.reportDoubleNonblocking(PreCallEvent, *Req, MR, ErrorNode, Ctx.getBugReporter());
51 State = State->set<RequestMap>(MR, Request::State::Nonblocking);
60 const MemRegion *const MR = topRegionUsedByWait(PreCallEvent);
61 if (!MR)
63 const ElementRegion *const ER = dyn_cast<ElementRegion>(MR);
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
ExprInspectionChecker.cpp 160 auto MR = dyn_cast_or_null<SubRegion>(C.getSVal(CE->getArg(0)).getAsRegion());
161 if (!MR)
166 MR->getExtent(C.getSValBuilder()));
DereferenceChecker.cpp 248 const MemRegion *MR = L.getAsRegion();
249 const TypedValueRegion *TVR = dyn_cast_or_null<TypedValueRegion>(MR);
VforkChecker.cpp 200 const MemRegion *MR = L.getAsRegion();
203 if (!MR || MR == VforkLhs)
DynamicTypePropagation.cpp 300 const MemRegion *MR = C.getSVal(NewE).getAsRegion();
301 if (!MR)
304 C.addTransition(setDynamicTypeInfo(C.getState(), MR, NewE->getType(),
    [all...]
CStringChecker.cpp 131 const MemRegion *MR,
136 const MemRegion *MR,
156 const MemRegion *MR);
633 const MemRegion *MR,
637 MR = MR->StripCasts();
639 switch (MR->getKind()) {
667 return state->remove<CStringLength>(MR);
669 return state->set<CStringLength>(MR, strLength);
675 const MemRegion *MR,
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
AliasAnalysisCounter.cpp 33 unsigned NoMR, JustRef, JustMod, MR;
40 NoMR = JustRef = JustMod = MR = 0;
49 unsigned MRSum = NoMR+JustRef+JustMod+MR;
70 printLine("mod/ref", MR, MRSum);
73 << "%/" << MR*100/MRSum <<"%\n\n";
163 case ModRef: MR++; MRString = "ModRef"; break;
MemoryDependenceAnalysis.cpp 208 AliasAnalysis::ModRefResult MR = GetLocation(Inst, Loc, AA);
224 if (isReadOnlyCall && !(MR & AliasAnalysis::Mod) &&
538 AliasAnalysis::ModRefResult MR = GetLocation(QueryInst, MemLoc, AA);
541 bool isLoad = !(MR & AliasAnalysis::Mod);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
ELFCodeEmitter.cpp 92 MachineRelocation &MR = *MRI;
93 uintptr_t MBBOffset = getMachineBasicBlockAddress(MR.getBasicBlock());
94 MR.setResultPointer((void*)MBBOffset);
95 MR.setConstantVal(ES->SectionIdx);
96 JTSection.addRelocation(MR);
104 MachineRelocation &MR = Relocations[i];
106 if (MR.isGlobalValue()) {
107 EW.AddPendingGlobalSymbol(MR.getGlobalValue());
108 } else if (MR.isExternalSymbol()) {
109 EW.AddPendingExternalSymbol(MR.getExternalSymbol())
    [all...]
ELFWriter.cpp 597 MachineRelocation MR =
607 GblS.addRelocation(MR);
774 MachineRelocation &MR = *MRI;
777 unsigned RelOffset = MR.getMachineCodeOffset();
783 unsigned RelType = TEW->getRelocationType(MR.getRelocationType());
789 if (MR.isGlobalValue()) {
790 const GlobalValue *G = MR.getGlobalValue();
791 int64_t GlobalOffset = MR.getConstantVal();
802 } else if (MR.isExternalSymbol()) {
803 const char *ExtSym = MR.getExternalSymbol()
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SimpleConstraintManager.cpp 75 const MemRegion *MR = LV->getAsRegion();
76 if (const TypedRegion *TR = dyn_cast_or_null<TypedRegion>(MR))
Store.cpp 216 const MemRegion *MR = V.getAsRegion();
217 if (!MR)
220 const TypedValueRegion *TVR = dyn_cast<TypedValueRegion>(MR);
287 static const CXXRecordDecl *getCXXRecordType(const MemRegion *MR) {
288 if (const TypedValueRegion *TVR = dyn_cast<TypedValueRegion>(MR))
290 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(MR))
299 const MemRegion *MR = Base.getAsRegion();
300 if (!MR)
312 while (const CXXRecordDecl *MRClass = getCXXRecordType(MR)) {
315 return loc::MemRegionVal(MR);
    [all...]
ExprEngineCallAndReturn.cpp 206 const MemRegion *MR = V.getAsRegion();
207 if (!MR)
210 return isa<CXXTempObjectRegion>(MR);
    [all...]
ProgramState.cpp 118 const MemRegion *MR = LV.getAsRegion();
119 if (MR && Mgr.getOwningEngine() && notifyChanges)
120 return Mgr.getOwningEngine()->processRegionChange(newState, MR);
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86CodeEmitter.cpp 270 MachineRelocation MR = Indirect
276 MCE.addRelocation(MR);
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
rdatatype.py 42 MR = 9
104 'MR' : MR,
  /external/llvm/lib/Target/Hexagon/
HexagonStoreWidening.cpp 439 MachineOperand &MR = FirstSt->getOperand(0);
442 .addReg(MR.getReg(), getKillRegState(MR.isKill()))
461 MachineOperand &MR = FirstSt->getOperand(0);
464 .addReg(MR.getReg(), getKillRegState(MR.isKill()))
  /external/llvm/lib/Analysis/
MemoryDependenceAnalysis.cpp 181 ModRefInfo MR = GetLocation(Inst, Loc, TLI);
198 if (isReadOnlyCall && !(MR & MRI_Mod) &&
212 if (MR != MRI_NoModRef)
649 ModRefInfo MR = AA.getModRefInfo(Inst, MemLoc);
651 if (MR == MRI_ModRef)
652 MR = AA.callCapturesBefore(Inst, MemLoc, &DT, &OBB);
653 switch (MR) {
708 ModRefInfo MR = GetLocation(QueryInst, MemLoc, TLI);
711 bool isLoad = !(MR & MRI_Mod);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
JITEmitter.cpp 417 virtual void addRelocation(const MachineRelocation &MR) {
418 Relocations.push_back(MR);
842 MachineRelocation &MR = Relocations[i];
844 if (!MR.letTargetResolve()) {
845 if (MR.isExternalSymbol()) {
846 ResultPtr = TheJIT->getPointerToNamedFunction(MR.getExternalSymbol(),
848 DEBUG(dbgs() << "JIT: Map \'" << MR.getExternalSymbol() << "\' to ["
852 if (MR.mayNeedFarStub()) {
855 } else if (MR.isGlobalValue()) {
856 ResultPtr = getPointerToGlobal(MR.getGlobalValue()
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMCodeEmitter.cpp 469 MachineRelocation MR = Indirect
476 MCE.addRelocation(MR);
    [all...]

Completed in 2699 milliseconds

1 2