Home
last modified time | relevance | path

Searched refs:MP (Results 1 – 25 of 252) sorted by relevance

1234567891011

/freebsd/sys/sys/
H A Dmount.h849 _rc = (*(MP)->mnt_op->vfs_mount)(MP); \
856 _rc = (*(MP)->mnt_op->vfs_unmount)(MP, FORCE); \
862 _rc = (*(MP)->mnt_op->vfs_root)(MP, FLAGS, VPP); \
868 _rc = (*(MP)->mnt_op->vfs_cachedroot)(MP, FLAGS, VPP); \
886 _rc = (*(MP)->mnt_op->vfs_sync)(MP, WAIT); \
892 _rc = (*(MP)->mnt_op->vfs_vget)(MP, INO, FLAGS, VPP); \
917 _rc = (*(MP)->mnt_op->vfs_sysctl)(MP, OP, REQ); \
922 (*(MP)->mnt_op->vfs_susp_clean)(MP); \
928 (*(MP)->mnt_op->vfs_reclaim_lowervp)((MP), (VP)); \
934 (*(MP)->mnt_op->vfs_unlink_lowervp)((MP), (VP)); \
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/
H A DMemoryFlags.h46 if ((MP & MemProt::Read) != MemProt::None) in toSysMemoryProtectionFlags()
48 if ((MP & MemProt::Write) != MemProt::None) in toSysMemoryProtectionFlags()
50 if ((MP & MemProt::Exec) != MemProt::None) in toSysMemoryProtectionFlags()
58 MemProt MP = MemProt::None; in fromSysMemoryProtectionFlags() local
60 MP |= MemProt::Read; in fromSysMemoryProtectionFlags()
62 MP |= MemProt::Write; in fromSysMemoryProtectionFlags()
64 MP |= MemProt::None; in fromSysMemoryProtectionFlags()
65 return MP; in fromSysMemoryProtectionFlags()
128 AllocGroup(MemProt MP) : Id(static_cast<underlying_type>(MP)) {}
131 AllocGroup(MemProt MP, MemLifetime MLP)
[all …]
H A DTargetProcessControlTypes.h182 MemProt MP = MemProt::None; in deserialize() local
184 MP |= MemProt::Read; in deserialize()
186 MP |= MemProt::Write; in deserialize()
188 MP |= MemProt::Exec; in deserialize()
190 RAG = {MP, FinalizeLifetime}; in deserialize()
/freebsd/contrib/bearssl/src/hash/
H A Dmd5.c61 static const unsigned char MP[48] = { variable
93 a = b + ROTL(a + G(b, c, d) + m[MP[i - 16]] + K[i + 0], 5); in br_md5_round()
94 d = a + ROTL(d + G(a, b, c) + m[MP[i - 15]] + K[i + 1], 9); in br_md5_round()
95 c = d + ROTL(c + G(d, a, b) + m[MP[i - 14]] + K[i + 2], 14); in br_md5_round()
96 b = c + ROTL(b + G(c, d, a) + m[MP[i - 13]] + K[i + 3], 20); in br_md5_round()
99 a = b + ROTL(a + H(b, c, d) + m[MP[i - 16]] + K[i + 0], 4); in br_md5_round()
100 d = a + ROTL(d + H(a, b, c) + m[MP[i - 15]] + K[i + 1], 11); in br_md5_round()
101 c = d + ROTL(c + H(d, a, b) + m[MP[i - 14]] + K[i + 2], 16); in br_md5_round()
102 b = c + ROTL(b + H(c, d, a) + m[MP[i - 13]] + K[i + 3], 23); in br_md5_round()
105 a = b + ROTL(a + I(b, c, d) + m[MP[i - 16]] + K[i + 0], 6); in br_md5_round()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DMachOPlatform.cpp755 &MR.getTargetJITDylib() == &MP.PlatformJD && MP.Bootstrap; in modifyPassConfig()
853 {*MP.MachOHeaderStartSymbol, &MP.Bootstrap.load()->MachOHeaderAddr}, in bootstrapPipelineRecordRuntimeFunctions()
854 {*MP.PlatformBootstrap.Name, &MP.PlatformBootstrap.Addr}, in bootstrapPipelineRecordRuntimeFunctions()
855 {*MP.PlatformShutdown.Name, &MP.PlatformShutdown.Addr}, in bootstrapPipelineRecordRuntimeFunctions()
856 {*MP.RegisterJITDylib.Name, &MP.RegisterJITDylib.Addr}, in bootstrapPipelineRecordRuntimeFunctions()
857 {*MP.DeregisterJITDylib.Name, &MP.DeregisterJITDylib.Addr}, in bootstrapPipelineRecordRuntimeFunctions()
858 {*MP.RegisterObjectSymbolTable.Name, &MP.RegisterObjectSymbolTable.Addr}, in bootstrapPipelineRecordRuntimeFunctions()
865 {*MP.CreatePThreadKey.Name, &MP.CreatePThreadKey.Addr}, in bootstrapPipelineRecordRuntimeFunctions()
893 MP.JITDylibToHeaderAddr[&MP.PlatformJD] = in bootstrapPipelineRecordRuntimeFunctions()
895 MP.HeaderAddrToJITDylib[MP.Bootstrap.load()->MachOHeaderAddr] = in bootstrapPipelineRecordRuntimeFunctions()
[all …]
H A DELFNixPlatform.cpp604 if (MR.getInitializerSymbol() == MP.DSOHandleSymbol) { in modifyPassConfig()
655 return Sym->getName() == *MP.DSOHandleSymbol; in addDSOHandleSupportPasses()
661 MP.HandleAddrToJITDylib[HandleAddr] = &JD; in addDSOHandleSupportPasses()
663 MP.InitSeqs.insert(std::make_pair( in addDSOHandleSupportPasses()
722 if (!MP.RuntimeBootstrapped) { in addEHAndTLVSupportPasses()
724 MP.BootstrapPOSRs.push_back(POSR); in addEHAndTLVSupportPasses()
729 if (auto Err = MP.registerPerObjectSections(POSR)) in addEHAndTLVSupportPasses()
795 return MP.registerInitInfo(JD, InitSections); in registerInitSections()
815 auto I = MP.JITDylibToPThreadKey.find(&JD); in fixTLVSectionsAndEdges()
816 if (I != MP.JITDylibToPThreadKey.end()) in fixTLVSectionsAndEdges()
[all …]
/freebsd/sys/arm/xilinx/
H A Dzy7_gpio.c161 .bank_min[0] = ZYNQ_BANK_PIN_MIN(MP, 0),
162 .bank_max[0] = ZYNQ_BANK_PIN_MAX(MP, 0),
163 .bank_min[1] = ZYNQ_BANK_PIN_MIN(MP, 1),
164 .bank_max[1] = ZYNQ_BANK_PIN_MAX(MP, 1),
165 .bank_min[2] = ZYNQ_BANK_PIN_MIN(MP, 2),
166 .bank_max[2] = ZYNQ_BANK_PIN_MAX(MP, 2),
167 .bank_min[3] = ZYNQ_BANK_PIN_MIN(MP, 3),
168 .bank_max[3] = ZYNQ_BANK_PIN_MAX(MP, 3),
169 .bank_min[4] = ZYNQ_BANK_PIN_MIN(MP, 4),
170 .bank_max[4] = ZYNQ_BANK_PIN_MAX(MP, 4),
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DMemorySSAUpdater.cpp278 for (auto &MP : InsertedPHIs) in insertUse() local
289 int i = MP->getBasicBlockIndex(BB); in setMemoryPhiValueForBlock()
296 MP->setIncomingValue(i, NewDef); in setMemoryPhiValueForBlock()
447 for (auto &MP : InsertedPHIs) { in insertDef() local
454 for (const auto &MP : ExistingPhis) { in insertDef() local
559 for (auto &Arg : MP->operands()) { in onlySingleValue()
1292 NewDefTarget = onlySingleValue(MP); in removeMemoryAccess()
1323 PhisToCheck.insert(MP); in removeMemoryAccess()
1341 if (MemoryPhi *MP = in removeMemoryAccess() local
1343 tryRemoveTrivialPhi(MP); in removeMemoryAccess()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DLegacyPassManager.cpp435 MP->dumpPassStructure(Offset + 1); in dumpPassStructure()
437 OnTheFlyManagers.find(MP); in dumpPassStructure()
440 dumpLastUses(MP, Offset+1); in dumpPassStructure()
511 return MP; in getContainedManager()
1546 dumpRequiredSet(MP); in runOnModule()
1548 initializeAnalysisImpl(MP); in runOnModule()
1582 dumpPreservedSet(MP); in runOnModule()
1583 dumpUsedSet(MP); in runOnModule()
1585 verifyPreservedAnalysis(MP); in runOnModule()
1587 removeNotPreservedAnalysis(MP); in runOnModule()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/TargetProcess/
H A DExecutorSharedMemoryMapperService.cpp29 static DWORD getWindowsProtectionFlags(MemProt MP) { in getWindowsProtectionFlags() argument
30 if (MP == MemProt::Read) in getWindowsProtectionFlags()
32 if (MP == MemProt::Write || in getWindowsProtectionFlags()
33 MP == (MemProt::Write | MemProt::Read)) { in getWindowsProtectionFlags()
37 if (MP == (MemProt::Read | MemProt::Exec)) in getWindowsProtectionFlags()
39 if (MP == (MemProt::Read | MemProt::Write | MemProt::Exec)) in getWindowsProtectionFlags()
41 if (MP == MemProt::Exec) in getWindowsProtectionFlags()
/freebsd/contrib/openbsm/bin/auditdistd/
H A DMakefile.in497 @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
504 @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W…
511 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
532 …GS) $(CPPFLAGS) $(auditdistd_CFLAGS) $(CFLAGS) -MT auditdistd-parse.o -MD -MP -MF $(DEPDIR)/auditd…
546 …S) $(CPPFLAGS) $(auditdistd_CFLAGS) $(CFLAGS) -MT auditdistd-pjdlog.o -MD -MP -MF $(DEPDIR)/auditd…
560 …GS) $(CPPFLAGS) $(auditdistd_CFLAGS) $(CFLAGS) -MT auditdistd-proto.o -MD -MP -MF $(DEPDIR)/auditd…
658 …) $(CPPFLAGS) $(auditdistd_CFLAGS) $(CFLAGS) -MT auditdistd-sandbox.o -MD -MP -MF $(DEPDIR)/auditd…
672 …S) $(CPPFLAGS) $(auditdistd_CFLAGS) $(CFLAGS) -MT auditdistd-sender.o -MD -MP -MF $(DEPDIR)/auditd…
686 …AGS) $(CPPFLAGS) $(auditdistd_CFLAGS) $(CFLAGS) -MT auditdistd-subr.o -MD -MP -MF $(DEPDIR)/auditd…
700 …GS) $(CPPFLAGS) $(auditdistd_CFLAGS) $(CFLAGS) -MT auditdistd-token.o -MD -MP -MF $(DEPDIR)/auditd…
[all …]
/freebsd/crypto/heimdal/lib/krb5/
H A DMakefile.in1474 @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
1481 @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
1488 @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
1502 …la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libkrb5_la-acl.lo -MD -MP -MF $(DEPDIR)/libkrb…
1621 …la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libkrb5_la-crc.lo -MD -MP -MF $(DEPDIR)/libkrb…
1719 …a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libkrb5_la-data.lo -MD -MP -MF $(DEPDIR)/libkrb…
1775 …a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libkrb5_la-free.lo -MD -MP -MF $(DEPDIR)/libkrb…
1873 …la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libkrb5_la-kcm.lo -MD -MP -MF $(DEPDIR)/libkrb…
1936 …la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libkrb5_la-log.lo -MD -MP -MF $(DEPDIR)/libkrb…
1950 …a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libkrb5_la-misc.lo -MD -MP -MF $(DEPDIR)/libkrb…
[all …]
/freebsd/usr.sbin/periodic/etc/security/
H A D100.chksetuid46 MP=`mount -t ufs,zfs | awk '
52 find -sx $MP /dev/null \( ! -fstype local \) -prune -o -type f \
H A D110.neggrpperm44 MP=`mount -t ufs,zfs | awk '
50 n=$(find -sx $MP /dev/null \( ! -fstype local \) -prune -o -type f \
/freebsd/crypto/heimdal/lib/hx509/
H A DMakefile.in968 @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
975 @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
982 @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
989 …la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libhx509_la-ca.lo -MD -MP -MF $(DEPDIR)/libhx5…
1003 …a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libhx509_la-cms.lo -MD -MP -MF $(DEPDIR)/libhx5…
1038 …a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libhx509_la-env.lo -MD -MP -MF $(DEPDIR)/libhx5…
1052 …a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libhx509_la-sel.lo -MD -MP -MF $(DEPDIR)/libhx5…
1325 …tool_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT hxtool-hxtool.o -MD -MP -MF $(DEPDIR)/hxtool…
1332 …ol_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT hxtool-hxtool.obj -MD -MP -MF $(DEPDIR)/hxtool…
1339 …LAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT hxtool-hxtool-commands.o -MD -MP -MF $(DEPDIR)/hxtool…
[all …]
/freebsd/crypto/heimdal/lib/roken/
H A DMakefile.in940 @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
947 @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
954 @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
989 …la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libroken_la-ct.lo -MD -MP -MF $(DEPDIR)/librok…
1087 …a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libroken_la-hex.lo -MD -MP -MF $(DEPDIR)/librok…
1171 …_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libroken_la-rand.lo -MD -MP -MF $(DEPDIR)/librok…
1290 …a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libroken_la-vis.lo -MD -MP -MF $(DEPDIR)/librok…
1367 …) $(parse_reply_test_CFLAGS) $(CFLAGS) -MT parse_reply_test-resolve.o -MD -MP -MF $(DEPDIR)/parse_…
1381 …) $(snprintf_test_CFLAGS) $(CFLAGS) -MT snprintf_test-snprintf-test.o -MD -MP -MF $(DEPDIR)/snprin…
1395 …(strpftime_test_CFLAGS) $(CFLAGS) -MT strpftime_test-strpftime-test.o -MD -MP -MF $(DEPDIR)/strpft…
[all …]
/freebsd/share/examples/ppp/
H A Dppp.conf.span-isp77 # These invocations will bond together into a MP ppp invocation.
91 # When we connect to our ISPs using ppp, we start the MP ppp invocation
97 # This works because the MP invocations are smart enough to recognise that
102 # start the MP invocation.
134 # Our MP version of ppp. vpn is a generic label used by each of the
145 set mru 1504 # Room for the MP header
190 set mru 1504 # Room for the MP header
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DELFNixPlatform.h134 ELFNixPlatformPlugin(ELFNixPlatform &MP) : MP(MP) {} in ELFNixPlatformPlugin() argument
177 ELFNixPlatform &MP; variable
/freebsd/contrib/file/magic/Magdir/
H A Dsylk22 # MP~Multiplan, XL~Excel WXL~Excel Windows
31 >>>4 string MP Multiplan
/freebsd/contrib/llvm-project/llvm/include/llvm/XRay/
H A DGraph.h142 InternalEdgeMapT *MP; variable
151 const EdgeValueType>(this->I, MP, SI);
160 MP(_MP), SI(_SI) {} in NeighborEdgeIteratorT()
164 return *(MP->find({*(this->I), SI}));
166 return *(MP->find({SI, *(this->I)}));
/freebsd/sys/contrib/device-tree/Bindings/media/i2c/
H A Dtoshiba,et8ek8.txt1 Toshiba et8ek8 5MP sensor
3 Toshiba et8ek8 5MP sensor is an image sensor found in Nokia N900 device
/freebsd/contrib/expat/xmlwf/
H A DMakefile.in500 @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
507 @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W…
514 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
521 …(xmlwf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT xmlwf-xmlwf.o -MD -MP -MF $(DEPDIR)/xmlwf-…
528 …mlwf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT xmlwf-xmlwf.obj -MD -MP -MF $(DEPDIR)/xmlwf-…
535 …mlwf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT xmlwf-xmlfile.o -MD -MP -MF $(DEPDIR)/xmlwf-…
542 …wf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT xmlwf-xmlfile.obj -MD -MP -MF $(DEPDIR)/xmlwf-…
549 …lwf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT xmlwf-codepage.o -MD -MP -MF $(DEPDIR)/xmlwf-…
556 …f_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT xmlwf-codepage.obj -MD -MP -MF $(DEPDIR)/xmlwf-…
563 …wf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT xmlwf-@FILEMAP@.o -MD -MP -MF $(DEPDIR)/xmlwf-…
[all …]
/freebsd/sys/arm/mv/armadaxp/
H A Darmadaxp_mp.c61 #define MP (MV_BASE + 0x20800) macro
174 bus_space_write_4(fdtbus_bs_tag, MP, MP_SW_RESET(cpu_num), 0); in mv_axp_platform_mp_start_ap()
/freebsd/contrib/ntp/sntp/unity/
H A DMakefile.in543 @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
551 @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
559 @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
566 …GS) $(libunity_a_CFLAGS) $(CFLAGS) -MT libunity_a-libpkgver-colcomp.o -MD -MP -MF $(DEPDIR)/libuni…
580 …GS) $(CPPFLAGS) $(libunity_a_CFLAGS) $(CFLAGS) -MT libunity_a-unity.o -MD -MP -MF $(DEPDIR)/libuni…
587 …) $(CPPFLAGS) $(libunity_a_CFLAGS) $(CFLAGS) -MT libunity_a-unity.obj -MD -MP -MF $(DEPDIR)/libuni…
594 …(CPPFLAGS) $(libunity_a_CFLAGS) $(CFLAGS) -MT libunity_a-ulib_setup.o -MD -MP -MF $(DEPDIR)/libuni…
601 …PPFLAGS) $(libunity_a_CFLAGS) $(CFLAGS) -MT libunity_a-ulib_setup.obj -MD -MP -MF $(DEPDIR)/libuni…
608 …PFLAGS) $(libunity_a_CFLAGS) $(CFLAGS) -MT libunity_a-ulib_teardown.o -MD -MP -MF $(DEPDIR)/libuni…
615 …LAGS) $(libunity_a_CFLAGS) $(CFLAGS) -MT libunity_a-ulib_teardown.obj -MD -MP -MF $(DEPDIR)/libuni…
[all …]
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelMatcherOpt.cpp80 if (MoveParentMatcher *MP = dyn_cast<MoveParentMatcher>(MC->getNext())) { in ContractNodes() local
81 MatcherPtr.reset(MP->takeNext()); in ContractNodes()
161 if (auto *MP = dyn_cast<MoveParentMatcher>(N)) { in ContractNodes() local
162 if (auto *MC = dyn_cast<MoveChildMatcher>(MP->getNext())) { in ContractNodes()
168 if (auto *RC = dyn_cast<RecordChildMatcher>(MP->getNext())) { in ContractNodes()

1234567891011