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

12

/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DMemory.cpp34 raw_ostream &operator<<(raw_ostream &OS, const Memory::ProtectionFlags &PF) { argument
35 assert((PF & ~(Memory::MF_READ | Memory::MF_WRITE | Memory::MF_EXEC)) == 0 &&
38 return OS << (PF & Memory::MF_READ ? 'R' : '-')
39 << (PF & Memory::MF_WRITE ? 'W' : '-')
40 << (PF & Memory::MF_EXEC ? 'X' : '-');
/freebsd-current/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-current/usr.sbin/bsnmpd/modules/snmp_pf/
H A DMakefile9 BMIBS= BEGEMOT-PF-MIB.txt
/freebsd-current/contrib/arm-optimized-routines/math/
H A Derf.c22 #define PF __erf_data.erfc_poly_F macro
206 double r1 = fma (a, PF[1], PF[0]);
207 double r2 = fma (a, PF[3], PF[2]);
208 double r3 = fma (a, PF[5], PF[4]);
209 double r4 = fma (a, PF[7], PF[6]);
210 double r5 = fma (a, PF[
[all...]
/freebsd-current/usr.sbin/periodic/etc/security/
H A DMakefile38 CONFGROUPS+= PF
39 PF+= 520.pfdenied
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetSubtargetInfo.cpp19 ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetSubTypeKV> PD,
23 : MCSubtargetInfo(TT, CPU, TuneCPU, FS, PF, PD, WPR, WL, RA, IS, OC, FP) {}
17 TargetSubtargetInfo( const Triple &TT, StringRef CPU, StringRef TuneCPU, 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-current/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-current/bin/pax/
H A Doptions.h64 #define PF 0x00000400 macro
107 #define BDARCH (CF|KF|LF|NF|PF|RF|CDF|CEF|CYF|CZF)
109 #define BDLIST (AF|BF|IF|KF|LF|OF|PF|RF|TF|UF|WF|XF|CBF|CDF|CHF|CLF|CPF|CXF|CYF|CZF)
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/
H A DMemoryFlags.h45 std::underlying_type_t<sys::Memory::ProtectionFlags> PF = 0; local
47 PF |= sys::Memory::MF_READ;
49 PF |= sys::Memory::MF_WRITE;
51 PF |= sys::Memory::MF_EXEC;
52 return static_cast<sys::Memory::ProtectionFlags>(PF);
57 inline MemProt fromSysMemoryProtectionFlags(sys::Memory::ProtectionFlags PF) { argument
59 if (PF & sys::Memory::MF_READ)
61 if (PF & sys::Memory::MF_WRITE)
63 if (PF & sys::Memory::MF_EXEC)
/freebsd-current/usr.sbin/newsyslog/newsyslog.conf.d/
H A DMakefile29 CONFGROUPS+= PF
30 PF+= pf.conf
/freebsd-current/usr.bin/printf/
H A Dprintf.c59 #define PF(f, func) do { \ macro
370 PF(start, p);
383 PF(start, p);
390 PF(start, p);
405 PF(f, val);
407 PF(f, uval);
419 PF(start, p);
421 PF(start, (double)p);
/freebsd-current/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/
H A DPatterns.h316 /// For PatFrag this only returns the root of the PF.
606 PatFragPattern(const PatFrag &PF, StringRef Name) argument
607 : InstructionPattern(K_PatFrag, Name), PF(PF) {}
611 const PatFrag &getPatFrag() const { return PF; }
612 StringRef getInstName() const override { return PF.getName(); }
614 unsigned getNumInstDefs() const override { return PF.num_out_params(); }
615 unsigned getNumInstOperands() const override { return PF.num_params(); }
642 const PatFrag &PF; member in class:PatFragPattern
H A DPatterns.cpp730 assert(PF.num_roots() == 1);
732 for (auto [Idx, Param] : enumerate(PF.out_params())) {
746 switch (PF.getParam(Idx).Kind) {
781 StringRef ParamName = PF.getParam(Idx).Name;
792 if (!PF.handleUnboundInParam(ParamName, ArgName, DiagLoc))
/freebsd-current/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-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DMemory.h173 raw_ostream &operator<<(raw_ostream &OS, const Memory::ProtectionFlags &PF);
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp536 int (*PF)(int, char **, const char **) =
541 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
550 int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr;
554 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
563 int (*PF)(int) = (int(*)(int))(intptr_t)FPtr;
564 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue()));
/freebsd-current/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-current/contrib/llvm-project/llvm/lib/MC/
H A DMCAssembler.cpp726 const MCPseudoProbeAddrFragment &PF = cast<MCPseudoProbeAddrFragment>(F); local
727 OS << PF.getContents();
929 MCPseudoProbeAddrFragment &PF = cast<MCPseudoProbeAddrFragment>(Frag); local
930 Fixups = PF.getFixups();
931 Contents = PF.getContents();
1180 MCPseudoProbeAddrFragment &PF) {
1181 uint64_t OldSize = PF.getContents().size();
1183 bool Abs = PF.getAddrDelta().evaluateKnownAbsolute(AddrDelta, Layout);
1186 SmallVectorImpl<char> &Data = PF.getContents();
1189 PF
1179 relaxPseudoProbeAddr(MCAsmLayout &Layout, MCPseudoProbeAddrFragment &PF) argument
[all...]
H A DMCSubtargetInfo.cpp227 StringRef FS, ArrayRef<SubtargetFeatureKV> PF,
235 ProcFeatures(PF), ProcDesc(PD), WriteProcResTable(WPR),
226 MCSubtargetInfo(const Triple &TT, StringRef C, StringRef TC, 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
H A DMCWin64EH.cpp1877 unsigned PF = 0; // Number of extra pushed registers local
1941 if (!parseRegMask(Inst.Register, HasLR, HasR11, PF, IntRegs))
1948 if (Step != 3 || !HasR11 || IntRegs >= 0 || PF > 0)
1955 if (Step != 3 || !HasR11 || (IntRegs < 0 && PF == 0))
1977 if (PF > 0) // Can't have both folded and explicit stack allocation
2056 PF == 0 && Inst.Offset == 16) {
2065 } else if (PF == Inst.Offset / 4) {
2143 if (EF != PF && EF != StackAdjust)
2223 assert(PF == 0 || EF == 0 ||
2225 if (PF >
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCallPromotionUtils.cpp447 PointerType *PF = dyn_cast<PointerType>(FormalTy); local
449 if (!PF || !PA || PF->getAddressSpace() != PA->getAddressSpace()) {
/freebsd-current/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetSubtargetInfo.h66 StringRef FS, ArrayRef<SubtargetFeatureKV> PF,
/freebsd-current/contrib/llvm-project/llvm/utils/TableGen/
H A DGlobalISelCombinerEmitter.cpp884 for (const auto *PF : SeenPatFrags) {
885 PF->print(OS, /*Indent=*/" ");
1564 const PatFrag *PF = parsePatFrag(Def);
1565 if (!PF)
1567 Pat = std::make_unique<PatFragPattern>(*PF, insertStrRef(Name));
2017 const auto &PF = PFP.getPatFrag();
2023 if (PF.num_out_params() != 0) {
2032 assert(PF.num_roots() == 1);
2054 unsigned PIdx = PF.getParamIdx(ParamName);
2072 StringRef PFName = PF
[all...]
/freebsd-current/libexec/getty/
H A Dmain.c522 if (PF > 0) {
523 sleep(PF);
524 PF = 0;

Completed in 230 milliseconds

12