Searched refs:limit (Results 226 - 250 of 490) sorted by relevance

1234567891011>>

/freebsd-current/usr.sbin/pmcannotate/
H A Dpmcannotate.c670 float limit; local
683 limit = 0.5;
693 limit = (float)atof(optarg);
789 fqueue_compact(limit);
/freebsd-current/stand/libsa/
H A Dpkgfs.c568 int64_t l, limit, last_digit_limit; local
572 limit = INT64_MAX / base;
586 if (l>limit || (l == limit && digit > last_digit_limit)) {
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_write_set_format_ustar.c637 int64_t limit; local
639 limit = ((int64_t)1 << (s*3));
653 if (v < limit)
656 limit <<= 3;
H A Darchive_read_support_format_mtree.c387 * Place an arbitrary limit on the line length.
2039 int64_t l, limit; local
2054 limit = INT64_MIN / base;
2061 if (l < limit || (l == limit && digit >= last_digit_limit))
2068 limit = INT64_MAX / base;
2074 if (l > limit || (l == limit && digit > last_digit_limit))
2090 ssize_t limit)
2112 if (total_size + bytes_read + 1 > limit) {
2089 readline(struct archive_read *a, struct mtree *mtree, char **start, ssize_t limit) argument
[all...]
/freebsd-current/contrib/xz/src/liblzma/lz/
H A Dlz_encoder_mf.c52 // The limit for the match length is either the
56 uint32_t limit = mf_avail(mf) + 1; local
57 if (limit > mf->match_len_max)
58 limit = mf->match_len_max;
68 len_best = lzma_memcmplen(p1, p2, len_best, limit);
/freebsd-current/contrib/ncurses/progs/
H A Dtic.c1212 same_color(NCURSES_CONST char *oldcap, NCURSES_CONST char *newcap, int limit) argument
1215 if (limit > 16)
1216 limit = 16;
1217 if (limit >= 8) {
1220 for (n = same = 0; n < limit; ++n) {
1227 result = (same == limit);
2100 int limit = 1; local
2106 if ((limit = max_colors) > 256)
2107 limit = 256;
2109 limit
2464 int limit = 5; local
[all...]
H A Ddump_entry.c1659 int limit = (VALID_STRING(value) ? (int) strlen(value) : 0); local
1664 if (limit == 0) {
1667 } else if (limit > MAX_ALIAS) {
1668 _nc_warning("\"%s\" field too long (%d), limit to %d",
1669 cap, limit, MAX_ALIAS);
1670 limit = MAX_ALIAS;
1673 "%s=%.*s", cap, limit, value);
/freebsd-current/sys/fs/smbfs/
H A Dsmbfs_smb.c1038 smbfs_findnextLM1(struct smbfs_fctx *ctx, int limit) argument
1051 ctx->f_left = ctx->f_limit = limit;
1237 smbfs_findnextLM2(struct smbfs_fctx *ctx, int limit) argument
1251 ctx->f_left = ctx->f_limit = limit;
1391 smbfs_findnext(struct smbfs_fctx *ctx, int limit, struct smb_cred *scred) argument
1395 if (limit == 0)
1396 limit = 1000000;
1397 else if (limit > 1)
1398 limit *= 4; /* imperical */
1402 error = smbfs_findnextLM1(ctx, limit);
[all...]
/freebsd-current/contrib/libxo/encoder/cbor/
H A Denc_cbor.c133 cbor_encode_uint (xo_buffer_t *xbp, uint64_t minor, unsigned limit) argument
150 } else if (minor > limit) {
/freebsd-current/contrib/ntp/ntpd/
H A Drefclock_chu.c744 double limit; /* limiter signal */ local
788 limit = signal;
789 if (limit > LIMIT)
790 limit = LIMIT;
791 else if (limit < -LIMIT)
792 limit = -LIMIT;
793 disc = up->disc[up->discptr] * -limit;
794 up->disc[up->discptr] = limit;
/freebsd-current/lib/libsecureboot/
H A Dbrf.c53 next_char(const char **ps, const char *limit) argument
58 if (*ps == limit) {
/freebsd-current/sys/fs/nfs/
H A Dnfsrvstate.h225 time_t limit; member in struct:nfsstate::__anon4914::__anon4915
244 #define ls_delegtimelimit ls_un.deleg.limit
/freebsd-current/sys/ofed/include/rdma/
H A Drdmavt_qp.h358 u32 s_lsn; /* limit sequence number (credit) */
387 /* send signal when number of RWQEs < limit */
388 u32 limit; member in struct:rvt_srq
411 u16 limit; member in struct:rvt_qpn_table
/freebsd-current/sys/kern/
H A Dsubr_smr.c584 smr_create(const char *name, int limit, int flags) argument
603 c->c_limit = limit;
/freebsd-current/lib/libvmmapi/
H A Dvmmapi.h148 uint64_t base, uint32_t limit, uint32_t access);
150 uint64_t *base, uint32_t *limit, uint32_t *access);
/freebsd-current/sys/arm64/arm64/
H A Dsupport.S41 .macro check_user_access user_arg, limit, bad_addr_func
42 ldr x7, =(\limit)
/freebsd-current/contrib/dialog/
H A Dformbox.c182 int limit = 0; local
184 if (limit < item[n].name_y)
185 limit = item[n].name_y;
186 if (limit < item[n].text_y)
187 limit = item[n].text_y;
189 return limit;
/freebsd-current/sys/contrib/ck/src/
H A Dck_rhs.c340 unsigned long size, n_entries, limit; local
362 limit = ck_internal_max(n_entries >> (CK_RHS_PROBE_L1_SHIFT + 2), CK_RHS_PROBE_L1_DEFAULT);
363 if (limit > UINT_MAX)
364 limit = UINT_MAX;
366 map->probe_limit = (unsigned int)limit;
531 * We have hit the probe limit, map needs to be even larger.
628 * sequence with original probe limit.
743 * sequence with original probe limit.
869 ck_rhs_remove_wanted(struct ck_rhs *hs, long offset, long limit) argument
879 if (offset == limit)
[all...]
H A Dck_hs.c202 unsigned long size, n_entries, prefix, limit; local
224 limit = ck_internal_max(n_entries >> (CK_HS_PROBE_L1_SHIFT + 2), CK_HS_PROBE_L1_DEFAULT);
225 if (limit > UINT_MAX)
226 limit = UINT_MAX;
228 map->probe_limit = (unsigned int)limit;
391 * We have hit the probe limit, map needs to be even larger.
474 * sequence with original probe limit.
/freebsd-current/sys/contrib/openzfs/lib/libefi/
H A Drdwr_efi.c1121 diskaddr_t data_size, limit, difference; local
1164 * 1. the data partition ends at the limit we set, and
1165 * 2. the reserved partition starts at the limit we set.
1170 * The limit is the last usable LBA, determined by the last LBA
1178 limit = P2ALIGN_TYPED(efi_label->efi_last_lba - nblocks -
1180 if (data_start + data_size != limit || resv_start != limit)
1231 if (limit < resv_start) {
1235 "limit (%lli) < resv_start (%lli)\n",
1236 limit, resv_star
[all...]
/freebsd-current/sys/netpfil/ipfw/
H A Dip_fw_table.c81 uint32_t limit; /* Max number of records */ member in struct:table_config
199 if (tc->limit == 0 || tc->count < tc->limit)
212 * already hit the limit.
307 /* Try to exit early on limit hit */
649 /* check limit before adding */
665 /* Update number of records to ease limit checking */
1419 if ((tc_a->limit != 0 && tc_b->count > tc_a->limit) ||
1420 (tc_b->limit !
[all...]
H A Ddn_sched_qfq.c626 uint64_t limit, roundedF; local
630 limit = qfq_round_down(q->V, slot_shift) + (1ULL << slot_shift);
632 if (!qfq_gt(cl->F, q->V) || qfq_gt(roundedF, limit)) {
639 if (qfq_gt(limit, next->F))
642 cl->S = limit;
/freebsd-current/sbin/ipfw/
H A Dtables.c104 { "limit", IPFW_VTYPE_LIMIT },
337 { "limit", TOK_LIMIT },
422 NEED1("limit value required");
423 xi.limit = strtol(*av, NULL, 10);
505 if (xi.limit != xie.limit || xi.type != xie.type ||
542 * ipfw table NAME modify [ limit number ]
558 NEED1("limit value required");
559 xi.limit = strtol(*av, NULL, 10);
810 if (i->limit >
[all...]
/freebsd-current/sys/dev/usb/net/
H A Dif_urndis.c574 uint64_t limit; local
592 limit = le32toh(msg->rm_infobuflen);
593 limit += le32toh(msg->rm_infobufoffset);
594 limit += RNDIS_HEADER_OFFSET;
596 if (limit > (uint64_t)le32toh(msg->rm_len)) {
599 "go out of buffer limit %u\n",
/freebsd-current/sys/net80211/
H A Dieee80211_superg.c776 uint32_t txtime, limit; local
781 limit = IEEE80211_TXOP_TO_US(
824 * Check the txop limit to insure the aggregate fits.
826 if (limit != 0 &&
827 (txtime = ff_approx_txtime(ni, m, mstaged)) > limit) {
834 "%s: txtime %u exceeds txop limit %u\n",
835 __func__, txtime, limit);

Completed in 371 milliseconds

1234567891011>>