HomeSort by: relevance | last modified time | path
    Searched defs:RM (Results 1 - 25 of 44) sorted by relevancy

1 2

  /src/lib/libcurses/EXAMPLES/
Makefile 29 RM = /bin/rm -f
  /src/external/gpl2/lvm2/dist/test/
Makefile 16 RM ?= rm -f
38 rm -f $@-t $@
72 rm -rf bin
81 rm -f $@-t $@
91 rm -rf init.sh lvm-wrapper bin .bin-dir-stamp
94 rm -f Makefile
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
BuiltinFunctionChecker.cpp 84 MemRegionManager& RM = C.getStoreManager().getRegionManager();
86 RM.getAllocaRegion(CE, C.blockCount(), C.getLocationContext());
  /src/external/apache2/llvm/dist/llvm/include/llvm/MCA/Stages/
InOrderIssueStage.h 35 std::unique_ptr<ResourceManager> RM;
84 : SM(SM), STI(STI), PRF(PRF), RM(std::make_unique<ResourceManager>(SM)),
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelLowering.h 471 RM = 2, // Round towards Minus infinity
  /src/external/mit/lua/dist/
Makefile 34 RM= rm -f
65 cd src && cd $(INSTALL_BIN) && $(RM) $(TO_BIN)
66 cd src && cd $(INSTALL_INC) && $(RM) $(TO_INC)
67 cd src && cd $(INSTALL_LIB) && $(RM) $(TO_LIB)
68 cd doc && cd $(INSTALL_MAN) && $(RM) $(TO_MAN)
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMISelLowering.h 359 RM = 2, // Round towards Minus infinity
  /src/external/apache2/llvm/dist/llvm/lib/Target/
TargetMachine.cpp 70 Reloc::Model TargetMachine::getRelocationModel() const { return RM; }
97 Reloc::Model RM = getRelocationModel();
147 if (RM == Reloc::Static)
158 assert(RM != Reloc::DynamicNoPIC);
172 Reloc::Model RM = getRelocationModel();
173 bool IsSharedLibrary = RM == Reloc::PIC_ && !IsPIE;
TargetMachineC.cpp 106 Optional<Reloc::Model> RM;
109 RM = Reloc::Static;
112 RM = Reloc::PIC_;
115 RM = Reloc::DynamicNoPIC;
118 RM = Reloc::ROPI;
121 RM = Reloc::RWPI;
124 RM = Reloc::ROPI_RWPI;
150 return wrap(unwrap(T)->createTargetMachine(Triple, CPU, Features, opt, RM, CM,
  /src/usr.sbin/rtadvd/
advcap.c 74 char *RM;
139 tf = open(RM = cp, O_RDONLY);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
JITTargetMachineBuilder.h 86 JITTargetMachineBuilder &setRelocationModel(Optional<Reloc::Model> RM) {
87 this->RM = std::move(RM);
92 const Optional<Reloc::Model> &getRelocationModel() const { return RM; }
153 Optional<Reloc::Model> RM;
  /src/external/mit/lua/dist/src/
Makefile 16 RM= rm -f
73 $(RM) $(ALL_T) $(ALL_O)
86 @echo "RM= $(RM)"
  /src/external/apache2/llvm/dist/llvm/tools/llc/
llc.cpp 483 Optional<Reloc::Model> RM = codegen::getExplicitRelocModel();
510 if (TheTriple.isOSAIX() && RM.hasValue() && *RM != Reloc::PIC_)
516 TheTriple.getTriple(), CPUStr, FeaturesStr, Options, RM,
553 if (TheTriple.isOSAIX() && RM.hasValue() && *RM != Reloc::PIC_) {
561 TheTriple.getTriple(), CPUStr, FeaturesStr, Options, RM,
  /src/external/gpl3/binutils/dist/opcodes/
mcore-opc.h 27 RM, RQ, JSR, JMP, OBRa, OBRb, OBRc, OBR2,
62 { "ldm", RM, 0, 0x0060 },
63 { "stm", RM, 0, 0x0070 },
  /src/external/gpl3/binutils.old/dist/opcodes/
mcore-opc.h 27 RM, RQ, JSR, JMP, OBRa, OBRb, OBRc, OBR2,
62 { "ldm", RM, 0, 0x0060 },
63 { "stm", RM, 0, 0x0070 },
  /src/external/gpl3/gdb.old/dist/opcodes/
mcore-opc.h 27 RM, RQ, JSR, JMP, OBRa, OBRb, OBRc, OBR2,
62 { "ldm", RM, 0, 0x0060 },
63 { "stm", RM, 0, 0x0070 },
  /src/external/gpl3/gdb/dist/opcodes/
mcore-opc.h 27 RM, RQ, JSR, JMP, OBRa, OBRb, OBRc, OBR2,
62 { "ldm", RM, 0, 0x0060 },
63 { "stm", RM, 0, 0x0070 },
  /src/distrib/syspkg/mk/
bsd.syspkg.mk 115 RM?= /bin/rm
275 ${RM} -f ${PACKAGES}/$$cat/${PKGNAME}${PKG_SUFX}; \
283 ${FIND} ${PACKAGES} -type l -name ${PKGNAME}${PKG_SUFX} | xargs ${RM} -f
289 ${_PKG_SILENT}${_PKG_DEBUG}${RM} -f ${PKGFILE}
394 ${RM} -f ${PLIST} ${BUILD_VERSION_FILE} ${BUILD_INFO_FILE} ${SIZE_PKG_FILE} ${SIZE_ALL_FILE}
468 ${_PKG_SILENT}${_PKG_DEBUG}${RM} -f ${PACKAGE_COOKIE}
553 ${RM} -f ${PKG_DBDIR}; \
558 ${_PKG_SILENT}${_PKG_DEBUG}${RM} -rf ${PKG_DBDIR}/${PKGNAME}
560 ${_PKG_SILENT}${_PKG_DEBUG}${RM} -f ${BUILD_VERSION_FILE} ${BUILD_INFO_FILE
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Target/
TargetMachine.h 100 Reloc::Model RM = Reloc::Static;
389 const TargetOptions &Options, Reloc::Model RM,
  /src/external/apache2/llvm/dist/llvm/lib/Support/
APFixedPoint.cpp 460 APFloat::roundingMode RM = APFloat::rmNearestTiesToEven;
473 APFloat::opStatus S = Flt.convertFromAPInt(Val, Sema.isSigned(), RM);
487 Flt.convert(FloatSema, RM, &Ignored);
508 APFloat::roundingMode RM = APFloat::rmTowardZero;
543 Val.convertToInteger(Res, RM, &Ignored);
552 Val.roundToIntegral(RM);
  /src/usr.bin/tip/
tip.c 101 char *RM;
  /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTX.h 138 RM,
  /src/usr.sbin/lpr/common_source/
common.c 96 const char *RM; /* remote machine name */
348 * as the remote machine (RM) entry (if it exists).
368 if (RM == NULL)
379 /* get the remote host addresses (RM) */
384 error = getaddrinfo(gethost(RM), NULL, &hints, &res0);
388 RM, gai_strerror(error));
455 RM = cgetstr(bp, "rm", &cp) == -1 ? NULL : cp;
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
BackendUtil.cpp 899 llvm::Reloc::Model RM = CodeGenOpts.RelocationModel;
907 Options, RM, CM, OptLevel));
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 1246 auto RM = Optional<Reloc::Model>();
1248 Target->createTargetMachine(TargetTriple, CPU, Features, opt, RM);

Completed in 36 milliseconds

1 2