Lines Matching refs:dest_ctx

3840  * @dest_ctx: the context to be written to
3844 ice_write_byte(u8 *src_ctx, u8 *dest_ctx, const struct ice_ctx_ele *ce_info)
3865 dest = dest_ctx + (ce_info->lsb / 8);
3879 * @dest_ctx: the context to be written to
3883 ice_write_word(u8 *src_ctx, u8 *dest_ctx, const struct ice_ctx_ele *ce_info)
3908 dest = dest_ctx + (ce_info->lsb / 8);
3922 * @dest_ctx: the context to be written to
3926 ice_write_dword(u8 *src_ctx, u8 *dest_ctx, const struct ice_ctx_ele *ce_info)
3959 dest = dest_ctx + (ce_info->lsb / 8);
3973 * @dest_ctx: the context to be written to
3977 ice_write_qword(u8 *src_ctx, u8 *dest_ctx, const struct ice_ctx_ele *ce_info)
4010 dest = dest_ctx + (ce_info->lsb / 8);
4025 * @dest_ctx: pointer to memory for the packed structure
4029 ice_set_ctx(struct ice_hw *hw, u8 *src_ctx, u8 *dest_ctx,
4046 ice_write_byte(src_ctx, dest_ctx, &ce_info[f]);
4049 ice_write_word(src_ctx, dest_ctx, &ce_info[f]);
4052 ice_write_dword(src_ctx, dest_ctx, &ce_info[f]);
4055 ice_write_qword(src_ctx, dest_ctx, &ce_info[f]);
4068 * @dest_ctx: the context to be written to
4072 ice_read_byte(u8 *src_ctx, u8 *dest_ctx, struct ice_ctx_ele *ce_info)
4095 target = dest_ctx + ce_info->offset;
4104 * @dest_ctx: the context to be written to
4108 ice_read_word(u8 *src_ctx, u8 *dest_ctx, struct ice_ctx_ele *ce_info)
4138 target = dest_ctx + ce_info->offset;
4147 * @dest_ctx: the context to be written to
4151 ice_read_dword(u8 *src_ctx, u8 *dest_ctx, struct ice_ctx_ele *ce_info)
4189 target = dest_ctx + ce_info->offset;
4198 * @dest_ctx: the context to be written to
4202 ice_read_qword(u8 *src_ctx, u8 *dest_ctx, struct ice_ctx_ele *ce_info)
4240 target = dest_ctx + ce_info->offset;
4249 * @dest_ctx: pointer to a generic non-packed context structure
4253 ice_get_ctx(u8 *src_ctx, u8 *dest_ctx, struct ice_ctx_ele *ce_info)
4260 ice_read_byte(src_ctx, dest_ctx, &ce_info[f]);
4263 ice_read_word(src_ctx, dest_ctx, &ce_info[f]);
4266 ice_read_dword(src_ctx, dest_ctx, &ce_info[f]);
4269 ice_read_qword(src_ctx, dest_ctx, &ce_info[f]);