Lines Matching defs:mb_t
168 bus_space_tag_t mb_t;
170 mb_t = kmem_zalloc(sizeof(*mb_t), KM_SLEEP);
171 mb_t->abs_p_1 = mb_bus_space_peek_1;
172 mb_t->abs_p_2 = mb_bus_space_peek_2;
173 mb_t->abs_p_4 = mb_bus_space_peek_4;
174 mb_t->abs_p_8 = mb_bus_space_peek_8;
175 mb_t->abs_r_1 = mb_bus_space_read_1;
176 mb_t->abs_r_2 = mb_bus_space_read_2;
177 mb_t->abs_r_4 = mb_bus_space_read_4;
178 mb_t->abs_r_8 = mb_bus_space_read_8;
179 mb_t->abs_rs_1 = mb_bus_space_read_1;
180 mb_t->abs_rs_2 = mb_bus_space_read_2;
181 mb_t->abs_rs_4 = mb_bus_space_read_4;
182 mb_t->abs_rs_8 = mb_bus_space_read_8;
183 mb_t->abs_rm_1 = mb_bus_space_read_multi_1;
184 mb_t->abs_rm_2 = mb_bus_space_read_multi_2;
185 mb_t->abs_rm_4 = mb_bus_space_read_multi_4;
186 mb_t->abs_rm_8 = mb_bus_space_read_multi_8;
187 mb_t->abs_rms_1 = mb_bus_space_read_multi_1;
188 mb_t->abs_rms_2 = mb_bus_space_read_multi_2;
189 mb_t->abs_rms_4 = mb_bus_space_read_multi_4;
190 mb_t->abs_rms_8 = mb_bus_space_read_multi_8;
191 mb_t->abs_rr_1 = mb_bus_space_read_region_1;
192 mb_t->abs_rr_2 = mb_bus_space_read_region_2;
193 mb_t->abs_rr_4 = mb_bus_space_read_region_4;
194 mb_t->abs_rr_8 = mb_bus_space_read_region_8;
195 mb_t->abs_rrs_1 = mb_bus_space_read_region_1;
196 mb_t->abs_rrs_2 = mb_bus_space_read_region_2;
197 mb_t->abs_rrs_4 = mb_bus_space_read_region_4;
198 mb_t->abs_rrs_8 = mb_bus_space_read_region_8;
199 mb_t->abs_w_1 = mb_bus_space_write_1;
200 mb_t->abs_w_2 = mb_bus_space_write_2;
201 mb_t->abs_w_4 = mb_bus_space_write_4;
202 mb_t->abs_w_8 = mb_bus_space_write_8;
203 mb_t->abs_ws_1 = mb_bus_space_write_1;
204 mb_t->abs_ws_2 = mb_bus_space_write_2;
205 mb_t->abs_ws_4 = mb_bus_space_write_4;
206 mb_t->abs_ws_8 = mb_bus_space_write_8;
207 mb_t->abs_wm_1 = mb_bus_space_write_multi_1;
208 mb_t->abs_wm_2 = mb_bus_space_write_multi_2;
209 mb_t->abs_wm_4 = mb_bus_space_write_multi_4;
210 mb_t->abs_wm_8 = mb_bus_space_write_multi_8;
211 mb_t->abs_wms_1 = mb_bus_space_write_multi_1;
212 mb_t->abs_wms_2 = mb_bus_space_write_multi_2;
213 mb_t->abs_wms_4 = mb_bus_space_write_multi_4;
214 mb_t->abs_wms_8 = mb_bus_space_write_multi_8;
215 mb_t->abs_wr_1 = mb_bus_space_write_region_1;
216 mb_t->abs_wr_2 = mb_bus_space_write_region_2;
217 mb_t->abs_wr_4 = mb_bus_space_write_region_4;
218 mb_t->abs_wr_8 = mb_bus_space_write_region_8;
219 mb_t->abs_wrs_1 = mb_bus_space_write_region_1;
220 mb_t->abs_wrs_2 = mb_bus_space_write_region_2;
221 mb_t->abs_wrs_4 = mb_bus_space_write_region_4;
222 mb_t->abs_wrs_8 = mb_bus_space_write_region_8;
223 mb_t->abs_sm_1 = mb_bus_space_set_multi_1;
224 mb_t->abs_sm_2 = mb_bus_space_set_multi_2;
225 mb_t->abs_sm_4 = mb_bus_space_set_multi_4;
226 mb_t->abs_sm_8 = mb_bus_space_set_multi_8;
227 mb_t->abs_sr_1 = mb_bus_space_set_region_1;
228 mb_t->abs_sr_2 = mb_bus_space_set_region_2;
229 mb_t->abs_sr_4 = mb_bus_space_set_region_4;
230 mb_t->abs_sr_8 = mb_bus_space_set_region_8;
232 return mb_t;
236 mb_free_bus_space_tag(bus_space_tag_t mb_t)
239 kmem_free(mb_t, sizeof(*mb_t));