| /f-stack/freebsd/contrib/pcg-c/include/ |
| H A D | pcg_variants.h | 912 uint32_t threshold = -bound % bound; in pcg_oneseq_64_xsh_rs_32_boundedrand_r() 933 uint64_t threshold = -bound % bound; in pcg_oneseq_128_xsh_rs_64_boundedrand_r() 988 uint32_t threshold = -bound % bound; in pcg_unique_64_xsh_rs_32_boundedrand_r() 1009 uint64_t threshold = -bound % bound; in pcg_unique_128_xsh_rs_64_boundedrand_r() 1069 uint32_t threshold = -bound % bound; in pcg_setseq_64_xsh_rs_32_boundedrand_r() 1091 uint64_t threshold = -bound % bound; in pcg_setseq_128_xsh_rs_64_boundedrand_r() 1146 uint32_t threshold = -bound % bound; in pcg_mcg_64_xsh_rs_32_boundedrand_r() 1166 uint64_t threshold = -bound % bound; in pcg_mcg_128_xsh_rs_64_boundedrand_r() 1223 uint32_t threshold = -bound % bound; in pcg_oneseq_64_xsh_rr_32_boundedrand_r() 1244 uint64_t threshold = -bound % bound; in pcg_oneseq_128_xsh_rr_64_boundedrand_r() [all …]
|
| /f-stack/freebsd/kern/ |
| H A D | subr_prng.c | 59 pcg64u_boundedrand_r(pcg64u_random_t *state64, uint64_t bound) in pcg64u_boundedrand_r() argument 61 uint64_t threshold = -bound % bound; in pcg64u_boundedrand_r() 65 return (r % bound); in pcg64u_boundedrand_r() 101 prng32_bounded(uint32_t bound) in prng32_bounded() argument 106 r = pcg32u_boundedrand_r(DPCPU_PTR(pcpu_prng32_state), bound); in prng32_bounded() 123 prng64_bounded(uint64_t bound) in prng64_bounded() argument 128 r = pcg64u_boundedrand_r(DPCPU_PTR(pcpu_prng64_state), bound); in prng64_bounded()
|
| H A D | subr_pidctrl.c | 39 pidctrl_init(struct pidctrl *pc, int interval, int setpoint, int bound, in pidctrl_init() argument 46 pc->pc_bound = bound * setpoint * Kid; in pidctrl_init()
|
| /f-stack/dpdk/lib/librte_eal/common/ |
| H A D | eal_common_memzone.c | 59 unsigned int bound) in memzone_reserve_aligned_thread_unsafe() argument 121 if (bound != 0 && (requested_len > bound || !rte_is_power_of_2(bound))) { in memzone_reserve_aligned_thread_unsafe() 141 if (len == 0 && bound == 0) { in memzone_reserve_aligned_thread_unsafe() 148 requested_len = bound; in memzone_reserve_aligned_thread_unsafe() 151 flags, align, bound, contig); in memzone_reserve_aligned_thread_unsafe() 192 unsigned int flags, unsigned int align, unsigned int bound) in rte_memzone_reserve_thread_safe() argument 203 name, len, socket_id, flags, align, bound); in rte_memzone_reserve_thread_safe() 206 bound, mz); in rte_memzone_reserve_thread_safe() 220 unsigned flags, unsigned align, unsigned bound) in rte_memzone_reserve_bounded() argument 223 align, bound); in rte_memzone_reserve_bounded()
|
| H A D | malloc_heap.c | 390 size_t bound, bool contig) in try_expand_heap_primary() argument 410 bound, contig, ms, n_segs); in try_expand_heap_primary() 461 size_t bound, bool contig) in try_expand_heap_secondary() argument 470 req.alloc_req.bound = bound; in try_expand_heap_secondary() 500 flags, align, bound, contig); in try_expand_heap() 609 align, bound, contig)) in alloc_more_mem_on_socket() 628 align, bound, contig)) in alloc_more_mem_on_socket() 638 size_t bound, bool contig) in malloc_heap_alloc_on_heap_id() argument 684 bound, contig)) { in malloc_heap_alloc_on_heap_id() 722 bound, contig); in malloc_heap_alloc() [all …]
|
| H A D | malloc_mp.h | 39 size_t bound; member 79 int socket, unsigned int flags, size_t align, size_t bound,
|
| H A D | malloc_elem.c | 225 size_t bound, bool contig) in elem_start_pt() argument 234 const size_t bmask = ~(bound - 1); in elem_start_pt() 243 end_pt = RTE_ALIGN_FLOOR(end_pt, bound); in elem_start_pt() 286 size_t bound, bool contig) in malloc_elem_can_hold() argument 288 return elem_start_pt(elem, size, align, bound, contig) != NULL; in malloc_elem_can_hold() 434 size_t bound, bool contig) in malloc_elem_alloc() argument 436 struct malloc_elem *new_elem = elem_start_pt(elem, size, align, bound, in malloc_elem_alloc()
|
| H A D | malloc_elem.h | 132 unsigned int align, size_t bound, bool contig); 140 unsigned int align, size_t bound, bool contig);
|
| H A D | malloc_heap.h | 53 size_t align, size_t bound, bool contig);
|
| /f-stack/freebsd/sys/ |
| H A D | prng.h | 15 __uint32_t prng32_bounded(__uint32_t bound); 17 __uint64_t prng64_bounded(__uint64_t bound);
|
| H A D | pidctrl.h | 94 int bound, int Kpd, int Kid, int Kdd);
|
| /f-stack/dpdk/drivers/event/dlb/pf/base/ |
| H A D | dlb_hw_types.h | 80 u32 bound; member 86 return (list->bound - list->base) - list->offset; in dlb_freelist_count() 221 int bound[6] = {32, 16, 8, 4, 2, 1}; in dlb_sn_group_alloc_slot() local 224 for (i = 0; i < bound[group->mode]; i++) { in dlb_sn_group_alloc_slot()
|
| /f-stack/dpdk/drivers/event/dlb2/pf/base/ |
| H A D | dlb2_hw_types.h | 112 u32 bound; member 118 return list->bound - list->base - list->offset; in dlb2_freelist_count() 240 u32 bound[6] = {16, 8, 4, 2, 1}; in dlb2_sn_group_alloc_slot() local 243 for (i = 0; i < bound[group->mode]; i++) { in dlb2_sn_group_alloc_slot()
|
| /f-stack/dpdk/doc/guides/sample_app_ug/ |
| H A D | kernel_nic_interface.rst | 110 the KNI kernel thread(s) are bound to for each physical port. 149 will be created for each lcore ID specified, bound to the physical port 155 thread will be bound to the first ``lcore_kthread`` lcore ID specified. 166 interface ``vEth1_0`` with the kernel thread bound to lcore 9. 177 ``vEth1_0``/``vEth1_1`` bound to physical port 1. 179 The kernel thread for each interface will be bound as follows: 181 * ``vEth0_0`` - bound to lcore 8. 182 * ``vEth0_1`` - bound to lcore 10. 183 * ``vEth1_0`` - bound to lcore 9. 184 * ``vEth1_1`` - bound to lcore 11 [all …]
|
| /f-stack/dpdk/doc/guides/linux_gsg/ |
| H A D | linux_eal_parameters.rst | 28 Create ``/dev/uioX`` files for devices bound to igb_uio kernel driver 41 Use specified interrupt mode for devices bound to VFIO kernel driver. 45 Use specified VF token for devices bound to VFIO kernel driver.
|
| H A D | linux_drivers.rst | 13 and network ports should be bound to that driver. 30 After the PF is bound to ``vfio-pci`` module, 32 and these VFs will be bound to ``vfio-pci`` module automatically. 34 When the PF is bound to ``vfio-pci``, 163 Therefore, devices for use by DPDK should be bound to the ``vfio-pci`` kernel module 169 If the devices used for DPDK are bound to the ``uio_pci_generic`` kernel module, 217 all ports that are to be used by a DPDK application must be bound to 240 but physical devices may require either all ports bound to VFIO, 241 or some of them bound to VFIO while others not being bound to anything at all.
|
| /f-stack/dpdk/doc/guides/platform/ |
| H A D | octeontx2.rst | 89 1. PFx and PFx-VF0 bound to Linux netdev driver. 90 2. PFx-VF1 ethdev driver bound to the first DPDK application. 91 3. PFy ethdev driver, PFy-VF0 ethdev driver, PFz eventdev driver, PFm-VF0 cryptodev driver bound to… 102 where even VF bound to the first domain and odd VF bound to the second domain. 341 Filtered DMAC0 (NIX-bound) packets: 0 342 Filtered DMAC0 (NIX-bound) octets: 0 346 Filtered DMAC1 (NCSI-bound) packets: 0 347 Filtered DMAC1 (NCSI-bound) octets: 0 348 NCSI-bound packets dropped: 0 349 NCSI-bound octets dropped: 0
|
| /f-stack/freebsd/contrib/openzfs/tests/zfs-tests/include/ |
| H A D | math.shlib | 129 # can accept as the upper bound. 131 # $1 lower bound 132 # $2 upper bound
|
| /f-stack/dpdk/doc/guides/tools/ |
| H A D | devbind.rst | 64 …can be used with VFIO on its own, but physical devices will require either all ports bound to VFIO, 65 or some of them bound to VFIO while others not being bound to anything at all.
|
| /f-stack/dpdk/lib/librte_eal/include/ |
| H A D | rte_memzone.h | 267 unsigned flags, unsigned align, unsigned bound);
|
| H A D | rte_eal_trace.h | 237 unsigned int flags, unsigned int align, unsigned int bound, 244 rte_trace_point_emit_u32(bound);
|
| /f-stack/dpdk/doc/guides/bbdevs/ |
| H A D | acc100.rst | 90 FEC device first needs to be bound to one of these linux drivers through DPDK. 99 The igb_uio driver may be bound to the PF PCI device using one of two methods: 102 1. PCI functions (physical or virtual, depending on the use case) can be bound to 123 In a similar way the ACC100 5G/4G FEC PF may be bound with vfio-pci as any PCIe device. 149 Afterwards, all VFs must be bound to appropriate UIO drivers as required, same
|
| H A D | fpga_5gnr_fec.rst | 76 to be bound to one of these linux drivers through DPDK. 85 The igb_uio driver may be bound to the PF PCI device using one of two methods: 88 1. PCI functions (physical or virtual, depending on the use case) can be bound to 108 In the same way the FPGA 5GNR FEC PF can be bound with vfio, but vfio driver does not 135 Afterwards, all VFs must be bound to appropriate UIO drivers as required, same
|
| /f-stack/freebsd/contrib/device-tree/Bindings/mfd/ |
| H A D | da9062.txt | 54 The DA9062 regulators are bound using their names listed below: 65 The DA9061 regulators are bound using their names listed below:
|
| /f-stack/dpdk/doc/guides/rawdevs/ |
| H A D | octeontx2_ep.rst | 33 bound to vfio-pci driver. 38 The OCTEON TX2 SDP End Point VF devices will need to be bound to a
|