Home
last modified time | relevance | path

Searched refs:maxv (Results 1 – 5 of 5) sorted by relevance

/freebsd/sys/kern/
H A Dimgact_elf.c896 __CONCAT(rnd_, __elfN(base))(vm_map_t map, u_long minv, u_long maxv, in __CONCAT()
903 if (minv >= maxv || minv + align >= maxv || maxv > vm_map_max(map)) { in __CONCAT()
909 res = roundup(minv, (u_long)align) + rbase % (maxv - minv); in __CONCAT()
911 if (res >= maxv) in __CONCAT()
916 res, minv, maxv, rbase)); in __CONCAT()
917 KASSERT(res < maxv, in __CONCAT()
919 res, maxv, minv, rbase)); in __CONCAT()
1110 u_long maxalign, maxsalign, mapsz, maxv, maxv1, anon_loc; in __CONCAT() local
1325 maxv = sv->sv_usrstack; in __CONCAT()
1327 maxv -= lim_max(td, RLIMIT_STACK); in __CONCAT()
[all …]
/freebsd/sys/compat/linuxkpi/common/src/
H A Dlinux_pci.c1298 pci_alloc_irq_vectors(struct pci_dev *pdev, int minv, int maxv, in pci_alloc_irq_vectors() argument
1307 entries = kcalloc(maxv, sizeof(*entries), GFP_KERNEL); in pci_alloc_irq_vectors()
1312 for (i = 0; i < maxv; ++i) in pci_alloc_irq_vectors()
1314 error = pci_enable_msix(pdev, entries, maxv); in pci_alloc_irq_vectors()
1323 error = _lkpi_pci_enable_msi_range(pdev, minv, maxv); in pci_alloc_irq_vectors()
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_stats.h422 statistic(double minv, double maxv, double meanv, uint64_t sc, double sd) in statistic() argument
423 : minVal(minv), maxVal(maxv), meanVal(meanv), m2(sd * sd * sc), in statistic()
/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Dpci.h356 int pci_alloc_irq_vectors(struct pci_dev *pdev, int minv, int maxv,
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A Darm_mve.td562 defm vmaxvq: Reduction<Scalar, "maxv", [Vector], 1, (seq (Scalar $ret))>;