Home
last modified time | relevance | path

Searched refs:PF (Results 1 – 25 of 94) sorted by relevance

1234

/freebsd/contrib/arm-optimized-routines/math/
H A Derf.c24 #define PF __erf_data.erfc_poly_F macro
208 double r1 = fma (a, PF[1], PF[0]); in erf()
209 double r2 = fma (a, PF[3], PF[2]); in erf()
210 double r3 = fma (a, PF[5], PF[4]); in erf()
211 double r4 = fma (a, PF[7], PF[6]); in erf()
212 double r5 = fma (a, PF[9], PF[8]); in erf()
213 double r6 = fma (a, PF[11], PF[10]); in erf()
214 double r7 = fma (a, PF[13], PF[12]); in erf()
215 double r8 = fma (a, PF[15], PF[14]); in erf()
216 double r9 = PF[16]; in erf()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DMemory.cpp34 raw_ostream &operator<<(raw_ostream &OS, const Memory::ProtectionFlags &PF) { in operator <<() argument
35 assert((PF & ~(Memory::MF_READ | Memory::MF_WRITE | Memory::MF_EXEC)) == 0 && in operator <<()
38 return OS << (PF & Memory::MF_READ ? 'R' : '-') in operator <<()
39 << (PF & Memory::MF_WRITE ? 'W' : '-') in operator <<()
40 << (PF & Memory::MF_EXEC ? 'X' : '-'); in operator <<()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/
H A DMemoryFlags.h45 std::underlying_type_t<sys::Memory::ProtectionFlags> PF = 0; in toSysMemoryProtectionFlags() local
47 PF |= sys::Memory::MF_READ; in toSysMemoryProtectionFlags()
49 PF |= sys::Memory::MF_WRITE; in toSysMemoryProtectionFlags()
51 PF |= sys::Memory::MF_EXEC; in toSysMemoryProtectionFlags()
52 return static_cast<sys::Memory::ProtectionFlags>(PF); in toSysMemoryProtectionFlags()
57 inline MemProt fromSysMemoryProtectionFlags(sys::Memory::ProtectionFlags PF) { in fromSysMemoryProtectionFlags() argument
59 if (PF & sys::Memory::MF_READ) in fromSysMemoryProtectionFlags()
61 if (PF & sys::Memory::MF_WRITE) in fromSysMemoryProtectionFlags()
63 if (PF & sys::Memory::MF_EXEC) in fromSysMemoryProtectionFlags()
/freebsd/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/contrib/ofed/opensm/opensm/
H A Dosm_node_info_rcv.c164 if (PF(!p_neighbor_node)) { in ni_rcv_set_links()
489 if (PF(p_port == NULL)) { in ni_rcv_process_existing_ca_or_router()
502 if (PF(p_port_check != p_port)) { in ni_rcv_process_existing_ca_or_router()
517 if (PF(!p_alias_guid)) { in ni_rcv_process_existing_ca_or_router()
554 if (PF(p_physp == NULL)) { in ni_rcv_process_existing_ca_or_router()
687 if (PF(port_num > p_ni->num_ports)) { in ni_rcv_process_new()
699 if (PF(p_node == NULL)) { in ni_rcv_process_new()
710 if (PF(p_port == NULL)) { in ni_rcv_process_new()
723 if (PF(p_port_check != p_port)) { in ni_rcv_process_new()
746 if (PF(!p_alias_guid)) { in ni_rcv_process_new()
[all …]
/freebsd/usr.bin/printf/
H A Dprintf.c59 #define PF(f, func) do { \ macro
370 PF(start, p); in printf_doformat()
383 PF(start, p); in printf_doformat()
390 PF(start, p); in printf_doformat()
405 PF(f, val); in printf_doformat()
407 PF(f, uval); in printf_doformat()
419 PF(start, p); in printf_doformat()
421 PF(start, (double)p); in printf_doformat()
/freebsd/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/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/
H A DPatterns.h626 PatFragPattern(const PatFrag &PF, StringRef Name) in PatFragPattern() argument
627 : InstructionPattern(K_PatFrag, Name), PF(PF) {} in PatFragPattern()
631 const PatFrag &getPatFrag() const { return PF; } in getPatFrag()
632 StringRef getInstName() const override { return PF.getName(); } in getInstName()
634 unsigned getNumInstDefs() const override { return PF.num_out_params(); } in getNumInstDefs()
635 unsigned getNumInstOperands() const override { return PF.num_params(); } in getNumInstOperands()
662 const PatFrag &PF;
/freebsd/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/usr.sbin/periodic/etc/security/
H A DMakefile37 CONFGROUPS+= PF
38 PF+= 520.pfdenied
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetSubtargetInfo.cpp19 ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetSubTypeKV> PD, in TargetSubtargetInfo() argument
23 : MCSubtargetInfo(TT, CPU, TuneCPU, FS, PF, PD, WPR, WL, RA, IS, OC, FP) {} in TargetSubtargetInfo()
/freebsd/usr.sbin/newsyslog/newsyslog.conf.d/
H A DMakefile28 CONFGROUPS+= PF
29 PF+= pf.conf
/freebsd/sys/dev/ice/
H A Dirdma_if.m48 * that a new PF has been initialized.
60 * client driver that a PF has been activated.
72 * client driver that a PF has been deactivated.
84 * that a PF has been removed.
/freebsd/sys/dev/cxgbe/firmware/
H A Dt4fw_cfg.txt96 # PF4 is the resource-rich PF that the bus/nexus driver attaches to.
130 # PF5 is the SCSI Controller PF. It gets 32 MSI/40 MSI-X vectors.
136 # PF6 is the FCoE Controller PF. It gets 32 MSI/40 MSI-X vectors.
156 # access to one port (1 << PF). Note that because of limitations in the
H A Dt5fw_cfg_fpga.txt40 # this "Unified PF" will need to have enough resources allocated to it
43 # severely limit the TotalVFs if we continue to use PF0 as the Unified PF
44 # or we'll need to move the Unified PF into the PF4-7 range since those
57 # managed via a single Unified PF and we want to accommodate scaling up
64 # for a total of 96 Ingress Queues and MSI-X Vectors on the Unified PF.
92 # If a Master PF Driver finds itself on a machine with different
93 # parameters, then the Master PF Driver is responsible for initializing
185 # PF" which many OS Drivers will use to manage most or all functions.
191 # Thus, the number of MSI-X Vectors assigned to the Unified PF will be less
252 # Adding all of the above Unified PF resource needs together: (NIC + OFLD +
[all …]
H A Dt6fw_cfg_hashfilter.txt131 # PF4 is the resource-rich PF that the bus/nexus driver attaches to.
157 # PF5 is the SCSI Controller PF. It gets 32 MSI/40 MSI-X vectors.
163 # PF6 is the FCoE Controller PF. It gets 32 MSI/40 MSI-X vectors.
185 # access to one port (1 << PF). Note that because of limitations in the
H A Dt4fw_cfg_uwire.txt40 # this "Unified PF" will need to have enough resources allocated to it
43 # severely limit the TotalVFs if we continue to use PF0 as the Unified PF
44 # or we'll need to move the Unified PF into the PF4-7 range since those
57 # managed via a single Unified PF and we want to accommodate scaling up
64 # for a total of 96 Ingress Queues and MSI-X Vectors on the Unified PF.
85 # If a Master PF Driver finds itself on a machine with different
86 # parameters, then the Master PF Driver is responsible for initializing
168 # PF" which many OS Drivers will use to manage most or all functions.
174 # Thus, the number of MSI-X Vectors assigned to the Unified PF will be less
235 # Adding all of the above Unified PF resource needs together: (NIC + OFLD +
[all …]
H A Dt5fw_cfg.txt140 # PF4 is the resource-rich PF that the bus/nexus driver attaches to.
175 # PF5 is the SCSI Controller PF. It gets 32 MSI/40 MSI-X vectors.
181 # PF6 is the FCoE Controller PF. It gets 32 MSI/40 MSI-X vectors.
201 # access to one port (1 << PF). Note that because of limitations in the
H A Dt5fw_cfg_hashfilter.txt149 # PF4 is the resource-rich PF that the bus/nexus driver attaches to.
178 # PF5 is the SCSI Controller PF. It gets 32 MSI/40 MSI-X vectors.
184 # PF6 is the FCoE Controller PF. It gets 32 MSI/40 MSI-X vectors.
204 # access to one port (1 << PF). Note that because of limitations in the
H A Dt6fw_cfg.txt138 # PF4 is the resource-rich PF that the bus/nexus driver attaches to.
175 # PF5 is the SCSI Controller PF. It gets 32 MSI/40 MSI-X vectors.
181 # PF6 is the FCoE Controller PF. It gets 32 MSI/40 MSI-X vectors.
203 # access to one port (1 << PF). Note that because of limitations in the
/freebsd/sys/contrib/device-tree/src/arm/allwinner/
H A Dsun8i-r16-nintendo-nes-classic.dts24 * UART0 is available on two ports: PB and PF, both are accessible.
25 * PF can also be used for the SD card so PB is preferred.
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCAssembler.cpp819 const MCPseudoProbeAddrFragment &PF = cast<MCPseudoProbeAddrFragment>(F); in writeFragment() local
820 OS << PF.getContents(); in writeFragment()
1026 MCPseudoProbeAddrFragment &PF = cast<MCPseudoProbeAddrFragment>(Frag); in layout() local
1027 Fixups = PF.getFixups(); in layout()
1028 Contents = PF.getContents(); in layout()
1268 bool MCAssembler::relaxPseudoProbeAddr(MCPseudoProbeAddrFragment &PF) { in relaxPseudoProbeAddr() argument
1269 uint64_t OldSize = PF.getContents().size(); in relaxPseudoProbeAddr()
1271 bool Abs = PF.getAddrDelta().evaluateKnownAbsolute(AddrDelta, *this); in relaxPseudoProbeAddr()
1274 SmallVectorImpl<char> &Data = PF.getContents(); in relaxPseudoProbeAddr()
1277 PF.getFixups().clear(); in relaxPseudoProbeAddr()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp536 int (*PF)(int, char **, const char **) = in runFunction() local
541 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(), in runFunction()
550 int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr; in runFunction() local
554 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(), in runFunction()
563 int (*PF)(int) = (int(*)(int))(intptr_t)FPtr; in runFunction() local
564 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue())); in runFunction()
/freebsd/contrib/bsnmp/
H A Doid-list20 200 BEGEMOT-PF snmpd PF module (phillip@freebsd.org)

1234