H A D | xe_map.h | 75 #define xe_map_wr(xe__, map__, offset__, type__, val__) ({ \ argument 78 iosys_map_wr(map__, offset__, type__, val__); \ 84 #define xe_map_wr_array(xe__, map__, index__, type__, val__) \ argument 85 xe_map_wr(xe__, map__, (index__) * sizeof(type__), type__, val__) 90 #define xe_map_wr_array_u32(xe__, map__, index__, val__) \ argument 91 xe_map_wr_array(xe__, map__, index__, u32, val__) 96 #define xe_map_wr_ring_u32(xe__, map__, index__, size__, val__) \ argument 97 xe_map_wr_array_u32(xe__, map__, (index__) % (size__), val__) 105 #define xe_map_wr_field(xe__, map__, struct_offset__, struct_type__, field__, val__) ({ \ argument 108 iosys_map_wr_field(map__, struct_offset__, struct_type__, field__, val__); \ [all...] |