Lines Matching refs:_o
141 #define bus_space_read_1(_t, _h, _o) ((_t)->read_1((_h), (_o))) argument
142 #define bus_space_read_2(_t, _h, _o) ((_t)->read_2((_h), (_o))) argument
143 #define bus_space_read_4(_t, _h, _o) ((_t)->read_4((_h), (_o))) argument
144 #define bus_space_read_8(_t, _h, _o) ((_t)->read_8((_h), (_o))) argument
146 #define bus_space_read_raw_2(_t, _h, _o) ((_t)->read_2((_h), (_o))) argument
147 #define bus_space_read_raw_4(_t, _h, _o) ((_t)->read_4((_h), (_o))) argument
148 #define bus_space_read_raw_8(_t, _h, _o) ((_t)->read_8((_h), (_o))) argument
168 #define bus_space_read_multi_1(_t, _h, _o, _a, _c) \ argument
169 ((_t)->read_multi_1((_h), (_o), (_a), (_c)))
170 #define bus_space_read_multi_2(_t, _h, _o, _a, _c) \ argument
171 ((_t)->read_multi_2((_h), (_o), (_a), (_c)))
172 #define bus_space_read_multi_4(_t, _h, _o, _a, _c) \ argument
173 ((_t)->read_multi_4((_h), (_o), (_a), (_c)))
174 #define bus_space_read_multi_8(_t, _h, _o, _a, _c) \ argument
175 ((_t)->read_multi_8((_h), (_o), (_a), (_c)))
188 #define bus_space_read_raw_multi_2(_t, _h, _o, _a, _c) \ argument
189 ((_t)->read_multi_2((_h), (_o), (u_int16_t *)(_a), (_c) >> 1))
190 #define bus_space_read_raw_multi_4(_t, _h, _o, _a, _c) \ argument
191 ((_t)->read_multi_4((_h), (_o), (u_int32_t *)(_a), (_c) >> 2))
192 #define bus_space_read_raw_multi_8(_t, _h, _o, _a, _c) \ argument
193 ((_t)->read_multi_8((_h), (_o), (u_int64_t *)(_a), (_c) >> 3))
214 #define bus_space_read_region_1(_t, _h, _o, _a, _c) \ argument
215 ((_t)->read_region_1((_h), (_o), (_a), (_c)))
216 #define bus_space_read_region_2(_t, _h, _o, _a, _c) \ argument
217 ((_t)->read_region_2((_h), (_o), (_a), (_c)))
218 #define bus_space_read_region_4(_t, _h, _o, _a, _c) \ argument
219 ((_t)->read_region_4((_h), (_o), (_a), (_c)))
220 #define bus_space_read_region_8(_t, _h, _o, _a, _c) \ argument
221 ((_t)->read_region_8((_h), (_o), (_a), (_c)))
235 #define bus_space_read_raw_region_2(_t, _h, _o, _a, _c) \ argument
236 ((_t)->read_region_2((_h), (_o), (u_int16_t *)(_a), (_c) >> 1))
237 #define bus_space_read_raw_region_4(_t, _h, _o, _a, _c) \ argument
238 ((_t)->read_region_4((_h), (_o), (u_int32_t *)(_a), (_c) >> 2))
239 #define bus_space_read_raw_region_8(_t, _h, _o, _a, _c) \ argument
240 ((_t)->read_region_8((_h), (_o), (u_int64_t *)(_a), (_c) >> 3))
256 #define bus_space_write_1(_t, _h, _o, _v) \ argument
257 ((_t)->write_1((_h), (_o), (_v)))
258 #define bus_space_write_2(_t, _h, _o, _v) \ argument
259 ((_t)->write_2((_h), (_o), (_v)))
260 #define bus_space_write_4(_t, _h, _o, _v) \ argument
261 ((_t)->write_4((_h), (_o), (_v)))
262 #define bus_space_write_8(_t, _h, _o, _v) \ argument
263 ((_t)->write_8((_h), (_o), (_v)))
265 #define bus_space_write_raw_2(_t, _h, _o, _v) \ argument
266 ((_t)->write_2((_h), (_o), (_v)))
267 #define bus_space_write_raw_4(_t, _h, _o, _v) \ argument
268 ((_t)->write_4((_h), (_o), (_v)))
269 #define bus_space_write_raw_8(_t, _h, _o, _v) \ argument
270 ((_t)->write_8((_h), (_o), (_v)))
290 #define bus_space_write_multi_1(_t, _h, _o, _a, _c) \ argument
291 ((_t)->write_multi_1((_h), (_o), (_a), (_c)))
292 #define bus_space_write_multi_2(_t, _h, _o, _a, _c) \ argument
293 ((_t)->write_multi_2((_h), (_o), (_a), (_c)))
294 #define bus_space_write_multi_4(_t, _h, _o, _a, _c) \ argument
295 ((_t)->write_multi_4((_h), (_o), (_a), (_c)))
296 #define bus_space_write_multi_8(_t, _h, _o, _a, _c) \ argument
297 ((_t)->write_multi_8((_h), (_o), (_a), (_c)))
310 #define bus_space_write_raw_multi_2(_t, _h, _o, _a, _c) \ argument
311 ((_t)->write_multi_2((_h), (_o), (const u_int16_t *)(_a), (_c) >> 1))
312 #define bus_space_write_raw_multi_4(_t, _h, _o, _a, _c) \ argument
313 ((_t)->write_multi_4((_h), (_o), (const u_int32_t *)(_a), (_c) >> 2))
314 #define bus_space_write_raw_multi_8(_t, _h, _o, _a, _c) \ argument
315 ((_t)->write_multi_8((_h), (_o), (const u_int64_t *)(_a), (_c) >> 3))
335 #define bus_space_write_region_1(_t, _h, _o, _a, _c) \ argument
336 ((_t)->write_region_1((_h), (_o), (_a), (_c)))
337 #define bus_space_write_region_2(_t, _h, _o, _a, _c) \ argument
338 ((_t)->write_region_2((_h), (_o), (_a), (_c)))
339 #define bus_space_write_region_4(_t, _h, _o, _a, _c) \ argument
340 ((_t)->write_region_4((_h), (_o), (_a), (_c)))
341 #define bus_space_write_region_8(_t, _h, _o, _a, _c) \ argument
342 ((_t)->write_region_8((_h), (_o), (_a), (_c)))
356 #define bus_space_write_raw_region_2(_t, _h, _o, _a, _c) \ argument
357 ((_t)->write_region_2((_h), (_o), (const u_int16_t *)(_a), (_c) >> 1))
358 #define bus_space_write_raw_region_4(_t, _h, _o, _a, _c) \ argument
359 ((_t)->write_region_4((_h), (_o), (const u_int32_t *)(_a), (_c) >> 2))
360 #define bus_space_write_raw_region_8(_t, _h, _o, _a, _c) \ argument
361 ((_t)->write_region_8((_h), (_o), (const u_int64_t *)(_a), (_c) >> 3))
381 #define bus_space_set_multi_1(_t, _h, _o, _a, _c) \ argument
382 ((_t)->set_multi_1((_h), (_o), (_a), (_c)))
383 #define bus_space_set_multi_2(_t, _h, _o, _a, _c) \ argument
384 ((_t)->set_multi_2((_h), (_o), (_a), (_c)))
385 #define bus_space_set_multi_4(_t, _h, _o, _a, _c) \ argument
386 ((_t)->set_multi_4((_h), (_o), (_a), (_c)))
387 #define bus_space_set_multi_8(_t, _h, _o, _a, _c) \ argument
388 ((_t)->set_multi_8((_h), (_o), (_a), (_c)))
408 #define bus_space_set_region_1(_t, _h, _o, _a, _c) \ argument
409 ((_t)->set_region_1((_h), (_o), (_a), (_c)))
410 #define bus_space_set_region_2(_t, _h, _o, _a, _c) \ argument
411 ((_t)->set_region_2((_h), (_o), (_a), (_c)))
412 #define bus_space_set_region_4(_t, _h, _o, _a, _c) \ argument
413 ((_t)->set_region_4((_h), (_o), (_a), (_c)))
414 #define bus_space_set_region_8(_t, _h, _o, _a, _c) \ argument
415 ((_t)->set_region_8((_h), (_o), (_a), (_c)))
465 #define bus_space_mmap(_t, _a, _o, _p, _f) \ argument
466 ((_t)->mmap((_a), (_o), (_p), (_f)))