Lines Matching defs:bt
66 bptree_phys_t *bt;
78 bt = db->db_data;
79 bt->bt_begin = 0;
80 bt->bt_end = 0;
81 bt->bt_bytes = 0;
82 bt->bt_comp = 0;
83 bt->bt_uncomp = 0;
93 bptree_phys_t *bt;
96 bt = db->db_data;
97 ASSERT3U(bt->bt_begin, ==, bt->bt_end);
98 ASSERT0(bt->bt_bytes);
99 ASSERT0(bt->bt_comp);
100 ASSERT0(bt->bt_uncomp);
110 bptree_phys_t *bt;
114 bt = db->db_data;
115 rv = (bt->bt_begin == bt->bt_end);
125 bptree_phys_t *bt;
136 bt = db->db_data;
140 dmu_write(os, obj, bt->bt_end * sizeof (bte), sizeof (bte), &bte, tx);
143 bt->bt_end++;
144 bt->bt_bytes += bytes;
145 bt->bt_comp += comp;
146 bt->bt_uncomp += uncomp;