Lines Matching refs:t
71 #define BUS_SPACE_ALIGNED_POINTER(p, t) ALIGNED_POINTER(p, t) argument
264 #define __bs_rs(sz, t, h, o) \ argument
265 (*(t)->__bs_opname(r,sz))(h, o)
266 #define __bs_ws(sz, t, h, o, v) \ argument
267 (*(t)->__bs_opname(w,sz))(h, o, v)
268 #define __bs_nonsingle(type, sz, t, h, o, a, c) \ argument
269 (*(t)->__bs_opname(type,sz))(h, o, a, c)
270 #define __bs_set(type, sz, t, h, o, v, c) \ argument
271 (*(t)->__bs_opname(type,sz))(h, o, v, c)
272 #define __bs_copy(sz, t, h1, o1, h2, o2, cnt) \ argument
273 (*(t)->__bs_opname(c,sz))(h1, o1, h2, o2, cnt)
278 #define bus_space_map(t, a, s, c, hp) (*(t)->bs_map)(a, s, c, hp) argument
279 #define bus_space_unmap(t, h, s) (*(t)->bs_unmap)(h, s) argument
280 #define bus_space_subregion(t, h, o, s, hp) (*(t)->bs_subregion)(h, o, s, hp) argument
285 #define bus_space_alloc(t, rs, re, s, a, b, c, ap, hp) \ argument
286 (*(t)->bs_alloc)(rs, re, s, a, b, c, ap, hp)
287 #define bus_space_free(t, h, s) \ argument
288 (*(t)->bs_free)(h, s)
293 #define bus_space_barrier(t, h, o, l, f) (*(t)->bs_barrier)(h, o, l, f) argument
298 #define bus_space_read_1(t, h, o) __bs_rs(1,t,h,o) argument
299 #define bus_space_read_2(t, h, o) __bs_rs(2,t,h,o) argument
300 #define bus_space_read_4(t, h, o) __bs_rs(4,t,h,o) argument
301 #define bus_space_read_8(t, h, o) __bs_rs(8,t,h,o) argument
304 #define bus_space_read_stream_2(t, h, o) __bs_rs(s_2,t,h,o) argument
305 #define bus_space_read_stream_4(t, h, o) __bs_rs(s_4,t,h,o) argument
306 #define bus_space_read_stream_8(t, h, o) __bs_rs(s_8,t,h,o) argument
311 #define bus_space_read_multi_1(t, h, o, a, c) \ argument
312 __bs_nonsingle(rm,1,(t),(h),(o),(a),(c))
313 #define bus_space_read_multi_2(t, h, o, a, c) \ argument
314 __bs_nonsingle(rm,2,(t),(h),(o),(a),(c))
315 #define bus_space_read_multi_4(t, h, o, a, c) \ argument
316 __bs_nonsingle(rm,4,(t),(h),(o),(a),(c))
317 #define bus_space_read_multi_8(t, h, o, a, c) \ argument
318 __bs_nonsingle(rm,8,(t),(h),(o),(a),(c))
321 #define bus_space_read_multi_stream_2(t, h, o, a, c) \ argument
322 __bs_nonsingle(rm,s_2,(t),(h),(o),(a),(c))
323 #define bus_space_read_multi_stream_4(t, h, o, a, c) \ argument
324 __bs_nonsingle(rm,s_4,(t),(h),(o),(a),(c))
325 #define bus_space_read_multi_stream_8(t, h, o, a, c) \ argument
326 __bs_nonsingle(rm,s_8,(t),(h),(o),(a),(c))
331 #define bus_space_read_region_1(t, h, o, a, c) \ argument
332 __bs_nonsingle(rr,1,(t),(h),(o),(a),(c))
333 #define bus_space_read_region_2(t, h, o, a, c) \ argument
334 __bs_nonsingle(rr,2,(t),(h),(o),(a),(c))
335 #define bus_space_read_region_4(t, h, o, a, c) \ argument
336 __bs_nonsingle(rr,4,(t),(h),(o),(a),(c))
337 #define bus_space_read_region_8(t, h, o, a, c) \ argument
338 __bs_nonsingle(rr,8,(t),(h),(o),(a),(c))
341 #define bus_space_read_region_stream_2(t, h, o, a, c) \ argument
342 __bs_nonsingle(rr,s_2,(t),(h),(o),(a),(c))
343 #define bus_space_read_region_stream_4(t, h, o, a, c) \ argument
344 __bs_nonsingle(rr,s_4,(t),(h),(o),(a),(c))
345 #define bus_space_read_region_stream_8(t, h, o, a, c) \ argument
346 __bs_nonsingle(rr,s_8,(t),(h),(o),(a),(c))
351 #define bus_space_write_1(t, h, o, v) __bs_ws(1,(t),(h),(o),(v)) argument
352 #define bus_space_write_2(t, h, o, v) __bs_ws(2,(t),(h),(o),(v)) argument
353 #define bus_space_write_4(t, h, o, v) __bs_ws(4,(t),(h),(o),(v)) argument
354 #define bus_space_write_8(t, h, o, v) __bs_ws(8,(t),(h),(o),(v)) argument
357 #define bus_space_write_stream_2(t, h, o, v) __bs_ws(s_2,(t),(h),(o),(v)) argument
358 #define bus_space_write_stream_4(t, h, o, v) __bs_ws(s_4,(t),(h),(o),(v)) argument
359 #define bus_space_write_stream_8(t, h, o, v) __bs_ws(s_8,(t),(h),(o),(v)) argument
364 #define bus_space_write_multi_1(t, h, o, a, c) \ argument
365 __bs_nonsingle(wm,1,(t),(h),(o),(a),(c))
366 #define bus_space_write_multi_2(t, h, o, a, c) \ argument
367 __bs_nonsingle(wm,2,(t),(h),(o),(a),(c))
368 #define bus_space_write_multi_4(t, h, o, a, c) \ argument
369 __bs_nonsingle(wm,4,(t),(h),(o),(a),(c))
370 #define bus_space_write_multi_8(t, h, o, a, c) \ argument
371 __bs_nonsingle(wm,8,(t),(h),(o),(a),(c))
374 #define bus_space_write_multi_stream_2(t, h, o, a, c) \ argument
375 __bs_nonsingle(wm,s_2,(t),(h),(o),(a),(c))
376 #define bus_space_write_multi_stream_4(t, h, o, a, c) \ argument
377 __bs_nonsingle(wm,s_4,(t),(h),(o),(a),(c))
378 #define bus_space_write_multi_stream_8(t, h, o, a, c) \ argument
379 __bs_nonsingle(wm,s_8,(t),(h),(o),(a),(c))
384 #define bus_space_write_region_1(t, h, o, a, c) \ argument
385 __bs_nonsingle(wr,1,(t),(h),(o),(a),(c))
386 #define bus_space_write_region_2(t, h, o, a, c) \ argument
387 __bs_nonsingle(wr,2,(t),(h),(o),(a),(c))
388 #define bus_space_write_region_4(t, h, o, a, c) \ argument
389 __bs_nonsingle(wr,4,(t),(h),(o),(a),(c))
390 #define bus_space_write_region_8(t, h, o, a, c) \ argument
391 __bs_nonsingle(wr,8,(t),(h),(o),(a),(c))
394 #define bus_space_write_region_stream_2(t, h, o, a, c) \ argument
395 __bs_nonsingle(wr,s_2,(t),(h),(o),(a),(c))
396 #define bus_space_write_region_stream_4(t, h, o, a, c) \ argument
397 __bs_nonsingle(wr,s_4,(t),(h),(o),(a),(c))
398 #define bus_space_write_region_stream_8(t, h, o, a, c) \ argument
399 __bs_nonsingle(wr,s_8,(t),(h),(o),(a),(c))
404 #define bus_space_set_multi_1(t, h, o, v, c) \ argument
405 __bs_set(sm,1,(t),(h),(o),(v),(c))
406 #define bus_space_set_multi_2(t, h, o, v, c) \ argument
407 __bs_set(sm,2,(t),(h),(o),(v),(c))
408 #define bus_space_set_multi_4(t, h, o, v, c) \ argument
409 __bs_set(sm,4,(t),(h),(o),(v),(c))
410 #define bus_space_set_multi_8(t, h, o, v, c) \ argument
411 __bs_set(sm,8,(t),(h),(o),(v),(c))
414 #define bus_space_set_multi_stream_2(t, h, o, v, c) \ argument
415 __bs_set(sm,s_2,(t),(h),(o),(v),(c))
416 #define bus_space_set_multi_stream_4(t, h, o, v, c) \ argument
417 __bs_set(sm,s_4,(t),(h),(o),(v),(c))
418 #define bus_space_set_multi_stream_8(t, h, o, v, c) \ argument
419 __bs_set(sm,s_8,(t),(h),(o),(v),(c))
424 #define bus_space_set_region_1(t, h, o, v, c) \ argument
425 __bs_set(sr,1,(t),(h),(o),(v),(c))
426 #define bus_space_set_region_2(t, h, o, v, c) \ argument
427 __bs_set(sr,2,(t),(h),(o),(v),(c))
428 #define bus_space_set_region_4(t, h, o, v, c) \ argument
429 __bs_set(sr,4,(t),(h),(o),(v),(c))
430 #define bus_space_set_region_8(t, h, o, v, c) \ argument
431 __bs_set(sr,8,(t),(h),(o),(v),(c))
434 #define bus_space_set_region_stream_2(t, h, o, v, c) \ argument
435 __bs_set(sr,s_2,(t),(h),(o),(v),(c))
436 #define bus_space_set_region_stream_4(t, h, o, v, c) \ argument
437 __bs_set(sr,s_4,(t),(h),(o),(v),(c))
438 #define bus_space_set_region_stream_8(t, h, o, v, c) \ argument
439 __bs_set(sr,s_8,(t),(h),(o),(v),(c))
445 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \
446 __bs_copy(1, t, h1, o1, h2, o2, c)
447 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \
448 __bs_copy(2, t, h1, o1, h2, o2, c)
449 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \
450 __bs_copy(4, t, h1, o1, h2, o2, c)
451 #define bus_space_copy_region_8(t, h1, o1, h2, o2, c) \
452 __bs_copy(8, t, h1, o1, h2, o2, c)
455 #define bus_space_copy_region_stream_2(t, h1, o1, h2, o2, c) \
456 __bs_copy(s_2, t, h1, o1, h2, o2, c)
457 #define bus_space_copy_region_stream_4(t, h1, o1, h2, o2, c) \
458 __bs_copy(s_4, t, h1, o1, h2, o2, c)
459 #define bus_space_copy_region_stream_8(t, h1, o1, h2, o2, c) \
460 __bs_copy(s_8, t, h1, o1, h2, o2, c)