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

1 2

  /ndk/sources/cxx-stl/llvm-libc++/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, const 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...]
  /external/smack/src/org/xbill/DNS/
MRRecord.java 23 * Creates a new MR Record with the given data
29 super(name, Type.MR, dclass, ttl, newName, "new name");
Type.java 40 public static final int MR = 9;
235 types.add(MR, "MR", new MRRecord());
  /external/llvm/lib/Target/ARM/
ARMJITInfo.cpp 238 intptr_t ARMJITInfo::resolveRelocDestAddr(MachineRelocation *MR) const {
239 ARM::RelocationType RT = (ARM::RelocationType)MR->getRelocationType();
242 return (intptr_t)(MR->getResultPointer());
245 return (intptr_t)(MR->getResultPointer()) - MR->getConstantVal();
248 return getJumpTableBaseAddr(MR->getJumpTableIndex());
252 return getConstantPoolEntryAddr(MR->getConstantPoolIndex());
254 ARMConstantPoolValue *ACPV = (ARMConstantPoolValue*)MR->getConstantVal();
257 intptr_t Addr = (intptr_t)(MR->getResultPointer());
267 void ARMJITInfo::relocate(void *Function, MachineRelocation *MR,
    [all...]
ARMJITInfo.h 80 virtual void relocate(void *Function, MachineRelocation *MR,
179 intptr_t resolveRelocDestAddr(MachineRelocation *MR) const;
  /external/llvm/lib/Target/Mips/
MipsJITInfo.h 58 virtual void relocate(void *Function, MachineRelocation *MR,
MipsJITInfo.cpp 247 void MipsJITInfo::relocate(void *Function, MachineRelocation *MR,
249 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
251 void *RelocPos = (char*) Function + MR->getMachineCodeOffset();
252 intptr_t ResultPtr = (intptr_t) MR->getResultPointer();
254 switch ((Mips::RelocationType) MR->getRelocationType()) {
267 if ((((intptr_t) (MR->getResultPointer()) & 0xffff) >> 15) == 1) {
  /external/llvm/lib/Target/PowerPC/
PPCJITInfo.h 37 virtual void relocate(void *Function, MachineRelocation *MR,
PPCJITInfo.cpp 114 "mr r3, r0\n"
177 "mr 3, 0\n"
257 "mr 3, 0\n" // return address (still in r0)
413 void PPCJITInfo::relocate(void *Function, MachineRelocation *MR,
415 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
416 unsigned *RelocPos = (unsigned*)Function + MR->getMachineCodeOffset()/4;
417 intptr_t ResultPtr = (intptr_t)MR->getResultPointer();
418 switch ((PPC::RelocationType)MR->getRelocationType()) {
437 ResultPtr += MR->getConstantVal();
440 if (MR->getRelocationType() == PPC::reloc_absolute_high)
    [all...]
  /external/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";
161 case ModRef: MR++; MRString = "ModRef"; break;
MemoryDependenceAnalysis.cpp 208 AliasAnalysis::ModRefResult MR = GetLocation(Inst, Loc, AA);
224 if (isReadOnlyCall && !(MR & AliasAnalysis::Mod) &&
238 if (MR != AliasAnalysis::NoModRef)
515 AliasAnalysis::ModRefResult MR = AA->getModRefInfo(Inst, MemLoc);
517 if (MR == AliasAnalysis::ModRef)
518 MR = AA->callCapturesBefore(Inst, MemLoc, DT);
519 switch (MR) {
576 AliasAnalysis::ModRefResult MR = GetLocation(QueryInst, MemLoc, AA);
579 bool isLoad = !(MR & AliasAnalysis::Mod);
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SubEngine.h 115 const MemRegion* MR) {
116 return processRegionChanges(state, 0, MR, MR, 0);
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-sea-machine.rl 45 MR = 22; # Medial Ra
54 syllable_tail = (VPre|VAbv|VBlw|VPst|H.C|CM|MR|T|A)*;
hb-ot-shape-complex-myanmar-machine.rl 51 MR = 22;
70 medial_group = MY? MR? ((MW MH? | MH) As?)?;
  /external/llvm/include/llvm/Target/
TargetJITInfo.h 103 virtual void relocate(void *Function, MachineRelocation *MR,
  /external/llvm/lib/Target/X86/
X86JITInfo.h 66 virtual void relocate(void *Function, MachineRelocation *MR,
X86JITInfo.cpp 541 void X86JITInfo::relocate(void *Function, MachineRelocation *MR,
543 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
544 void *RelocPos = (char*)Function + MR->getMachineCodeOffset();
545 intptr_t ResultPtr = (intptr_t)MR->getResultPointer();
546 switch ((X86::RelocationType)MR->getRelocationType()) {
550 ResultPtr = ResultPtr -(intptr_t)RelocPos - 4 - MR->getConstantVal();
557 ResultPtr = ResultPtr - ((intptr_t)Function + MR->getConstantVal());
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 413 virtual void addRelocation(const MachineRelocation &MR) {
414 Relocations.push_back(MR);
838 MachineRelocation &MR = Relocations[i];
840 if (!MR.letTargetResolve()) {
841 if (MR.isExternalSymbol()) {
842 ResultPtr = TheJIT->getPointerToNamedFunction(MR.getExternalSymbol(),
844 DEBUG(dbgs() << "JIT: Map \'" << MR.getExternalSymbol() << "\' to ["
848 if (MR.mayNeedFarStub()) {
851 } else if (MR.isGlobalValue()) {
852 ResultPtr = getPointerToGlobal(MR.getGlobalValue()
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp 123 const MemRegion *MR,
128 const MemRegion *MR,
146 const MemRegion *MR);
612 const MemRegion *MR,
616 MR = MR->StripCasts();
618 switch (MR->getKind()) {
646 return state->remove<CStringLength>(MR);
648 return state->set<CStringLength>(MR, strLength);
654 const MemRegion *MR,
    [all...]
DereferenceChecker.cpp 231 const MemRegion *MR = L.getAsRegion();
232 const TypedValueRegion *TVR = dyn_cast_or_null<TypedValueRegion>(MR);
  /external/clang/lib/StaticAnalyzer/Core/
SymbolManager.cpp 414 bool SymbolReaper::isLiveRegion(const MemRegion *MR) {
415 if (RegionRoots.count(MR))
418 MR = MR->getBaseRegion();
420 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(MR))
423 if (const VarRegion *VR = dyn_cast<VarRegion>(MR))
430 if (isa<AllocaRegion>(MR))
433 if (isa<CXXThisRegion>(MR))
436 if (isa<MemSpaceRegion>(MR))
Store.cpp 227 const MemRegion *MR = V.getAsRegion();
228 if (!MR)
231 const TypedValueRegion *TVR = dyn_cast<TypedValueRegion>(MR);
ExprEngineCXX.cpp 39 const MemRegion *MR = V.getAsRegion();
41 dyn_cast_or_null<CXXTempObjectRegion>(MR)) {
  /external/eigen/bench/
geometry.cpp 64 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/opencv/cxcore/src/
cxmean.cpp 241 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 )

Completed in 571 milliseconds

1 2