Lines Matching defs:__BS_FUNCTION

342 #define __BS_FUNCTION(func,BYTES)	__CONCAT3(func,_,BYTES)
383 static __inline void __BS_FUNCTION(bus_space_read_multi,BYTES) \
388 __BS_FUNCTION(bus_space_read_multi,BYTES)( \
397 *a++ = __BS_FUNCTION(bus_space_read,BYTES)(t, h, o); \
417 static __inline void __BS_FUNCTION(bus_space_read_region,BYTES) \
422 __BS_FUNCTION(bus_space_read_region,BYTES)( \
431 *a++ = __BS_FUNCTION(bus_space_read,BYTES)(t, h, o); \
476 static __inline void __BS_FUNCTION(bus_space_write_multi,BYTES) \
481 __BS_FUNCTION(bus_space_write_multi,BYTES)( \
490 __BS_FUNCTION(bus_space_write,BYTES)(t, h, o, *a++); \
509 static __inline void __BS_FUNCTION(bus_space_write_region,BYTES) \
514 __BS_FUNCTION(bus_space_write_region,BYTES)( \
523 __BS_FUNCTION(bus_space_write,BYTES)(t, h, o, *a++); \
544 static __inline void __BS_FUNCTION(bus_space_set_multi,BYTES) \
549 __BS_FUNCTION(bus_space_set_multi,BYTES)( \
558 __BS_FUNCTION(bus_space_write,BYTES)(t, h, o, v); \
577 static __inline void __BS_FUNCTION(bus_space_set_region,BYTES) \
582 __BS_FUNCTION(bus_space_set_region,BYTES)( \
591 __BS_FUNCTION(bus_space_write,BYTES)(t, h, o, v); \
613 static __inline void __BS_FUNCTION(bus_space_copy_region,BYTES) \
620 __BS_FUNCTION(bus_space_copy_region,BYTES)( \
633 __BS_FUNCTION(bus_space_write,BYTES)(t, h2, o2 + o, \
634 __BS_FUNCTION(bus_space_read,BYTES)(t, h1, o1 + o)); \
638 __BS_FUNCTION(bus_space_write,BYTES)(t, h2, o2 + o, \
639 __BS_FUNCTION(bus_space_read,BYTES)(t, h1, o1 + o)); \
667 #undef __BS_FUNCTION
668 #define __BS_FUNCTION(func,BYTES) __CONCAT3(func,_stream_,BYTES)
743 #undef __BS_FUNCTION