Home
last modified time | relevance | path

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

/src/sys/kern/
H A Dimgact_elf.c901 __CONCAT(rnd_, __elfN(base))(vm_map_t map, u_long minv, u_long maxv, in __CONCAT()
908 if (minv >= maxv || minv + align >= maxv || maxv > vm_map_max(map)) { in __CONCAT()
914 res = roundup(minv, (u_long)align) + rbase % (maxv - minv); in __CONCAT()
916 if (res >= maxv) in __CONCAT()
921 res, minv, maxv, rbase)); in __CONCAT()
922 KASSERT(res < maxv, in __CONCAT()
924 res, maxv, minv, rbase)); in __CONCAT()
1115 u_long maxalign, maxsalign, mapsz, maxv, maxv1, anon_loc; in __CONCAT() local
1330 maxv = sv->sv_usrstack; in __CONCAT()
1332 maxv -= lim_max(td, RLIMIT_STACK); in __CONCAT()
[all …]
/src/usr.sbin/ctld/
H A Dnvmf.cc124 uint64_t maxv) in parse_number() argument
134 (uint64_t)val >= minv && (uint64_t)val <= maxv) in parse_number()
/src/sys/compat/linuxkpi/common/src/
H A Dlinux_pci.c1461 pci_alloc_irq_vectors(struct pci_dev *pdev, int minv, int maxv, in pci_alloc_irq_vectors() argument
1470 entries = kcalloc(maxv, sizeof(*entries), GFP_KERNEL); in pci_alloc_irq_vectors()
1475 for (i = 0; i < maxv; ++i) in pci_alloc_irq_vectors()
1477 error = pci_enable_msix(pdev, entries, maxv); in pci_alloc_irq_vectors()
1486 error = _lkpi_pci_enable_msi_range(pdev, minv, maxv); in pci_alloc_irq_vectors()
/src/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()
/src/crypto/heimdal/lib/hdb/
H A Dhdb-mitdb.c1023 #define CHECK_NUM(num, maxv) \ argument
1024 if ((num) > (maxv)) return EINVAL
/src/sys/compat/linuxkpi/common/include/linux/
H A Dpci.h354 int pci_alloc_irq_vectors(struct pci_dev *pdev, int minv, int maxv,
/src/contrib/llvm-project/clang/include/clang/Basic/
H A Darm_mve.td562 defm vmaxvq: Reduction<Scalar, "maxv", [Vector], 1, (seq (Scalar $ret))>;