Lines Matching defs:inl

2868 	struct mlx4_wqe_inline_seg *inl = wqe + sizeof *mlx;
2943 ((unsigned long) (inl + 1) & (MLX4_INLINE_ALIGN - 1));
2945 inl->byte_count = cpu_to_be32(1 << 31 | header_size);
2946 memcpy(inl + 1, sqp->header_buf, header_size);
2949 inl->byte_count = cpu_to_be32(1 << 31 | spc);
2950 memcpy(inl + 1, sqp->header_buf, spc);
2952 inl = (void *) (inl + 1) + spc;
2953 memcpy(inl + 1, sqp->header_buf + spc, header_size - spc);
2968 inl->byte_count = cpu_to_be32(1 << 31 | (header_size - spc));
3021 struct mlx4_wqe_inline_seg *inl = wqe + sizeof *mlx;
3244 ((unsigned long) (inl + 1) & (MLX4_INLINE_ALIGN - 1));
3246 inl->byte_count = cpu_to_be32(1 << 31 | header_size);
3247 memcpy(inl + 1, sqp->header_buf, header_size);
3250 inl->byte_count = cpu_to_be32(1 << 31 | spc);
3251 memcpy(inl + 1, sqp->header_buf, spc);
3253 inl = (void *) (inl + 1) + spc;
3254 memcpy(inl + 1, sqp->header_buf + spc, header_size - spc);
3269 inl->byte_count = cpu_to_be32(1 << 31 | (header_size - spc));
3399 struct mlx4_wqe_inline_seg *inl = wqe;
3413 ((unsigned long) (inl + 1) & (MLX4_INLINE_ALIGN - 1));
3415 memcpy(inl + 1, &hdr, sizeof (hdr));
3417 inl->byte_count = cpu_to_be32(1 << 31 | sizeof (hdr));
3420 memcpy(inl + 1, &hdr, spc);
3422 inl->byte_count = cpu_to_be32(1 << 31 | spc);
3424 inl = (void *) (inl + 1) + spc;
3425 memcpy(inl + 1, (void *) &hdr + spc, sizeof (hdr) - spc);
3427 inl->byte_count = cpu_to_be32(1 << 31 | (sizeof (hdr) - spc));
3517 struct mlx4_wqe_inline_seg *inl = wqe;
3519 inl->byte_count = cpu_to_be32(1 << 31);