Searched refs:type_t (Results 1 – 1 of 1) sorted by relevance
/freebsd/sys/dev/mlx5/ |
H A D | device.h | 132 #define MLX5_GET_BE(type_t, typ, p, fld) ({ \ argument 133 type_t tmp; \ 136 tmp = (__force type_t)MLX5_GET(typ, p, fld); \ 139 tmp = (__force type_t)cpu_to_be16(MLX5_GET(typ, p, fld)); \ 142 tmp = (__force type_t)cpu_to_be32(MLX5_GET(typ, p, fld)); \ 145 tmp = (__force type_t)MLX5_GET64_BE(typ, p, fld); \
|