Searched refs:limit (Results 276 - 300 of 490) sorted by relevance

<<11121314151617181920

/freebsd-current/sys/cddl/dev/dtrace/arm/
H A Ddtrace_subr.c125 dtrace_toxic_ranges(void (*func)(uintptr_t base, uintptr_t limit)) argument
/freebsd-current/sys/amd64/vmm/amd/
H A Damdvi_priv.h211 uint64_t limit:40; member in struct:amdvi_ctrl::__anon960
/freebsd-current/sys/cddl/dev/dtrace/aarch64/
H A Ddtrace_subr.c121 dtrace_toxic_ranges(void (*func)(uintptr_t base, uintptr_t limit)) argument
/freebsd-current/sys/fs/smbfs/
H A Dsmbfs_subr.h164 int smbfs_findnext(struct smbfs_fctx *ctx, int limit, struct smb_cred *scred);
/freebsd-current/sys/i386/include/pc/
H A Dbios.h257 u_int limit; member in struct:segment_info
/freebsd-current/sys/ufs/ufs/
H A Dufs_dirhash.c64 #define WRAPINCR(val, limit) (((val) + 1 == (limit)) ? 0 : ((val) + 1))
65 #define WRAPDECR(val, limit) (((val) == 0) ? ((limit) - 1) : ((val) - 1))
/freebsd-current/sys/netinet/
H A Dsctp_auth.h218 int limit);
H A Dsctp_cc_functions.c86 * We take the minimum of the burst limit and the initial
570 /* RTCC Algorithm to limit growth of cwnd, return
586 * to limit cwnd growth due to increase
835 uint32_t limit; local
840 limit = (uint32_t)(((uint64_t)net->mtu *
847 if (incr > limit) {
848 incr = limit;
863 limit = (uint32_t)(((uint64_t)net->mtu *
872 if (incr > limit) {
873 incr = limit;
[all...]
/freebsd-current/sys/cddl/dev/dtrace/amd64/
H A Ddtrace_subr.c137 dtrace_toxic_ranges(void (*func)(uintptr_t base, uintptr_t limit)) argument
/freebsd-current/sys/cddl/dev/dtrace/i386/
H A Ddtrace_subr.c137 dtrace_toxic_ranges(void (*func)(uintptr_t base, uintptr_t limit)) argument
/freebsd-current/contrib/libevent/
H A Dbufferevent-internal.h142 struct ev_token_bucket limit; member in struct:bufferevent_rate_limit
143 /* Pointer to the rate-limit configuration for this bufferevent.
/freebsd-current/sys/dev/ena/
H A Dena_netmap.c484 uint16_t limit)
492 slot_index = nm_next(slot_index, limit);
500 u_int slot_index, uint16_t limit, uint16_t bytes_to_copy, void *destination)
516 slot_index = nm_next(slot_index, limit);
483 ena_netmap_packet_len(struct netmap_slot *slots, u_int slot_index, uint16_t limit) argument
499 ena_netmap_copy_data(struct netmap_adapter *na, struct netmap_slot *slots, u_int slot_index, uint16_t limit, uint16_t bytes_to_copy, void *destination) argument
/freebsd-current/sys/dev/pci/
H A Dpcib_private.h76 pci_addr_t limit; /* topmost address */ member in struct:pcib_window
/freebsd-current/contrib/unbound/services/cache/
H A Dinfra.h198 * Data to store the configuration per netblock for the wait limit
203 /** the limit on the amount */
204 int limit; member in struct:wait_limit_netblock_info
430 /** find the ratelimit in qps for a domain. 0 if no limit for domain. */
493 /** See if the IP address can have another reply in the wait limit */
/freebsd-current/sys/i386/linux/
H A Dlinux_machdep.c80 l_uint limit; member in struct:l_descriptor
392 desc.sd.sd_lolimit = (ld.limit & 0x0000ffff);
393 desc.sd.sd_hilimit = (ld.limit & 0x000f0000) >> 16;
580 info.limit = LINUX_GET_LIMIT(&desc);
/freebsd-current/contrib/xz/src/liblzma/common/
H A Dindex.c478 // that limit is used by the tree containing the Streams.
479 const uint64_t limit = UINT64_MAX - index_base; local
481 || streams > limit / stream_base
482 || groups > limit / group_base
483 || limit - streams_mem < groups_mem)
795 // this limit is quite theoretical, so we do this check always
/freebsd-current/contrib/xz/src/liblzma/lz/
H A Dlz_decoder.c91 coder->dict.limit = coder->dict.pos
/freebsd-current/sbin/pfctl/
H A Dpfctl_parser.h100 u_int32_t limit[PF_LIMIT_MAX]; member in struct:pfctl
/freebsd-current/sys/netpfil/ipfilter/netinet/
H A Dradix_ipf.c1284 test_addr(ipf_rdx_head_t *rnh, int pref, addrfamily_t *addr, int limit) argument
1297 if (limit < 0 || limit > 14)
1298 limit = 14;
1300 for (i = 0; i < limit; i++) {
/freebsd-current/contrib/sendmail/src/
H A Dconf.c2277 int limit; local
2333 limit = (Daemons[dn].d_refuseLA != DPO_NOTSET) ?
2335 if (limit > 0 && CurrentLA >= limit)
2363 limit = (Daemons[dn].d_delayLA != DPO_NOTSET) ?
2365 if (limit > 0 && CurrentLA >= limit)
2374 CurrentLA, limit);
2378 Daemons[dn].d_name, CurrentLA, limit);
2384 limit
[all...]
/freebsd-current/contrib/dialog/
H A Dutil.c731 int limit; local
749 limit = dlg_limit_columns(text, climit, 1);
750 if (limit > 1) {
754 indx[limit] - indx[1]);
765 limit = dlg_limit_columns(text, climit, 0);
767 if (limit > 0) {
769 dlg_print_text(win, text, cols[limit], &attr);
935 int limit = dlg_count_wchars(prompt); local
945 for (n = 0; n < limit; ++n) {
/freebsd-current/sys/dev/usb/
H A Dusb_hub.c1362 DPRINTF("Port limit exceeded\n");
2490 usb_ticks_t limit; local
2495 limit = usb_power_timeout;
2496 if (limit == 0)
2497 limit = hz;
2498 else if (limit > 255)
2499 limit = 255 * hz;
2501 limit = limit * hz;
2526 } else if ((temp >= limit)
[all...]
/freebsd-current/usr.sbin/bhyve/
H A Dpci_emul.c613 pci_emul_alloc_resource(uint64_t *baseptr, uint64_t limit, uint64_t size, argument
622 if (base + size <= limit) {
886 uint64_t *baseptr, limit, addr, mask, lobits, bar; local
895 limit = PCI_EMUL_IOLIMIT;
909 limit = pci_emul_memlim64;
915 limit = PCI_EMUL_MEMLIMIT32;
922 limit = PCI_EMUL_MEMLIMIT32;
929 limit = 0;
939 error = pci_emul_alloc_resource(baseptr, limit, size, &addr);
1510 errx(EX_OSERR, "Invalid lowmem limit");
[all...]
/freebsd-current/sys/vm/
H A Dswap_pager.c122 * The 64-page limit is due to the radix code (kern/subr_blist.c).
389 static int nsw_wcount_async; /* limit async write buffers */
473 static bool swp_pager_swblk_empty(struct swblk *sb, int start, int limit);
609 * Currently we hardwire nsw_wcount_async to 4. This limit is
2007 swp_pager_swblk_empty(struct swblk *sb, int start, int limit) argument
2011 MPASS(0 <= start && start <= limit && limit <= SWAP_META_PAGES);
2012 for (i = start; i < limit; i++) {
2152 int i, limit, start; local
2171 limit
[all...]
/freebsd-current/lib/libpfctl/
H A Dlibpfctl.c752 rule->max_src_conn_rate.limit =
753 nvlist_get_number(nvl, "max_src_conn_rate.limit");
1223 snl_add_msg_attr_u32(nw, PF_RT_MAX_SRC_CONN_RATE_LIMIT, r->max_src_conn_rate.limit);
1591 { .type = PF_RT_MAX_SRC_CONN_RATE_LIMIT, .off = _OUT(r.max_src_conn_rate.limit), .cb = snl_attr_get_uint32 },
2216 _pfctl_get_limit(int dev, const int index, uint *limit) argument
2226 *limit = pl.limit;
2610 pfctl_set_limit(struct pfctl_handle *h, const int index, const uint limit) argument
2626 snl_add_msg_attr_u32(&nw, PF_LI_LIMIT, limit);
2643 unsigned int limit; member in struct:pfctl_nl_limit
2654 pfctl_get_limit(struct pfctl_handle *h, const int index, uint *limit) argument
[all...]

Completed in 200 milliseconds

<<11121314151617181920