Lines Matching defs:l_hdr
966 zfs_btree_hdr_t *l_hdr = idx.bti_node;
991 bt_transfer_leaf(tree, l_neighbor, l_hdr->bth_count -
998 bcpy(l_neighbor->btl_elems + (l_hdr->bth_first +
999 l_hdr->bth_count - move_count) * size, separator, size);
1002 bt_shrink_leaf(tree, l_neighbor, l_hdr->bth_count - move_count,
1005 ASSERT3U(l_hdr->bth_count, >=, capacity / 2);
1492 zfs_btree_hdr_t *l_hdr = (parent_idx == 0 ? NULL :
1494 if (l_hdr != NULL && l_hdr->bth_count > min_count) {
1496 ASSERT(zfs_btree_is_core(l_hdr));
1497 zfs_btree_core_t *neighbor = (zfs_btree_core_t *)l_hdr;
1515 neighbor->btc_children[l_hdr->bth_count];
1520 (l_hdr->bth_count - 1) * size;
1522 l_hdr->bth_count--;
1523 zfs_btree_poison_node_at(tree, l_hdr, l_hdr->bth_count, 1);
1583 if (l_hdr != NULL) {
1584 keep_hdr = l_hdr;
1742 zfs_btree_hdr_t *l_hdr = (parent_idx == 0 ? NULL :
1744 if (l_hdr != NULL && l_hdr->bth_count > min_count) {
1746 ASSERT(!zfs_btree_is_core(l_hdr));
1747 zfs_btree_leaf_t *neighbor = (zfs_btree_leaf_t *)l_hdr;
1762 (l_hdr->bth_first + l_hdr->bth_count - 1) * size;
1766 bt_shrink_leaf(tree, neighbor, l_hdr->bth_count - 1, 1);
1813 if (l_hdr != NULL) {
1814 k_hdr = l_hdr;