Lines Matching refs:_c

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))
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)))
436 #define bus_space_copy_1(_t, _h1, _o1, _h2, _o2, _c) \ argument
437 ((_t)->copy_1((_h1), (_o1), (_h2), (_o2), (_c)))
438 #define bus_space_copy_2(_t, _h1, _o1, _h2, _o2, _c) \ argument
439 ((_t)->copy_2((_h1), (_o1), (_h2), (_o2), (_c)))
440 #define bus_space_copy_4(_t, _h1, _o1, _h2, _o2, _c) \ argument
441 ((_t)->copy_4((_h1), (_o1), (_h2), (_o2), (_c)))
442 #define bus_space_copy_8(_t, _h1, _o1, _h2, _o2, _c) \ argument
443 ((_t)->copy_8((_h1), (_o1), (_h2), (_o2), (_c)))