Lines Matching refs:src_ctx
4845 * @src_ctx: the context structure to read from
4850 ice_write_byte(u8 *src_ctx, u8 *dest_ctx, const struct ice_ctx_ele *ce_info)
4857 from = src_ctx + ce_info->offset;
4884 * @src_ctx: the context structure to read from
4889 ice_write_word(u8 *src_ctx, u8 *dest_ctx, const struct ice_ctx_ele *ce_info)
4897 from = src_ctx + ce_info->offset;
4927 * @src_ctx: the context structure to read from
4932 ice_write_dword(u8 *src_ctx, u8 *dest_ctx, const struct ice_ctx_ele *ce_info)
4940 from = src_ctx + ce_info->offset;
4978 * @src_ctx: the context structure to read from
4983 ice_write_qword(u8 *src_ctx, u8 *dest_ctx, const struct ice_ctx_ele *ce_info)
4991 from = src_ctx + ce_info->offset;
5030 * @src_ctx: pointer to a generic non-packed context structure
5035 ice_set_ctx(struct ice_hw *hw, u8 *src_ctx, u8 *dest_ctx,
5052 ice_write_byte(src_ctx, dest_ctx, &ce_info[f]);
5055 ice_write_word(src_ctx, dest_ctx, &ce_info[f]);
5058 ice_write_dword(src_ctx, dest_ctx, &ce_info[f]);
5061 ice_write_qword(src_ctx, dest_ctx, &ce_info[f]);
5126 * @src_ctx: the context structure to read from
5131 ice_read_byte(u8 *src_ctx, u8 *dest_ctx, const struct ice_ctx_ele *ce_info)
5145 src = src_ctx + (ce_info->lsb / 8);
5162 * @src_ctx: the context structure to read from
5167 ice_read_word(u8 *src_ctx, u8 *dest_ctx, const struct ice_ctx_ele *ce_info)
5182 src = src_ctx + (ce_info->lsb / 8);
5205 * @src_ctx: the context structure to read from
5210 ice_read_dword(u8 *src_ctx, u8 *dest_ctx, const struct ice_ctx_ele *ce_info)
5233 src = src_ctx + (ce_info->lsb / 8);
5256 * @src_ctx: the context structure to read from
5261 ice_read_qword(u8 *src_ctx, u8 *dest_ctx, const struct ice_ctx_ele *ce_info)
5284 src = src_ctx + (ce_info->lsb / 8);
5307 * @src_ctx: pointer to a generic packed context structure
5312 ice_get_ctx(u8 *src_ctx, u8 *dest_ctx, const struct ice_ctx_ele *ce_info)
5319 ice_read_byte(src_ctx, dest_ctx, &ce_info[f]);
5322 ice_read_word(src_ctx, dest_ctx, &ce_info[f]);
5325 ice_read_dword(src_ctx, dest_ctx, &ce_info[f]);
5328 ice_read_qword(src_ctx, dest_ctx, &ce_info[f]);