Lines Matching refs:_o
121 #define bus_space_read_1(_t, _h, _o) ((_t)->read_1((_h), (_o))) argument
122 #define bus_space_read_2(_t, _h, _o) ((_t)->read_2((_h), (_o))) argument
123 #define bus_space_read_4(_t, _h, _o) ((_t)->read_4((_h), (_o))) argument
152 #define bus_space_read_multi_1(_t, _h, _o, _a, _c) \ argument
153 ((_t)->read_multi_1((_h), (_o), (_a), (_c)))
154 #define bus_space_read_multi_2(_t, _h, _o, _a, _c) \ argument
155 ((_t)->read_multi_2((_h), (_o), (_a), (_c)))
156 #define bus_space_read_multi_4(_t, _h, _o, _a, _c) \ argument
157 ((_t)->read_multi_4((_h), (_o), (_a), (_c)))
201 #define bus_space_read_region_1(_t, _h, _o, _a, _c) \ argument
202 ((_t)->read_region_1((_h), (_o), (_a), (_c)))
203 #define bus_space_read_region_2(_t, _h, _o, _a, _c) \ argument
204 ((_t)->read_region_2((_h), (_o), (_a), (_c)))
205 #define bus_space_read_region_4(_t, _h, _o, _a, _c) \ argument
206 ((_t)->read_region_4((_h), (_o), (_a), (_c)))
224 #define bus_space_read_raw_region_2(_t, _h, _o, _a, _c) \ argument
225 ((_t)->read_region_2((_h), (_o), (u_int16_t *)(_a), (_c) >> 1))
226 #define bus_space_read_raw_region_4(_t, _h, _o, _a, _c) \ argument
227 ((_t)->read_region_4((_h), (_o), (u_int32_t *)(_a), (_c) >> 2))
247 #define bus_space_write_1(_t, _h, _o, _v) \ argument
248 ((_t)->write_1((_h), (_o), (_v)))
249 #define bus_space_write_2(_t, _h, _o, _v) \ argument
250 ((_t)->write_2((_h), (_o), (_v)))
251 #define bus_space_write_4(_t, _h, _o, _v) \ argument
252 ((_t)->write_4((_h), (_o), (_v)))
281 #define bus_space_write_multi_1(_t, _h, _o, _a, _c) \ argument
282 ((_t)->write_multi_1((_h), (_o), (_a), (_c)))
283 #define bus_space_write_multi_2(_t, _h, _o, _a, _c) \ argument
284 ((_t)->write_multi_2((_h), (_o), (_a), (_c)))
285 #define bus_space_write_multi_4(_t, _h, _o, _a, _c) \ argument
286 ((_t)->write_multi_4((_h), (_o), (_a), (_c)))
304 #define bus_space_write_raw_multi_2(_t, _h, _o, _a, _c) \ argument
305 ((_t)->write_multi_2((_h), (_o), (const u_int16_t *)(_a), (_c) >> 1))
306 #define bus_space_write_raw_multi_4(_t, _h, _o, _a, _c) \ argument
307 ((_t)->write_multi_4((_h), (_o), (const u_int32_t *)(_a), (_c) >> 2))
330 #define bus_space_write_region_1(_t, _h, _o, _a, _c) \ argument
331 ((_t)->write_region_1((_h), (_o), (_a), (_c)))
332 #define bus_space_write_region_2(_t, _h, _o, _a, _c) \ argument
333 ((_t)->write_region_2((_h), (_o), (_a), (_c)))
334 #define bus_space_write_region_4(_t, _h, _o, _a, _c) \ argument
335 ((_t)->write_region_4((_h), (_o), (_a), (_c)))
354 #define bus_space_write_raw_region_2(_t, _h, _o, _a, _c) \ argument
355 ((_t)->write_region_2((_h), (_o), (const u_int16_t *)(_a), (_c) >> 1))
356 #define bus_space_write_raw_region_4(_t, _h, _o, _a, _c) \ argument
357 ((_t)->write_region_4((_h), (_o), (const u_int32_t *)(_a), (_c) >> 2))
380 #define bus_space_set_multi_1(_t, _h, _o, _a, _c) \ argument
381 ((_t)->set_multi_1((_h), (_o), (_a), (_c)))
382 #define bus_space_set_multi_2(_t, _h, _o, _a, _c) \ argument
383 ((_t)->set_multi_2((_h), (_o), (_a), (_c)))
384 #define bus_space_set_multi_4(_t, _h, _o, _a, _c) \ argument
385 ((_t)->set_multi_4((_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)))