Searched refs:desc (Results 376 - 400 of 3216) sorted by relevance

<<11121314151617181920>>

/linux-master/arch/s390/crypto/
H A Dcrc32-vx.c95 static int crc32_vx_init(struct shash_desc *desc) argument
97 struct crc_ctx *mctx = crypto_shash_ctx(desc->tfm);
98 struct crc_desc_ctx *ctx = shash_desc_ctx(desc);
126 static int crc32le_vx_final(struct shash_desc *desc, u8 *out) argument
128 struct crc_desc_ctx *ctx = shash_desc_ctx(desc);
134 static int crc32be_vx_final(struct shash_desc *desc, u8 *out) argument
136 struct crc_desc_ctx *ctx = shash_desc_ctx(desc);
142 static int crc32c_vx_final(struct shash_desc *desc, u8 *out) argument
144 struct crc_desc_ctx *ctx = shash_desc_ctx(desc);
181 static int alg ## _vx_finup(struct shash_desc *desc, cons
[all...]
/linux-master/drivers/net/ethernet/hisilicon/hns3/hns3pf/
H A Dhclge_trace.h83 struct hclge_desc *desc,
86 TP_ARGS(hw, desc, index, num),
98 __entry->opcode = le16_to_cpu(desc->opcode);
99 __entry->flag = le16_to_cpu(desc->flag);
100 __entry->retval = le16_to_cpu(desc->retval);
101 __entry->rsv = le16_to_cpu(desc->rsv);
106 __entry->data[i] = le32_to_cpu(desc->data[i]);),
118 struct hclge_desc *desc,
121 TP_ARGS(hw, desc, index, num)
126 struct hclge_desc *desc,
[all...]
/linux-master/drivers/net/ethernet/intel/ice/
H A Dice_common.c295 struct ice_aq_desc desc; local
297 ice_fill_dflt_direct_cmd_desc(&desc, ice_aqc_opc_clear_pf_cfg);
299 return ice_aq_send_cmd(hw, &desc, NULL, 0, NULL);
323 struct ice_aq_desc desc; local
328 cmd = &desc.params.mac_read;
333 ice_fill_dflt_direct_cmd_desc(&desc, ice_aqc_opc_manage_mac_read);
335 status = ice_aq_send_cmd(hw, &desc, buf, buf_size, cd);
377 struct ice_aq_desc desc; local
382 cmd = &desc.params.get_phy;
392 ice_fill_dflt_direct_cmd_desc(&desc, ice_aqc_opc_get_phy_cap
471 struct ice_aq_desc desc; local
501 struct ice_aq_desc desc; local
734 struct ice_aq_desc desc; local
878 struct ice_aq_desc desc; local
1465 ice_sbq_send_cmd(struct ice_hw *hw, struct ice_sbq_cmd_desc *desc, void *buf, u16 buf_size, struct ice_sq_cd *cd) argument
1479 struct ice_sbq_cmd_desc desc = {0}; local
1552 ice_sq_send_cmd_retry(struct ice_hw *hw, struct ice_ctl_q_info *cq, struct ice_aq_desc *desc, void *buf, u16 buf_size, struct ice_sq_cd *cd) argument
1600 ice_aq_send_cmd(struct ice_hw *hw, struct ice_aq_desc *desc, void *buf, u16 buf_size, struct ice_sq_cd *cd) argument
1660 struct ice_aq_desc desc; local
1697 struct ice_aq_desc desc; local
1732 struct ice_aq_desc desc; local
1776 struct ice_aq_desc desc; local
1844 struct ice_aq_desc desc; local
1953 struct ice_aq_desc desc; local
2764 struct ice_aq_desc desc; local
2948 struct ice_aq_desc desc; local
2967 struct ice_aq_desc desc; local
3003 struct ice_aq_desc desc; local
3238 struct ice_aq_desc desc; local
3704 struct ice_aq_desc desc; local
3734 struct ice_aq_desc desc; local
3758 struct ice_aq_desc desc; local
3783 struct ice_aq_desc desc; local
3821 struct ice_aq_desc desc; local
3895 struct ice_aq_desc desc; local
3933 struct ice_aq_desc desc; local
4002 struct ice_aq_desc desc; local
4075 struct ice_aq_desc desc; local
4156 struct ice_aq_desc desc; local
4205 struct ice_aq_desc desc; local
4303 struct ice_aq_desc desc; local
4344 struct ice_aq_desc desc; local
4993 struct ice_aq_desc desc; local
5016 struct ice_aq_desc desc; local
5048 struct ice_aq_desc desc; local
5091 struct ice_aq_desc desc; local
5121 struct ice_aq_desc desc; local
5162 struct ice_aq_desc desc; local
5200 struct ice_aq_desc desc; local
5227 struct ice_aq_desc desc; local
5253 struct ice_aq_desc desc; local
5283 struct ice_aq_desc desc; local
5314 struct ice_aq_desc desc; local
5347 struct ice_aq_desc desc; local
5379 struct ice_aq_desc desc; local
5588 struct ice_aq_desc desc = { 0 }; local
5643 struct ice_aq_desc desc = { 0 }; local
5681 struct ice_aq_desc desc; local
5708 struct ice_aq_desc desc; local
5863 struct ice_aq_desc desc; local
5905 struct ice_aq_desc desc; local
5927 struct ice_aq_desc desc; local
[all...]
/linux-master/drivers/media/platform/amphion/
H A Dvpu_helpers.c342 struct vpu_rpc_buffer_desc desc; local
344 if (vpu_iface_get_stream_buffer_desc(inst, &desc))
347 if (desc.rptr > desc.wptr)
348 return desc.rptr - desc.wptr;
349 else if (desc.rptr < desc.wptr)
350 return (desc.end - desc
357 struct vpu_rpc_buffer_desc desc; local
[all...]
/linux-master/arch/mips/crypto/
H A Dcrc32-mips.c166 static int chksum_init(struct shash_desc *desc) argument
168 struct chksum_ctx *mctx = crypto_shash_ctx(desc->tfm);
169 struct chksum_desc_ctx *ctx = shash_desc_ctx(desc);
192 static int chksum_update(struct shash_desc *desc, const u8 *data, argument
195 struct chksum_desc_ctx *ctx = shash_desc_ctx(desc);
201 static int chksumc_update(struct shash_desc *desc, const u8 *data, argument
204 struct chksum_desc_ctx *ctx = shash_desc_ctx(desc);
210 static int chksum_final(struct shash_desc *desc, u8 *out) argument
212 struct chksum_desc_ctx *ctx = shash_desc_ctx(desc);
218 static int chksumc_final(struct shash_desc *desc, u argument
238 chksum_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) argument
246 chksumc_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) argument
254 chksum_digest(struct shash_desc *desc, const u8 *data, unsigned int length, u8 *out) argument
262 chksumc_digest(struct shash_desc *desc, const u8 *data, unsigned int length, u8 *out) argument
[all...]
/linux-master/drivers/pinctrl/
H A Dpinconf.c29 const struct pinconf_ops *ops = pctldev->desc->confops;
61 const struct pinconf_ops *ops = pctldev->desc->confops;
87 ops = pctldev->desc->confops;
153 const struct pinconf_ops *ops = pctldev->desc->confops;
207 ops = pctldev->desc->confops;
223 confops = pctldev->desc->confops;
265 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
266 struct pin_desc *desc; local
270 desc = pin_desc_get(setting->pctldev,
272 seq_printf(s, "pin %s (%d)", desc
316 struct pin_desc *desc; local
[all...]
/linux-master/drivers/regulator/
H A Dtps51632-regulator.c74 struct regulator_desc desc; member in struct:tps51632_chip
214 const struct regulator_desc *desc)
224 desc);
243 const struct regulator_desc *desc)
262 tps->desc.name = client->name;
263 tps->desc.id = 0;
264 tps->desc.ramp_delay = TPS51632_DEFAULT_RAMP_DELAY;
265 tps->desc.min_uV = TPS51632_MIN_VOLTAGE;
266 tps->desc.uV_step = TPS51632_VOLTAGE_STEP_10mV;
267 tps->desc
213 of_get_tps51632_platform_data(struct device *dev, const struct regulator_desc *desc) argument
242 of_get_tps51632_platform_data(struct device *dev, const struct regulator_desc *desc) argument
[all...]
H A Drt5120-regulator.c216 static void rt5120_fillin_regulator_desc(struct regulator_desc *desc, int rid) argument
224 desc->name = name[rid];
225 desc->supply_name = sname[rid];
226 desc->owner = THIS_MODULE;
227 desc->type = REGULATOR_VOLTAGE;
228 desc->id = rid;
229 desc->enable_reg = RT5120_REG_ENABLE;
230 desc->enable_mask = RT5120_RIDEN_MASK(rid);
231 desc->active_discharge_reg = RT5120_REG_DISCHG;
232 desc
266 struct regulator_desc *desc = priv->rdesc + rid; local
[all...]
/linux-master/drivers/clk/qcom/
H A Dcommon.c103 qcom_cc_map(struct platform_device *pdev, const struct qcom_cc_desc *desc) argument
112 return devm_regmap_init_mmio(dev, base, desc->config);
256 const struct qcom_cc_desc *desc, struct regmap *regmap)
263 size_t num_clks = desc->num_clks;
264 struct clk_regmap **rclks = desc->clks;
265 size_t num_clk_hws = desc->num_clk_hws;
266 struct clk_hw **clk_hws = desc->clk_hws;
276 reset->rcdev.nr_resets = desc->num_resets;
278 reset->reset_map = desc->resets;
284 if (desc
255 qcom_cc_really_probe(struct platform_device *pdev, const struct qcom_cc_desc *desc, struct regmap *regmap) argument
328 qcom_cc_probe(struct platform_device *pdev, const struct qcom_cc_desc *desc) argument
340 qcom_cc_probe_by_index(struct platform_device *pdev, int index, const struct qcom_cc_desc *desc) argument
[all...]
/linux-master/drivers/net/ethernet/intel/i40e/
H A Di40e_adminq.c83 struct i40e_aq_desc *desc; local
109 desc = I40E_ADMINQ_DESC(hw->aq.arq, i);
111 desc->flags = cpu_to_le16(I40E_AQ_FLAG_BUF);
113 desc->flags |= cpu_to_le16(I40E_AQ_FLAG_LB);
114 desc->opcode = 0;
118 desc->datalen = cpu_to_le16((u16)bi->size);
119 desc->retval = 0;
120 desc->cookie_high = 0;
121 desc->cookie_low = 0;
122 desc
695 struct i40e_aq_desc *desc; local
752 i40e_asq_send_command_atomic_exec(struct i40e_hw *hw, struct i40e_aq_desc *desc, void *buff, u16 buff_size, struct i40e_asq_cmd_details *cmd_details, bool is_atomic_context) argument
956 i40e_asq_send_command_atomic(struct i40e_hw *hw, struct i40e_aq_desc *desc, void *buff, u16 buff_size, struct i40e_asq_cmd_details *cmd_details, bool is_atomic_context) argument
975 i40e_asq_send_command(struct i40e_hw *hw, struct i40e_aq_desc *desc, void *buff, u16 buff_size, struct i40e_asq_cmd_details *cmd_details) argument
998 i40e_asq_send_command_atomic_v2(struct i40e_hw *hw, struct i40e_aq_desc *desc, void *buff, u16 buff_size, struct i40e_asq_cmd_details *cmd_details, bool is_atomic_context, enum i40e_admin_queue_err *aq_status) argument
1020 i40e_asq_send_command_v2(struct i40e_hw *hw, struct i40e_aq_desc *desc, void *buff, u16 buff_size, struct i40e_asq_cmd_details *cmd_details, enum i40e_admin_queue_err *aq_status) argument
1036 i40e_fill_default_direct_cmd_desc(struct i40e_aq_desc *desc, u16 opcode) argument
1060 struct i40e_aq_desc *desc; local
[all...]
/linux-master/drivers/pmdomain/amlogic/
H A Dmeson-ee-pwrc.c335 struct meson_ee_pwrc_domain_desc desc; member in struct:meson_ee_pwrc_domain
354 pwrc_domain->desc.top_pd->sleep_reg, &reg);
356 return (reg & pwrc_domain->desc.top_pd->sleep_mask);
365 if (pwrc_domain->desc.top_pd)
367 pwrc_domain->desc.top_pd->sleep_reg,
368 pwrc_domain->desc.top_pd->sleep_mask,
369 pwrc_domain->desc.top_pd->sleep_mask);
372 for (i = 0 ; i < pwrc_domain->desc.mem_pd_count ; ++i)
374 pwrc_domain->desc.mem_pd[i].reg,
375 pwrc_domain->desc
[all...]
/linux-master/drivers/dma/idxd/
H A Dirq.c24 struct idxd_desc *desc; member in struct:idxd_resubmit
76 struct dsa_hw_desc desc = {}; local
81 desc.flags = IDXD_OP_FLAG_RCI;
82 desc.opcode = DSA_OPCODE_DRAIN;
83 desc.priv = 1;
86 desc.pasid = ie->pasid;
87 desc.int_handle = ie->int_handle;
96 iosubmit_cmds512(portal, &desc, 1);
98 rc = idxd_enqcmds(wq, portal, &desc);
101 dev_warn(dev, "Failed to submit drain desc o
517 struct idxd_desc *desc = irw->desc; local
543 idxd_queue_int_handle_resubmit(struct idxd_desc *desc) argument
561 struct idxd_desc *desc, *t; local
594 struct idxd_desc *desc, *n; local
[all...]
/linux-master/drivers/dma/
H A Dmmp_pdma.c80 struct mmp_pdma_desc_hw desc; member in struct:mmp_pdma_desc_sw
91 struct dma_async_tx_descriptor desc; member in struct:mmp_pdma_chan
105 /* list for desc */
297 struct mmp_pdma_desc_sw *desc; local
324 desc = list_first_entry(&chan->chain_pending,
332 set_desc(chan->phy, desc->async_tx.phys);
338 /* desc->tx_list ==> pending list */
342 struct mmp_pdma_desc_sw *desc = tx_to_mmp_pdma_desc(tx); local
349 list_for_each_entry(child, &desc->tx_list, node) {
353 /* softly link to pending list - desc
364 struct mmp_pdma_desc_sw *desc; local
416 struct mmp_pdma_desc_sw *desc, *_desc; local
871 struct mmp_pdma_desc_sw *desc, *_desc; local
[all...]
/linux-master/drivers/media/usb/dvb-usb/
H A Ddibusb-mc-common.c139 u8 desc; local
140 dibusb_read_eeprom_byte(adap->dev, 7, &desc);
141 if (desc == 2) {
144 dibusb_read_eeprom_byte(adap->dev, a, &desc);
146 } while (a > 7 && (desc == 0xff || desc == 0x00));
147 if (desc & 0x80)
148 if1 -= (0xff - desc);
150 if1 += desc;
/linux-master/drivers/net/wireless/ath/carl9170/
H A Dfwdesc.h136 char desc[CARL9170FW_MOTD_STRING_LEN]; member in struct:carl9170fw_motd_desc
235 #define carl9170fw_for_each_hdr(desc, fw_desc) \
236 for (desc = fw_desc; \
237 memcmp(desc->magic, LAST_MAGIC, CARL9170FW_MAGIC_SIZE) && \
238 le16_to_cpu(desc->length) >= CARL9170FW_DESC_HEAD_SIZE && \
239 le16_to_cpu(desc->length) < CARL9170FW_DESC_MAX_LENGTH; \
240 desc = (void *)((unsigned long)desc + le16_to_cpu(desc->length)))
/linux-master/drivers/net/ethernet/stmicro/stmmac/
H A Dchain_mode.c25 struct dma_desc *desc; local
27 desc = tx_q->dma_tx + entry;
38 desc->des2 = cpu_to_le32(des2);
44 stmmac_prepare_tx_desc(priv, desc, 1, bmax, csum, STMMAC_CHAIN_MODE,
50 desc = tx_q->dma_tx + entry;
56 desc->des2 = cpu_to_le32(des2);
61 stmmac_prepare_tx_desc(priv, desc, 0, bmax, csum,
69 desc->des2 = cpu_to_le32(des2);
75 stmmac_prepare_tx_desc(priv, desc, 0, len, csum,
/linux-master/drivers/sh/intc/
H A Dinternals.h45 struct intc_desc_int *desc; member in struct:intc_map_entry
146 void intc_set_dist_handle(unsigned int irq, struct intc_desc *desc,
152 intc_set_dist_handle(unsigned int irq, struct intc_desc *desc, argument
170 unsigned int intc_get_mask_handle(struct intc_desc *desc,
173 unsigned int intc_get_prio_handle(struct intc_desc *desc,
176 unsigned int intc_get_sense_handle(struct intc_desc *desc,
179 void intc_set_ack_handle(unsigned int irq, struct intc_desc *desc,
182 void intc_enable_disable_enum(struct intc_desc *desc, struct intc_desc_int *d,
189 void intc_subgroup_init(struct intc_desc *desc, struct intc_desc_int *d);
/linux-master/drivers/net/ethernet/hisilicon/hns3/hns3_common/
H A Dhclge_comm_tqp_stats.c65 struct hclge_desc desc; local
71 hclge_comm_cmd_setup_basic_desc(&desc, HCLGE_OPC_QUERY_RX_STATS,
74 desc.data[0] = cpu_to_le32(tqp->index);
75 ret = hclge_comm_cmd_send(hw, &desc, 1);
83 le32_to_cpu(desc.data[1]);
85 hclge_comm_cmd_setup_basic_desc(&desc, HCLGE_OPC_QUERY_TX_STATS,
88 desc.data[0] = cpu_to_le32(tqp->index);
89 ret = hclge_comm_cmd_send(hw, &desc, 1);
97 le32_to_cpu(desc.data[1]);
/linux-master/fs/nfs/
H A Dfscache.h151 struct nfs_pageio_descriptor *desc)
153 hdr->netfs = desc->pg_netfs;
155 static inline void nfs_netfs_set_pageio_descriptor(struct nfs_pageio_descriptor *desc, argument
158 desc->pg_netfs = hdr->netfs;
160 static inline void nfs_netfs_reset_pageio_descriptor(struct nfs_pageio_descriptor *desc) argument
162 desc->pg_netfs = NULL;
199 struct nfs_pageio_descriptor *desc) {}
200 static inline void nfs_netfs_set_pageio_descriptor(struct nfs_pageio_descriptor *desc, argument
202 static inline void nfs_netfs_reset_pageio_descriptor(struct nfs_pageio_descriptor *desc) {} argument
150 nfs_netfs_set_pgio_header(struct nfs_pgio_header *hdr, struct nfs_pageio_descriptor *desc) argument
198 nfs_netfs_set_pgio_header(struct nfs_pgio_header *hdr, struct nfs_pageio_descriptor *desc) argument
/linux-master/sound/soc/sof/
H A Dsof-client-probes-ipc3.c33 DECLARE_FLEX_ARRAY(struct sof_probe_point_desc, desc);
40 struct sof_probe_point_desc desc[]; member in struct:sof_ipc_probe_point_add_params
130 bytes = sizeof(reply->desc[0]);
147 * @desc: Returned list of active probes
155 struct sof_probe_point_desc **desc,
159 (void **)desc, num_desc);
165 * @desc: List of probe points to connect
166 * @num_desc: Number of elements in @desc
176 struct sof_probe_point_desc *desc,
180 size_t size = struct_size(msg, desc, num_des
154 ipc3_probes_points_info(struct sof_client_dev *cdev, struct sof_probe_point_desc **desc, size_t *num_desc) argument
175 ipc3_probes_points_add(struct sof_client_dev *cdev, struct sof_probe_point_desc *desc, size_t num_desc) argument
[all...]
/linux-master/drivers/platform/olpc/
H A Dolpc-ec.c80 struct ec_cmd_desc *desc = NULL; local
86 desc = list_first_entry(&ec->cmd_q, struct ec_cmd_desc, node);
87 list_del(&desc->node);
92 if (!desc)
97 desc->err = ec_driver->ec_cmd(desc->cmd, desc->inbuf, desc->inlen,
98 desc->outbuf, desc
112 queue_ec_descriptor(struct ec_cmd_desc *desc, struct olpc_ec_priv *ec) argument
129 struct ec_cmd_desc desc; local
[all...]
/linux-master/drivers/infiniband/ulp/iser/
H A Diser_memory.c49 struct iser_fr_desc *desc; local
53 desc = list_first_entry(&fr_pool->list,
55 list_del(&desc->list);
58 return desc;
62 struct iser_fr_desc *desc)
68 list_add(&desc->list, &fr_pool->list);
152 struct iser_fr_desc *desc; local
155 desc = reg->desc;
156 if (!desc)
61 iser_reg_desc_put_fr(struct ib_conn *ib_conn, struct iser_fr_desc *desc) argument
360 struct iser_fr_desc *desc; local
[all...]
/linux-master/arch/arm/mach-omap2/
H A Dcpuidle34xx.c273 .desc = "MPU ON + CORE ON",
281 .desc = "MPU ON + CORE ON",
289 .desc = "MPU RET + CORE ON",
297 .desc = "MPU OFF + CORE ON",
305 .desc = "MPU RET + CORE RET",
313 .desc = "MPU OFF + CORE RET",
321 .desc = "MPU OFF + CORE OFF",
343 .desc = "MPU ON + CORE ON",
351 .desc = "MPU ON + CORE ON",
359 .desc
[all...]
/linux-master/drivers/firmware/qcom/
H A Dqcom_scm-legacy.c124 * @desc: descriptor structure containing arguments and return values
134 int scm_legacy_call(struct device *dev, const struct qcom_scm_desc *desc, argument
137 u8 arglen = desc->arginfo & 0xf;
158 cmd->id = cpu_to_le32(SCM_LEGACY_FNID(desc->svc, desc->cmd));
162 arg_buf[i] = cpu_to_le32(desc->args[i]);
218 * @desc: SCM call descriptor containing arguments
225 const struct qcom_scm_desc *desc,
230 size_t arglen = desc->arginfo & 0xf;
234 arm_smccc_smc(SCM_LEGACY_ATOMIC_ID(desc
224 scm_legacy_call_atomic(struct device *unused, const struct qcom_scm_desc *desc, struct qcom_scm_res *res) argument
[all...]
/linux-master/drivers/dma/xilinx/
H A Dzynqmp_dma.c265 * @desc: Transaction descriptor pointer
268 struct zynqmp_dma_desc_sw *desc)
272 addr = desc->src_p;
274 addr = desc->dst_p;
281 * @desc: Hw descriptor pointer
284 void *desc)
286 struct zynqmp_dma_desc_ll *hw = (struct zynqmp_dma_desc_ll *)desc;
372 struct zynqmp_dma_desc_sw *desc, *new; local
381 desc = list_last_entry(&chan->pending_list,
383 if (!list_empty(&desc
267 zynqmp_dma_update_desc_to_ctrlr(struct zynqmp_dma_chan *chan, struct zynqmp_dma_desc_sw *desc) argument
283 zynqmp_dma_desc_config_eod(struct zynqmp_dma_chan *chan, void *desc) argument
407 struct zynqmp_dma_desc_sw *desc; local
450 struct zynqmp_dma_desc_sw *desc, *next; local
465 struct zynqmp_dma_desc_sw *desc; local
580 struct zynqmp_dma_desc_sw *desc; local
604 struct zynqmp_dma_desc_sw *desc, *next; local
632 struct zynqmp_dma_desc_sw *desc; local
826 void *desc = NULL, *prev = NULL; local
[all...]

Completed in 245 milliseconds

<<11121314151617181920>>