Searched refs:PF (Results 1 - 25 of 37) sorted by relevance

12

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DMemory.cpp35 raw_ostream &operator<<(raw_ostream &OS, const Memory::ProtectionFlags &PF) { argument
36 assert((PF & ~(Memory::MF_READ | Memory::MF_WRITE | Memory::MF_EXEC)) == 0 &&
39 return OS << (PF & Memory::MF_READ ? 'R' : '-')
40 << (PF & Memory::MF_WRITE ? 'W' : '-')
41 << (PF & Memory::MF_EXEC ? 'X' : '-');
/freebsd-12-stable/contrib/ofed/opensm/include/complib/
H A Dcl_types_osd.h73 #define PF(exp) __builtin_expect( ((uintptr_t)(exp)), 0 ) macro
76 #define PF(exp) (exp)
/freebsd-12-stable/usr.sbin/bsnmpd/modules/snmp_pf/
H A DMakefile10 BMIBS= BEGEMOT-PF-MIB.txt
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetSubtargetInfo.cpp19 ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetSubTypeKV> PD,
23 : MCSubtargetInfo(TT, CPU, FS, PF, PD, WPR, WL, RA, IS, OC, FP) {
17 TargetSubtargetInfo( const Triple &TT, StringRef CPU, StringRef FS, ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetSubTypeKV> PD, const MCWriteProcResEntry *WPR, const MCWriteLatencyEntry *WL, const MCReadAdvanceEntry *RA, const InstrStage *IS, const unsigned *OC, const unsigned *FP) argument
/freebsd-12-stable/contrib/wpa/wpa_supplicant/examples/
H A Dp2p-action-udhcp.sh8 PF=$2
10 if [ ! -r $PF ]; then
14 PID=`cat $PF`
20 rm $PF
H A Dp2p-action.sh8 PF=$2
10 if [ ! -r $PF ]; then
14 PID=`cat $PF`
20 rm $PF
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DOrcMCJITReplacement.cpp49 int (*PF)(int, char **, const char **) =
54 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
63 int (*PF)(int, char **) = (int (*)(int, char **))(intptr_t)FPtr;
67 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
75 int (*PF)(int) = (int (*)(int))(intptr_t)FPtr;
76 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue()));
/freebsd-12-stable/bin/pax/
H A Doptions.h67 #define PF 0x00000400 macro
110 #define BDARCH (CF|KF|LF|NF|PF|RF|CDF|CEF|CYF|CZF)
112 #define BDLIST (AF|BF|IF|KF|LF|OF|PF|RF|TF|UF|WF|XF|CBF|CDF|CHF|CLF|CPF|CXF|CYF|CZF)
/freebsd-12-stable/usr.bin/printf/
H A Dprintf.c75 #define PF(f, func) do { \ macro
386 PF(start, p);
399 PF(start, p);
406 PF(start, p);
421 PF(f, val);
423 PF(f, uval);
435 PF(start, p);
437 PF(start, (double)p);
/freebsd-12-stable/contrib/ofed/opensm/opensm/
H A Dosm_node_info_rcv.c164 if (PF(!p_neighbor_node)) {
489 if (PF(p_port == NULL)) {
502 if (PF(p_port_check != p_port)) {
517 if (PF(!p_alias_guid)) {
554 if (PF(p_physp == NULL)) {
687 if (PF(port_num > p_ni->num_ports)) {
699 if (PF(p_node == NULL)) {
710 if (PF(p_port == NULL)) {
723 if (PF(p_port_check != p_port)) {
746 if (PF(!p_alias_gui
[all...]
/freebsd-12-stable/contrib/binutils/binutils/
H A Dobjdump.c325 #define PF(x, y) \
328 PF (SEC_HAS_CONTENTS, "CONTENTS");
329 PF (SEC_ALLOC, "ALLOC");
330 PF (SEC_CONSTRUCTOR, "CONSTRUCTOR");
331 PF (SEC_LOAD, "LOAD");
332 PF (SEC_RELOC, "RELOC");
333 PF (SEC_READONLY, "READONLY");
334 PF (SEC_CODE, "CODE");
335 PF (SEC_DATA, "DATA");
336 PF (SEC_RO
322 #define PF macro
381 #undef PF macro
2386 #define PF macro
[all...]
H A Dreadelf.c5271 #define PF(_m) if (tp->_m) printf (#_m " ");
5273 PF(Cannot_unwind);
5274 PF(Millicode);
5275 PF(Millicode_save_sr0);
5277 PF(Entry_SR);
5280 PF(Args_stored);
5281 PF(Variable_Frame);
5282 PF(Separate_Package_Body);
5283 PF(Frame_Extension_Millicode);
5284 PF(Stack_Overflow_Chec
5268 #define PF macro
5297 #undef PF macro
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DMemory.h166 raw_ostream &operator<<(raw_ostream &OS, const Memory::ProtectionFlags &PF);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp530 int (*PF)(int, char **, const char **) =
535 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
544 int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr;
548 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
557 int (*PF)(int) = (int(*)(int))(intptr_t)FPtr;
558 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue()));
/freebsd-12-stable/contrib/llvm-project/llvm/tools/bugpoint/
H A DExtractFunction.cpp90 const Function *PF = PBB->getParent(); local
94 RFI, std::distance(PF->getParent()->begin(), Module::const_iterator(PF)));
97 std::advance(RBI, std::distance(PF->begin(), Function::const_iterator(PBB)));
/freebsd-12-stable/contrib/gcclibs/libcpp/
H A Dinternal.h500 #define CPP_PEDANTIC(PF) CPP_OPTION (PF, pedantic)
501 #define CPP_WTRADITIONAL(PF) CPP_OPTION (PF, warn_traditional)
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetSubtargetInfo.h65 ArrayRef<SubtargetFeatureKV> PF,
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSubtargetInfo.h94 ArrayRef<SubtargetFeatureKV> PF,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCSubtargetInfo.cpp211 ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetSubTypeKV> PD,
215 : TargetTriple(TT), CPU(C), ProcFeatures(PF), ProcDesc(PD),
209 MCSubtargetInfo( const Triple &TT, StringRef C, StringRef FS, ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetSubTypeKV> PD, const MCWriteProcResEntry *WPR, const MCWriteLatencyEntry *WL, const MCReadAdvanceEntry *RA, const InstrStage *IS, const unsigned *OC, const unsigned *FP) argument
/freebsd-12-stable/contrib/binutils/bfd/
H A DpeXXigen.c1847 #undef PF macro
1848 #define PF(x, y) if (pe->real_flags & x) { fprintf (file, "\t%s\n", y); }
1849 PF (IMAGE_FILE_RELOCS_STRIPPED, "relocations stripped");
1850 PF (IMAGE_FILE_EXECUTABLE_IMAGE, "executable");
1851 PF (IMAGE_FILE_LINE_NUMS_STRIPPED, "line numbers stripped");
1852 PF (IMAGE_FILE_LOCAL_SYMS_STRIPPED, "symbols stripped");
1853 PF (IMAGE_FILE_LARGE_ADDRESS_AWARE, "large address aware");
1854 PF (IMAGE_FILE_BYTES_REVERSED_LO, "little endian");
1855 PF (IMAGE_FILE_32BIT_MACHINE, "32 bit words");
1856 PF (IMAGE_FILE_DEBUG_STRIPPE
1846 #undef PF macro
1859 #undef PF macro
[all...]
/freebsd-12-stable/libexec/getty/
H A Dmain.c534 if (PF > 0) {
535 sleep(PF);
536 PF = 0;
H A Dgettytab.h113 #define PF gettynums[12].value macro
/freebsd-12-stable/usr.bin/netstat/
H A Dif.c55 #ifdef PF
81 #ifdef PF
189 #endif /* PF */
/freebsd-12-stable/sys/conf/
H A Dkern.opts.mk45 PF \
/freebsd-12-stable/sbin/ipfw/
H A Dipfw2.h409 #ifdef PF

Completed in 381 milliseconds

12