Home
last modified time | relevance | path

Searched refs:min_count (Results 1 – 9 of 9) sorted by relevance

/freebsd/sys/contrib/zlib/
H A Dtrees.c717 int min_count = 4; /* min repeat count */ in scan_tree() local
719 if (nextlen == 0) max_count = 138, min_count = 3; in scan_tree()
726 } else if (count < min_count) { in scan_tree()
738 max_count = 138, min_count = 3; in scan_tree()
740 max_count = 6, min_count = 3; in scan_tree()
742 max_count = 7, min_count = 4; in scan_tree()
758 int min_count = 4; /* min repeat count */ in send_tree() local
767 } else if (count < min_count) { in send_tree()
785 max_count = 138, min_count = 3; in send_tree()
787 max_count = 6, min_count = 3; in send_tree()
[all …]
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dbtree.c1432 uint32_t min_count = (BTREE_CORE_ELEMS / 2) - 1; in zfs_btree_remove_from_node() local
1461 hdr->bth_count > min_count) { in zfs_btree_remove_from_node()
1473 ASSERT3U(hdr->bth_count, ==, min_count); in zfs_btree_remove_from_node()
1494 if (l_hdr != NULL && l_hdr->bth_count > min_count) { in zfs_btree_remove_from_node()
1529 if (r_hdr != NULL && r_hdr->bth_count > min_count) { in zfs_btree_remove_from_node()
1705 uint32_t min_count = (tree->bt_leaf_cap / 2) - 1; in zfs_btree_remove_idx() local
1724 ASSERT3U(hdr->bth_count, ==, min_count); in zfs_btree_remove_idx()
1744 if (l_hdr != NULL && l_hdr->bth_count > min_count) { in zfs_btree_remove_idx()
1824 ASSERT3U(k_hdr->bth_count, ==, min_count); in zfs_btree_remove_idx()
1825 ASSERT3U(rm_hdr->bth_count, ==, min_count); in zfs_btree_remove_idx()
[all …]
/freebsd/contrib/ofed/opensm/include/complib/
H A Dcl_pool.h291 IN const size_t min_count,
/freebsd/sys/fs/nfsserver/
H A Dnfs_fha_new.c461 int req_count, min_count = 0; in fha_hash_entry_choose_thread() local
513 if ((min_thread == NULL) || (req_count < min_count)) { in fha_hash_entry_choose_thread()
514 min_count = req_count; in fha_hash_entry_choose_thread()
/freebsd/sys/contrib/dev/athk/
H A Ddfs_pri_detector.c225 u64 ts, u32 min_count) in pseq_handler_create_sequences() argument
279 if (ps.count <= min_count) in pseq_handler_create_sequences()
/freebsd/sys/dev/pci/
H A Dpcib_private.h172 int min_count);
H A Dpci_pci.c629 pcib_setup_secbus(device_t dev, struct pcib_secbus *bus, int min_count) in pcib_setup_secbus() argument
665 min_count, RF_ACTIVE); in pcib_setup_secbus()
673 } else if (rman_get_size(bus->res) < min_count) in pcib_setup_secbus()
680 min_count - 1); in pcib_setup_secbus()
/freebsd/contrib/ofed/opensm/opensm/
H A Dosm_console.c1052 uint32_t min_count = 0xFFFFFFFF; in switchbalance_check() local
1109 if (count[port_num] < min_count) in switchbalance_check()
1110 min_count = count[port_num]; in switchbalance_check()
1115 if (verbose || ((max_count - min_count) > 1)) { in switchbalance_check()
1116 if ((max_count - min_count) > 1) in switchbalance_check()
/freebsd/contrib/googletest/googletest/src/
H A Dgtest-port.cc858 const size_t min_count = (repeat == '+') ? 1 : 0; in MatchRepetitionAndRegexAtHead() local
865 if (i >= min_count && MatchRegexAtHead(regex, str + i)) { in MatchRepetitionAndRegexAtHead()