Lines Matching refs:t
71 #define BUS_SPACE_ALIGNED_POINTER(p, t) ALIGNED_POINTER(p, t) argument
262 #define __bs_rs(sz, t, h, o) \ argument
263 (*(t)->__bs_opname(r,sz))((t)->bs_cookie, h, o)
264 #define __bs_ws(sz, t, h, o, v) \ argument
265 (*(t)->__bs_opname(w,sz))((t)->bs_cookie, h, o, v)
266 #define __bs_nonsingle(type, sz, t, h, o, a, c) \ argument
267 (*(t)->__bs_opname(type,sz))((t)->bs_cookie, h, o, a, c)
268 #define __bs_set(type, sz, t, h, o, v, c) \ argument
269 (*(t)->__bs_opname(type,sz))((t)->bs_cookie, h, o, v, c)
270 #define __bs_copy(sz, t, h1, o1, h2, o2, cnt) \ argument
271 (*(t)->__bs_opname(c,sz))((t)->bs_cookie, h1, o1, h2, o2, cnt)
274 #define __bs_rs_s(sz, t, h, o) \ argument
275 (*(t)->__bs_opname_s(r,sz))((t)->bs_cookie, h, o)
276 #define __bs_ws_s(sz, t, h, o, v) \ argument
277 (*(t)->__bs_opname_s(w,sz))((t)->bs_cookie, h, o, v)
278 #define __bs_nonsingle_s(type, sz, t, h, o, a, c) \ argument
279 (*(t)->__bs_opname_s(type,sz))((t)->bs_cookie, h, o, a, c)
284 #define bus_space_map(t, a, s, c, hp) \ argument
285 (*(t)->bs_map)((t)->bs_cookie, (a), (s), (c), (hp))
286 #define bus_space_unmap(t, h, s) \ argument
287 (*(t)->bs_unmap)((t)->bs_cookie, (h), (s))
288 #define bus_space_subregion(t, h, o, s, hp) \ argument
289 (*(t)->bs_subregion)((t)->bs_cookie, (h), (o), (s), (hp))
294 #define bus_space_alloc(t, rs, re, s, a, b, c, ap, hp) \ argument
295 (*(t)->bs_alloc)((t)->bs_cookie, (rs), (re), (s), (a), (b), \
297 #define bus_space_free(t, h, s) \ argument
298 (*(t)->bs_free)((t)->bs_cookie, (h), (s))
303 #define bus_space_barrier(t, h, o, l, f) \ argument
304 (*(t)->bs_barrier)((t)->bs_cookie, (h), (o), (l), (f))
309 #define bus_space_read_1(t, h, o) __bs_rs(1,(t),(h),(o)) argument
310 #define bus_space_read_2(t, h, o) __bs_rs(2,(t),(h),(o)) argument
311 #define bus_space_read_4(t, h, o) __bs_rs(4,(t),(h),(o)) argument
312 #define bus_space_read_8(t, h, o) __bs_rs(8,(t),(h),(o)) argument
314 #define bus_space_read_stream_1(t, h, o) __bs_rs_s(1,(t), (h), (o)) argument
315 #define bus_space_read_stream_2(t, h, o) __bs_rs_s(2,(t), (h), (o)) argument
316 #define bus_space_read_stream_4(t, h, o) __bs_rs_s(4,(t), (h), (o)) argument
317 #define bus_space_read_stream_8(t, h, o) __bs_rs_s(8,8,(t),(h),(o)) argument
322 #define bus_space_read_multi_1(t, h, o, a, c) \ argument
323 __bs_nonsingle(rm,1,(t),(h),(o),(a),(c))
324 #define bus_space_read_multi_2(t, h, o, a, c) \ argument
325 __bs_nonsingle(rm,2,(t),(h),(o),(a),(c))
326 #define bus_space_read_multi_4(t, h, o, a, c) \ argument
327 __bs_nonsingle(rm,4,(t),(h),(o),(a),(c))
328 #define bus_space_read_multi_8(t, h, o, a, c) \ argument
329 __bs_nonsingle(rm,8,(t),(h),(o),(a),(c))
331 #define bus_space_read_multi_stream_1(t, h, o, a, c) \ argument
332 __bs_nonsingle_s(rm,1,(t),(h),(o),(a),(c))
333 #define bus_space_read_multi_stream_2(t, h, o, a, c) \ argument
334 __bs_nonsingle_s(rm,2,(t),(h),(o),(a),(c))
335 #define bus_space_read_multi_stream_4(t, h, o, a, c) \ argument
336 __bs_nonsingle_s(rm,4,(t),(h),(o),(a),(c))
337 #define bus_space_read_multi_stream_8(t, h, o, a, c) \ argument
338 __bs_nonsingle_s(rm,8,(t),(h),(o),(a),(c))
343 #define bus_space_read_region_1(t, h, o, a, c) \ argument
344 __bs_nonsingle(rr,1,(t),(h),(o),(a),(c))
345 #define bus_space_read_region_2(t, h, o, a, c) \ argument
346 __bs_nonsingle(rr,2,(t),(h),(o),(a),(c))
347 #define bus_space_read_region_4(t, h, o, a, c) \ argument
348 __bs_nonsingle(rr,4,(t),(h),(o),(a),(c))
349 #define bus_space_read_region_8(t, h, o, a, c) \ argument
350 __bs_nonsingle(rr,8,(t),(h),(o),(a),(c))
352 #define bus_space_read_region_stream_1(t, h, o, a, c) \ argument
353 __bs_nonsingle_s(rr,1,(t),(h),(o),(a),(c))
354 #define bus_space_read_region_stream_2(t, h, o, a, c) \ argument
355 __bs_nonsingle_s(rr,2,(t),(h),(o),(a),(c))
356 #define bus_space_read_region_stream_4(t, h, o, a, c) \ argument
357 __bs_nonsingle_s(rr,4,(t),(h),(o),(a),(c))
358 #define bus_space_read_region_stream_8(t, h, o, a, c) \ argument
359 __bs_nonsingle_s(rr,8,(t),(h),(o),(a),(c))
364 #define bus_space_write_1(t, h, o, v) __bs_ws(1,(t),(h),(o),(v)) argument
365 #define bus_space_write_2(t, h, o, v) __bs_ws(2,(t),(h),(o),(v)) argument
366 #define bus_space_write_4(t, h, o, v) __bs_ws(4,(t),(h),(o),(v)) argument
367 #define bus_space_write_8(t, h, o, v) __bs_ws(8,(t),(h),(o),(v)) argument
369 #define bus_space_write_stream_1(t, h, o, v) __bs_ws_s(1,(t),(h),(o),(v)) argument
370 #define bus_space_write_stream_2(t, h, o, v) __bs_ws_s(2,(t),(h),(o),(v)) argument
371 #define bus_space_write_stream_4(t, h, o, v) __bs_ws_s(4,(t),(h),(o),(v)) argument
372 #define bus_space_write_stream_8(t, h, o, v) __bs_ws_s(8,(t),(h),(o),(v)) argument
377 #define bus_space_write_multi_1(t, h, o, a, c) \ argument
378 __bs_nonsingle(wm,1,(t),(h),(o),(a),(c))
379 #define bus_space_write_multi_2(t, h, o, a, c) \ argument
380 __bs_nonsingle(wm,2,(t),(h),(o),(a),(c))
381 #define bus_space_write_multi_4(t, h, o, a, c) \ argument
382 __bs_nonsingle(wm,4,(t),(h),(o),(a),(c))
383 #define bus_space_write_multi_8(t, h, o, a, c) \ argument
384 __bs_nonsingle(wm,8,(t),(h),(o),(a),(c))
386 #define bus_space_write_multi_stream_1(t, h, o, a, c) \ argument
387 __bs_nonsingle_s(wm,1,(t),(h),(o),(a),(c))
388 #define bus_space_write_multi_stream_2(t, h, o, a, c) \ argument
389 __bs_nonsingle_s(wm,2,(t),(h),(o),(a),(c))
390 #define bus_space_write_multi_stream_4(t, h, o, a, c) \ argument
391 __bs_nonsingle_s(wm,4,(t),(h),(o),(a),(c))
392 #define bus_space_write_multi_stream_8(t, h, o, a, c) \ argument
393 __bs_nonsingle_s(wm,8,(t),(h),(o),(a),(c))
398 #define bus_space_write_region_1(t, h, o, a, c) \ argument
399 __bs_nonsingle(wr,1,(t),(h),(o),(a),(c))
400 #define bus_space_write_region_2(t, h, o, a, c) \ argument
401 __bs_nonsingle(wr,2,(t),(h),(o),(a),(c))
402 #define bus_space_write_region_4(t, h, o, a, c) \ argument
403 __bs_nonsingle(wr,4,(t),(h),(o),(a),(c))
404 #define bus_space_write_region_8(t, h, o, a, c) \ argument
405 __bs_nonsingle(wr,8,(t),(h),(o),(a),(c))
407 #define bus_space_write_region_stream_1(t, h, o, a, c) \ argument
408 __bs_nonsingle_s(wr,1,(t),(h),(o),(a),(c))
409 #define bus_space_write_region_stream_2(t, h, o, a, c) \ argument
410 __bs_nonsingle_s(wr,2,(t),(h),(o),(a),(c))
411 #define bus_space_write_region_stream_4(t, h, o, a, c) \ argument
412 __bs_nonsingle_s(wr,4,(t),(h),(o),(a),(c))
413 #define bus_space_write_region_stream_8(t, h, o, a, c) \ argument
414 __bs_nonsingle_s(wr,8,(t),(h),(o),(a),(c))
419 #define bus_space_set_multi_1(t, h, o, v, c) \ argument
420 __bs_set(sm,1,(t),(h),(o),(v),(c))
421 #define bus_space_set_multi_2(t, h, o, v, c) \ argument
422 __bs_set(sm,2,(t),(h),(o),(v),(c))
423 #define bus_space_set_multi_4(t, h, o, v, c) \ argument
424 __bs_set(sm,4,(t),(h),(o),(v),(c))
425 #define bus_space_set_multi_8(t, h, o, v, c) \ argument
426 __bs_set(sm,8,(t),(h),(o),(v),(c))
431 #define bus_space_set_region_1(t, h, o, v, c) \ argument
432 __bs_set(sr,1,(t),(h),(o),(v),(c))
433 #define bus_space_set_region_2(t, h, o, v, c) \ argument
434 __bs_set(sr,2,(t),(h),(o),(v),(c))
435 #define bus_space_set_region_4(t, h, o, v, c) \ argument
436 __bs_set(sr,4,(t),(h),(o),(v),(c))
437 #define bus_space_set_region_8(t, h, o, v, c) \ argument
438 __bs_set(sr,8,(t),(h),(o),(v),(c))
443 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \ argument
444 __bs_copy(1, t, h1, o1, h2, o2, c)
445 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \ argument
446 __bs_copy(2, t, h1, o1, h2, o2, c)
447 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \ argument
448 __bs_copy(4, t, h1, o1, h2, o2, c)
449 #define bus_space_copy_region_8(t, h1, o1, h2, o2, c) \ argument
450 __bs_copy(8, t, h1, o1, h2, o2, c)