Home
last modified time | relevance | path

Searched refs:MR (Results 1 – 25 of 246) sorted by relevance

12345678910

/external/libcxx/test/std/re/re.results/
Dtypes.pass.cpp35 typedef std::match_results<CharT*> MR; in test() typedef
36 static_assert((std::is_same<typename MR::value_type, std::sub_match<CharT*> >::value), ""); in test()
37 …static_assert((std::is_same<typename MR::const_reference, const std::sub_match<CharT*>& >::value),… in test()
38 static_assert((std::is_same<typename MR::reference, std::sub_match<CharT*>& >::value), ""); in test()
39 static_assert((!std::is_same<typename MR::const_iterator, void>::value), ""); in test()
40 static_assert((std::is_same<typename MR::difference_type, std::ptrdiff_t>::value), ""); in test()
41 static_assert((std::is_same<typename MR::size_type, std::size_t>::value), ""); in test()
42 …static_assert((std::is_same<typename MR::allocator_type, std::allocator<std::sub_match<CharT*> > >… in test()
43 static_assert((std::is_same<typename MR::char_type, CharT>::value), ""); in test()
44 static_assert((std::is_same<typename MR::string_type, std::basic_string<CharT> >::value), ""); in test()
/external/opencv3/modules/videostab/src/
Dwobble_suppression.cpp116 …Mat_<float> MR = S1 * getMotion(idx, k2, *motions2_).inv() * getMotion(idx, k2, *motions_) * S1.in… in suppress() local
134 xr = MR(0,0)*x + MR(0,1)*y + MR(0,2); in suppress()
135 yr = MR(1,0)*x + MR(1,1)*y + MR(1,2); in suppress()
136 zr = MR(2,0)*x + MR(2,1)*y + MR(2,2); in suppress()
168 Mat MR = S1 * getMotion(idx, k2, *motions2_).inv() * getMotion(idx, k2, *motions_) * S1.inv(); in suppress() local
170 cuda::calcWobbleSuppressionMaps(k1, idx, k2, frame.size(), ML, MR, mapx_, mapy_); in suppress()
/external/clang/lib/StaticAnalyzer/Core/
DStore.cpp216 const MemRegion *MR = V.getAsRegion(); in regionMatchesCXXRecordType() local
217 if (!MR) in regionMatchesCXXRecordType()
220 const TypedValueRegion *TVR = dyn_cast<TypedValueRegion>(MR); in regionMatchesCXXRecordType()
287 static const CXXRecordDecl *getCXXRecordType(const MemRegion *MR) { in getCXXRecordType() argument
288 if (const TypedValueRegion *TVR = dyn_cast<TypedValueRegion>(MR)) in getCXXRecordType()
290 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(MR)) in getCXXRecordType()
299 const MemRegion *MR = Base.getAsRegion(); in evalDynamicCast() local
300 if (!MR) in evalDynamicCast()
312 while (const CXXRecordDecl *MRClass = getCXXRecordType(MR)) { in evalDynamicCast()
315 return loc::MemRegionVal(MR); in evalDynamicCast()
[all …]
DSymbolManager.cpp421 bool SymbolReaper::isLiveRegion(const MemRegion *MR) { in isLiveRegion() argument
422 if (RegionRoots.count(MR)) in isLiveRegion()
425 MR = MR->getBaseRegion(); in isLiveRegion()
427 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(MR)) in isLiveRegion()
430 if (const VarRegion *VR = dyn_cast<VarRegion>(MR)) in isLiveRegion()
437 if (isa<AllocaRegion>(MR)) in isLiveRegion()
440 if (isa<CXXThisRegion>(MR)) in isLiveRegion()
443 if (isa<MemSpaceRegion>(MR)) in isLiveRegion()
446 if (isa<CodeTextRegion>(MR)) in isLiveRegion()
DMemRegion.cpp1477 void RegionAndSymbolInvalidationTraits::setTrait(const MemRegion *MR, in setTrait() argument
1479 assert(MR); in setTrait()
1480 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(MR)) in setTrait()
1483 MRTraitsMap[MR] |= IK; in setTrait()
1495 bool RegionAndSymbolInvalidationTraits::hasTrait(const MemRegion *MR, in hasTrait() argument
1497 if (!MR) in hasTrait()
1500 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(MR)) in hasTrait()
1503 const_region_iterator I = MRTraitsMap.find(MR); in hasTrait()
DSimpleConstraintManager.cpp75 const MemRegion *MR = LV->getAsRegion(); in assume() local
76 if (const TypedRegion *TR = dyn_cast_or_null<TypedRegion>(MR)) in assume()
/external/clang/lib/StaticAnalyzer/Checkers/
DCStringChecker.cpp127 const MemRegion *MR,
132 const MemRegion *MR,
152 const MemRegion *MR);
629 const MemRegion *MR, in setCStringLength() argument
633 MR = MR->StripCasts(); in setCStringLength()
635 switch (MR->getKind()) { in setCStringLength()
663 return state->remove<CStringLength>(MR); in setCStringLength()
665 return state->set<CStringLength>(MR, strLength); in setCStringLength()
671 const MemRegion *MR, in getCStringLengthForRegion() argument
675 const SVal *Recorded = state->get<CStringLength>(MR); in getCStringLengthForRegion()
[all …]
DVforkChecker.cpp200 const MemRegion *MR = L.getAsRegion(); in checkBind() local
203 if (!MR || MR == VforkLhs) in checkBind()
DMallocChecker.cpp364 static bool SummarizeRegion(raw_ostream &os, const MemRegion *MR);
1517 const MemRegion *MR) { in SummarizeRegion() argument
1518 switch (MR->getKind()) { in SummarizeRegion()
1520 const NamedDecl *FD = cast<FunctionTextRegion>(MR)->getDecl(); in SummarizeRegion()
1535 const MemSpaceRegion *MS = MR->getMemorySpace(); in SummarizeRegion()
1538 const VarRegion *VR = dyn_cast<VarRegion>(MR); in SummarizeRegion()
1553 const VarRegion *VR = dyn_cast<VarRegion>(MR); in SummarizeRegion()
1568 const VarRegion *VR = dyn_cast<VarRegion>(MR); in SummarizeRegion()
1611 const MemRegion *MR = ArgVal.getAsRegion(); in ReportBadFree() local
1612 while (const ElementRegion *ER = dyn_cast_or_null<ElementRegion>(MR)) in ReportBadFree()
[all …]
DDereferenceChecker.cpp236 const MemRegion *MR = L.getAsRegion(); in checkBind() local
237 const TypedValueRegion *TVR = dyn_cast_or_null<TypedValueRegion>(MR); in checkBind()
/external/opencv3/samples/cpp/
Dtvl1_optical_flow.cpp30 const int MR = 6; in computeColor() local
31 const int NCOLS = RY + YG + GC + CB + BM + MR; in computeColor()
53 for (int i = 0; i < MR; ++i, ++k) in computeColor()
54 colorWheel[k] = Vec3i(255, 0, 255 - 255 * i / MR); in computeColor()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DSubEngine.h134 const MemRegion* MR) { in processRegionChange() argument
135 return processRegionChanges(state, nullptr, MR, MR, nullptr); in processRegionChange()
/external/opencv3/samples/gpu/
Doptical_flow.cpp32 const int MR = 6; in computeColor() local
33 const int NCOLS = RY + YG + GC + CB + BM + MR; in computeColor()
55 for (int i = 0; i < MR; ++i, ++k) in computeColor()
56 colorWheel[k] = Vec3i(255, 0, 255 - 255 * i / MR); in computeColor()
/external/llvm/lib/Target/NVPTX/
DNVPTXFrameLowering.cpp39 MachineRegisterInfo &MR = MF.getRegInfo(); in emitPrologue() local
55 if (!MR.use_empty(NVPTX::VRFrame)) { in emitPrologue()
/external/llvm/lib/Target/Hexagon/
DHexagonStoreWidening.cpp439 MachineOperand &MR = FirstSt->getOperand(0); in createWideStores() local
442 .addReg(MR.getReg(), getKillRegState(MR.isKill())) in createWideStores()
461 MachineOperand &MR = FirstSt->getOperand(0); in createWideStores() local
464 .addReg(MR.getReg(), getKillRegState(MR.isKill())) in createWideStores()
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/
Drdatatype.py42 MR = 9 variable
104 'MR' : MR,
/external/eigen/bench/
Dgeometry.cpp64 template<typename S, int R, int C, int O, int MR, int MC>
65 struct get_dim<Matrix<S,R,C,O,MR,MC> > { enum { Dim = R }; };
/external/harfbuzz_ng/src/
Dhb-ot-shape-complex-myanmar-machine.rl51 MR = 22;
71 medial_group = MY? MR? MW? MH? As?;
/external/llvm/lib/Analysis/
DMemoryDependenceAnalysis.cpp223 ModRefInfo MR = GetLocation(Inst, Loc, *TLI); in getCallSiteDependencyFrom() local
239 if (isReadOnlyCall && !(MR & MRI_Mod) && in getCallSiteDependencyFrom()
253 if (MR != MRI_NoModRef) in getCallSiteDependencyFrom()
702 ModRefInfo MR = AA->getModRefInfo(Inst, MemLoc); in getSimplePointerDependencyFrom() local
704 if (MR == MRI_ModRef) in getSimplePointerDependencyFrom()
705 MR = AA->callCapturesBefore(Inst, MemLoc, DT, &OBB); in getSimplePointerDependencyFrom()
706 switch (MR) { in getSimplePointerDependencyFrom()
763 ModRefInfo MR = GetLocation(QueryInst, MemLoc, *TLI); in getDependency() local
766 bool isLoad = !(MR & MRI_Mod); in getDependency()
/external/opencv/cxcore/src/
Dcxmean.cpp241 IPCVAPI_IMPL( CvStatus, icvMean_##flavor##_C##cn##MR, \
272 IPCVAPI_IMPL( CvStatus, icvMean_##flavor##_C##cn##MR, \
378 CV_DEF_INIT_BIG_FUNC_TAB_2D( Mean, MR ) in CV_DEF_INIT_BIG_FUNC_TAB_2D() argument
/external/icu/icu4c/source/data/region/
Dfa_AF.txt65 MR{"موریتانیا"}
Dzh_Hant_HK.txt64 MR{"毛里塔尼亞"}
/external/llvm/test/Analysis/Delinearization/
Dhimeno_1.ll3 ; #define MR(mt,n,r,c,d) mt->m[(n) * mt->mrows * mt->mcols * mt->mdeps + (r) * mt->mcols* mt->mdep…
26 ; MR(a,0,i,j,k) = i + j + k;
Dhimeno_2.ll3 ; #define MR(mt,n,r,c,d) mt->m[(n) * mt->mrows * mt->mcols * mt->mdeps + (r) * mt->mcols* mt->mdep…
26 ; MR(a,0,i,j,k) = i + j + k;
/external/v8/src/compiler/x87/
Dinstruction-codes-x87.h101 V(MR) /* [%r1 ] */ \

12345678910