Home
last modified time | relevance | path

Searched refs:RM (Results 1 – 25 of 641) sorted by relevance

12345678910>>...26

/src/contrib/bc/
H A DMakefile.in174 RM = rm
304 @$(RM) -f $(GEN_EXEC)
308 @$(RM) -f src/*.tmp gen/*.tmp
309 @$(RM) -f $(OBJ)
310 @$(RM) -f $(BC_EXEC)
311 @$(RM) -f $(DC_EXEC)
312 @$(RM) -fr $(BIN)
313 @$(RM) -f $(BC_LIB_C) $(BC_LIB_O)
314 @$(RM) -f $(BC_LIB2_C) $(BC_LIB2_O)
315 @$(RM) -f $(BC_HELP_C) $(BC_HELP_O)
[all …]
/src/crypto/krb5/src/config/
H A Dlib.in31 $(RM) $@
37 $(RM) $@
42 $(RM) $@
45 $(RM) $@
60 $(RM) osf1.tmp osf1.exports
76 $(RM) hpux.tmp hpux.exports
91 $(RM) $@
97 $(RM) $@
100 $(RM) $@
103 $(RM) $@
[all …]
H A Dlibnover.in32 $(RM) $@
38 $(RM) $@
49 $(RM) osf1.tmp osf1.exports
65 $(RM) hpux.tmp hpux.exports
77 $(RM) darwin.exports
81 $(RM) $@
90 $(RM) $@
96 $(RM) $@
103 $(RM) $(LIBBASE)$(DYNOBJEXT)
104 $(RM) binutils.versions osf1.exports darwin.exports hpux.exports
[all …]
/src/contrib/bmake/mk/
H A Dautodep.mk70 RM?= rm
89 …@${MAKE_SHELL} -ec "${CC_MD} -M ${CPPFLAGS_MD} y.tab.c | sed '/:/s/^/$@ /' > $@" || { ${RM} -f y.t…
90 @${RM} -f y.tab.c
95 …@${MAKE_SHELL} -ec "${CC_MD} -M ${CPPFLAGS_MD} lex.yy.c | sed '/:/s/^/$@ /' > $@" || { ${RM} -f le…
96 @${RM} -f lex.yy.c
100 …@${MAKE_SHELL} -ec "${CC_MD} -M ${CPPFLAGS_MD} $< | sed '/:/s/^/$@ /' > $@" || { ${RM} -f $@; fals…
104 …@${MAKE_SHELL} -ec "${CC_MD} -M ${CPPFLAGS_MD} ${AINC} $< | sed '/:/s/^/$@ /' > $@" || { ${RM} -f …
108 …@${MAKE_SHELL} -ec "${CXX_MD} -M ${CXXFLAGS_MD} $< | sed '/:/s/^/$@ /' > $@" || { ${RM} -f $@; fal…
114 ${CC_MD} ${CFLAGS_MD:S/D//} ${CPPFLAGS_MD} y.tab.c > $@ || { ${RM} -f y.tab.c $@; false; }
115 ${RM} -f y.tab.c
[all …]
H A Dyacc.mk16 RM?= rm
28 ${RM} -f y.tab.[!h]
37 ${RM} -f y.tab.*
47 ${RM} -f y.tab.[!h]
58 ${RM} -f y.tab.*
67 ${RM} y.tab.*; }; }
/src/contrib/llvm-project/clang/lib/AST/Interp/
H A DFloating.h56 llvm::RoundingMode RM) const { in toSemantics() argument
59 Copy.convert(*Sem, RM, &LosesInfo); in toSemantics()
65 Floating toSemantics(const Floating &Other, llvm::RoundingMode RM) const { in toSemantics() argument
66 return toSemantics(&Other.F.getSemantics(), RM); in toSemantics()
121 llvm::RoundingMode RM, in fromIntegral() argument
124 APFloat::opStatus Status = F.convertFromAPInt(Val, Val.isSigned(), RM); in fromIntegral()
169 llvm::RoundingMode RM, Floating *R) { in add() argument
171 return R->F.add(B.F, RM); in add()
174 static APFloat::opStatus increment(const Floating &A, llvm::RoundingMode RM, in increment() argument
178 return R->F.add(One, RM); in increment()
[all …]
/src/tests/sys/cddl/zfs/tests/xattr/
H A Dxattr_011_pos.ksh56 log_must $RM $TESTDIR/myfile.${TESTCASE_ID}
97 log_must $RM $TESTDIR/cpio.${TESTCASE_ID} $TMPDIR/xattr.${TESTCASE_ID}.cpio $TMPDIR/noxattr.${TESTC…
105 log_must $RM $TESTDIR/myfile2.${TESTCASE_ID}
110 log_must $RM $TESTDIR/myfile2.${TESTCASE_ID}
130 log_must $RM -rf $TESTDIR/noxattrs
141 log_must $RM $TESTDIR/mvfile2.${TESTCASE_ID}
149 log_must $RM $TESTDIR/pax.${TESTCASE_ID}
154 log_must $RM $TESTDIR/pax.${TESTCASE_ID}
159 log_must $RM $TESTDIR/pax.${TESTCASE_ID}
165 log_must $RM $TESTDIR/pax.${TESTCASE_ID}
[all …]
H A Dxattr_common.kshlib56 log_must $RM $TMPDIR/file1.${TESTCASE_ID} $TMPDIR/file2.${TESTCASE_ID}
67 $RM $TMPDIR/$XATTR_NAME.${TESTCASE_ID}
75 log_must $RUNAT $FILE $RM $XATTR_NAME
88 log_must $RM $TMPDIR/passwd_dd.${TESTCASE_ID} $TMPDIR/$XATTR_NAME.${TESTCASE_ID}
96 log_must $RM $FILE
/src/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcTargetMachine.cpp65 static Reloc::Model getEffectiveRelocModel(std::optional<Reloc::Model> RM) { in getEffectiveRelocModel() argument
66 return RM.value_or(Reloc::Static); in getEffectiveRelocModel()
80 getEffectiveSparcCodeModel(std::optional<CodeModel::Model> CM, Reloc::Model RM, in getEffectiveSparcCodeModel() argument
92 return RM == Reloc::PIC_ ? CodeModel::Small : CodeModel::Medium; in getEffectiveSparcCodeModel()
101 std::optional<Reloc::Model> RM, in SparcTargetMachine() argument
106 getEffectiveRelocModel(RM), in SparcTargetMachine()
108 CM, getEffectiveRelocModel(RM), is64bit, JIT), in SparcTargetMachine()
203 std::optional<Reloc::Model> RM, in SparcV8TargetMachine() argument
206 : SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, false) {} in SparcV8TargetMachine()
213 std::optional<Reloc::Model> RM, in SparcV9TargetMachine() argument
[all …]
/src/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPFloat.h705 IEEEFloat frexp(const IEEEFloat &Val, int &Exp, IEEEFloat::roundingMode RM);
717 const APFloat &cc, roundingMode RM);
720 DoubleAPFloat &Out, roundingMode RM);
741 opStatus add(const DoubleAPFloat &RHS, roundingMode RM);
742 opStatus subtract(const DoubleAPFloat &RHS, roundingMode RM);
743 opStatus multiply(const DoubleAPFloat &RHS, roundingMode RM);
744 opStatus divide(const DoubleAPFloat &RHS, roundingMode RM);
748 const DoubleAPFloat &Addend, roundingMode RM);
749 opStatus roundToIntegral(roundingMode RM);
770 unsigned int Width, bool IsSigned, roundingMode RM,
[all …]
/src/contrib/bsddialog/lib/
H A DMakefile25 RM = rm -f macro
38 ${RM} ${DESTDIR}${PREFIX}/include/bsddialog.h
39 ${RM} ${DESTDIR}${PREFIX}/include/bsddialog_progressview.h
40 ${RM} ${DESTDIR}${PREFIX}/include/bsddialog_theme.h
41 ${RM} ${DESTDIR}${PREFIX}/lib/${LIBRARY_A}
42 ${RM} ${DESTDIR}${PREFIX}/lib/${LIBRARY_SO}.${VERSION}
43 ${RM} ${DESTDIR}${PREFIX}/lib/${LIBRARY_SO}
61 ${RM} ${LIBRARY_SO}* *.o *~ *.gz ${LIBRARY_A}
H A DGNUmakefile22 RM = rm -f macro
35 ${RM} ${DESTDIR}${PREFIX}/include/bsddialog.h
36 ${RM} ${DESTDIR}${PREFIX}/include/bsddialog_progressview.h
37 ${RM} ${DESTDIR}${PREFIX}/include/bsddialog_theme.h
38 ${RM} ${DESTDIR}${PREFIX}/lib/${LIBRARY_SO}.${VERSION}
39 ${RM} ${DESTDIR}${PREFIX}/lib/${LIBRARY_SO}
49 $(RM) $(LIBRARY_SO)* *.o *~
/src/contrib/llvm-project/llvm/lib/Target/Xtensa/
H A DXtensaTargetMachine.cpp39 std::optional<Reloc::Model> RM) { in getEffectiveRelocModel() argument
40 if (!RM || JIT) in getEffectiveRelocModel()
42 return *RM; in getEffectiveRelocModel()
48 std::optional<Reloc::Model> RM, in XtensaTargetMachine() argument
53 CPU, FS, Options, getEffectiveRelocModel(JIT, RM), in XtensaTargetMachine()
62 std::optional<Reloc::Model> RM, in XtensaTargetMachine() argument
65 : XtensaTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, true) {} in XtensaTargetMachine()
/src/contrib/llvm-project/llvm/include/llvm/IR/
H A DFPEnv.h65 inline bool isDefaultFPEnvironment(fp::ExceptionBehavior EB, RoundingMode RM) { in isDefaultFPEnvironment() argument
66 return EB == fp::ebIgnore && RM == RoundingMode::NearestTiesToEven; in isDefaultFPEnvironment()
77 inline bool canRoundingModeBe(RoundingMode RM, RoundingMode QRM) { in canRoundingModeBe() argument
78 return RM == QRM || RM == RoundingMode::Dynamic; in canRoundingModeBe()
/src/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTargetMachine.cpp95 static Reloc::Model getEffectiveRelocModel(std::optional<Reloc::Model> RM) { in getEffectiveRelocModel() argument
98 if (!RM || *RM == Reloc::DynamicNoPIC) in getEffectiveRelocModel()
100 return *RM; in getEffectiveRelocModel()
134 Reloc::Model RM, bool JIT) { in getEffectiveSystemZCodeModel() argument
143 return RM == Reloc::PIC_ ? CodeModel::Small : CodeModel::Medium; in getEffectiveSystemZCodeModel()
150 std::optional<Reloc::Model> RM, in SystemZTargetMachine() argument
155 getEffectiveRelocModel(RM), in SystemZTargetMachine()
156 getEffectiveSystemZCodeModel(CM, getEffectiveRelocModel(RM), JIT), in SystemZTargetMachine()
/src/tests/sys/cddl/zfs/tests/snapshot/
H A Dsnapshot_007_pos.ksh65 log_must $RM -rf $SNAPDIR1.$i > /dev/null 2>&1
72 log_must $RM -rf $SNAPDIR1 > /dev/null 2>&1
76 log_must $RM -rf $TESTDIR/* > /dev/null 2>&1
85 log_must $RM -rf $TESTDIR/* > /dev/null 2>&1
94 log_must $RM -rf $TESTDIR1/file* > /dev/null 2>&1
H A Dsnapshot_006_pos.ksh70 log_must $RM -rf $SNAPDIR1 > /dev/null 2>&1
74 log_must $RM -rf $TESTDIR1/* > /dev/null 2>&1
78 log_must $RM -rf $TMPDIR/zfs_snapshot2.${TESTCASE_ID} > /dev/null 2>&1
91 [[ -n $TESTDIR1 ]] && $RM -rf $TESTDIR1/* > /dev/null 2>&1
106 log_must $RM -f $TESTDIR1/file* > /dev/null 2>&1
H A Dsnapshot_002_pos.ksh71 log_must $RM -rf $SNAPDIR > /dev/null 2>&1
75 log_must $RM -rf $TESTDIR/* > /dev/null 2>&1
79 log_must $RM -rf $TMPDIR/zfs_snapshot2.${TESTCASE_ID} > /dev/null 2>&1
93 $RM -rf $TESTDIR/* > /dev/null 2>&1
108 log_must $RM -f $TESTDIR/file* > /dev/null 2>&1
/src/sys/contrib/zstd/lib/
H A DMakefile243 $(RM) -r *.dSYM # macOS-specific
244 $(RM) core *.o *.a *.gcda *.$(SHARED_EXT) *.$(SHARED_EXT).* libzstd.pc
245 $(RM) dll/libzstd.dll dll/libzstd.lib libzstd-nomt*
246 $(RM) -r obj/*
347 $(RM) $(DESTDIR)$(LIBDIR)/libzstd.a
348 $(RM) $(DESTDIR)$(LIBDIR)/libzstd.$(SHARED_EXT)
349 $(RM) $(DESTDIR)$(LIBDIR)/libzstd.$(SHARED_EXT_MAJOR)
350 $(RM) $(DESTDIR)$(LIBDIR)/$(LIBZSTD)
351 $(RM) $(DESTDIR)$(PKGCONFIGDIR)/libzstd.pc
352 $(RM) $(DESTDIR)$(INCLUDEDIR)/zstd.h
[all …]
/src/sys/contrib/zstd/programs/
H A DMakefile240 $(RM) zstd *.o
276 $(RM) core *.o tmp* result* *.gcda dictionary *.zst \
282 $(RM) -r obj/*
302 $(RM) zstd.1
303 $(RM) zstdgrep.1
304 $(RM) zstdless.1
422 $(RM) $(DESTDIR)$(BINDIR)/zstdgrep
423 $(RM) $(DESTDIR)$(BINDIR)/zstdless
424 $(RM) $(DESTDIR)$(BINDIR)/zstdcat
425 $(RM) $(DESTDIR)$(BINDIR)/unzstd
[all …]
/src/contrib/llvm-project/llvm/lib/Target/
H A DTargetMachineC.cpp40 std::optional<Reloc::Model> RM; member
165 std::optional<Reloc::Model> RM; in LLVMTargetMachineOptionsSetRelocMode() local
169 RM = Reloc::Static; in LLVMTargetMachineOptionsSetRelocMode()
172 RM = Reloc::PIC_; in LLVMTargetMachineOptionsSetRelocMode()
175 RM = Reloc::DynamicNoPIC; in LLVMTargetMachineOptionsSetRelocMode()
178 RM = Reloc::ROPI; in LLVMTargetMachineOptionsSetRelocMode()
181 RM = Reloc::RWPI; in LLVMTargetMachineOptionsSetRelocMode()
184 RM = Reloc::ROPI_RWPI; in LLVMTargetMachineOptionsSetRelocMode()
190 unwrap(Options)->RM = RM; in LLVMTargetMachineOptionsSetRelocMode()
206 TO, Opt->RM, Opt->CM, Opt->OL, in LLVMCreateTargetMachineWithOptions()
/src/tests/sys/cddl/zfs/tests/cli_root/zpool_import/
H A Dzpool_import.kshlib17 log_must $RM -rf $DEVICE_DIR/*
30 log_must $RM -rf $DEVICE_DIR/*
31 [[ -d $ALTER_ROOT ]] && log_must $RM -rf $ALTER_ROOT
32 [[ -d $BACKUP_DEVICE_DIR ]] && log_must $RM -rf $BACKUP_DEVICE_DIR
/src/crypto/krb5/src/util/ss/
H A DMakefile.in79 $(RM) $(HDRDIR)/ss.h
82 $(RM) $(HDRDIR)/ss_err.h
86 $(RM) $(HDRS) $(HDRDIR)/timestamp
87 $(RM) -r $(HDRDIR)
98 $(RM) ct.tab.* y.*
110 $(RM) $@
117 $(RM) ss_err.o ss_err.c ss_err.h std_rqs.c
118 $(RM) mk_cmds ct_c.awk ct_c.sed $(MKCMDSOBJS)
/src/contrib/lua/
H A DMakefile34 RM= rm -f macro
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/tests/sys/cddl/zfs/tests/devices/
H A Ddevices_common.kshlib110 log_must $RM -f $TESTDIR/$TESTFILE1
111 log_must $RM -f $TESTDIR/$TESTFILE2
112 log_must $RM -f $TESTDIR/$TESTFILE1.out
113 log_must $RM -f $TESTDIR/$TESTFILE2.out

12345678910>>...26