Home
last modified time | relevance | path

Searched refs:t_size (Results 1 – 6 of 6) sorted by relevance

/linux/drivers/mmc/host/
H A Dtifm_sd.c170 unsigned int off, cnt, t_size = TIFM_MMCSD_FIFO_SIZE * 2; in tifm_sd_transfer_data() local
176 while (t_size) { in tifm_sd_transfer_data()
198 p_cnt = min(p_cnt, t_size); in tifm_sd_transfer_data()
205 t_size -= p_cnt; in tifm_sd_transfer_data()
226 unsigned int t_size = r_data->blksz; in tifm_sd_bounce_block() local
232 while (t_size) { in tifm_sd_bounce_block()
247 p_cnt = min(p_cnt, t_size); in tifm_sd_bounce_block()
251 r_data->blksz - t_size, in tifm_sd_bounce_block()
255 r_data->blksz - t_size, p_cnt); in tifm_sd_bounce_block()
257 t_size -= p_cnt; in tifm_sd_bounce_block()
[all …]
/linux/drivers/memstick/host/
H A Dtifm_ms.c185 unsigned int t_size, p_cnt; in tifm_ms_transfer_data() local
216 t_size = host->req->data_dir == WRITE in tifm_ms_transfer_data()
225 if (!t_size) in tifm_ms_transfer_data()
227 host->block_pos += t_size; in tifm_ms_transfer_data()
228 length -= t_size; in tifm_ms_transfer_data()
229 off += t_size; in tifm_ms_transfer_data()
H A Djmb38x_ms.c303 unsigned int t_size, p_cnt; in jmb38x_ms_transfer_data() local
333 t_size = !(host->cmd_flags & REG_DATA) in jmb38x_ms_transfer_data()
337 t_size = !(host->cmd_flags & REG_DATA) in jmb38x_ms_transfer_data()
346 if (!t_size) in jmb38x_ms_transfer_data()
348 host->block_pos += t_size; in jmb38x_ms_transfer_data()
349 length -= t_size; in jmb38x_ms_transfer_data()
350 off += t_size; in jmb38x_ms_transfer_data()
/linux/sound/soc/fsl/
H A Dfsl_asrc_m2m.c56 u32 i, reg, size, t_size = 0, width; in asrc_read_last_fifo() local
85 t_size += size; in asrc_read_last_fifo()
93 *length += t_size * pair->channels * 4; in asrc_read_last_fifo()
95 *length += t_size * pair->channels * 2; in asrc_read_last_fifo()
97 *length += t_size * pair->channels * 3; in asrc_read_last_fifo()
/linux/drivers/net/ethernet/intel/ice/
H A Dice_ptp_hw.c5724 int t_size; in ice_cgu_get_pin_type() local
5726 t = ice_cgu_get_pin_desc(hw, input, &t_size); in ice_cgu_get_pin_type()
5731 if (pin >= t_size) in ice_cgu_get_pin_type()
5752 int t_size; in ice_cgu_get_pin_freq_supp() local
5755 t = ice_cgu_get_pin_desc(hw, input, &t_size); in ice_cgu_get_pin_freq_supp()
5758 if (pin >= t_size) in ice_cgu_get_pin_freq_supp()
5778 int t_size; in ice_cgu_get_pin_name() local
5780 t = ice_cgu_get_pin_desc(hw, input, &t_size); in ice_cgu_get_pin_name()
5785 if (pin >= t_size) in ice_cgu_get_pin_name()
/linux/net/9p/
H A Dclient.c155 p9_tag_alloc(struct p9_client *c, int8_t type, uint t_size, uint r_size, in p9_tag_alloc() argument
166 t_size ?: p9_msg_buf_size(c, type, fmt, apc)); in p9_tag_alloc()
503 int8_t type, uint t_size, uint r_size, in p9_client_prepare_req() argument
521 req = p9_tag_alloc(c, type, t_size, r_size, fmt, apc); in p9_client_prepare_req()