Home
last modified time | relevance | path

Searched refs:src_pos (Results 1 – 12 of 12) sorted by relevance

/Linux-v4.19/drivers/gpu/drm/exynos/
Dexynos_drm_scaler.c192 struct drm_exynos_ipp_task_rect *src_pos) in scaler_set_src_luma_pos() argument
196 val = SCALER_SRC_Y_POS_SET_YH_POS(src_pos->x << 2); in scaler_set_src_luma_pos()
197 val |= SCALER_SRC_Y_POS_SET_YV_POS(src_pos->y << 2); in scaler_set_src_luma_pos()
203 struct drm_exynos_ipp_task_rect *src_pos) in scaler_set_src_wh() argument
207 val = SCALER_SRC_WH_SET_WIDTH(src_pos->w); in scaler_set_src_wh()
208 val |= SCALER_SRC_WH_SET_HEIGHT(src_pos->h); in scaler_set_src_wh()
271 struct drm_exynos_ipp_task_rect *src_pos, in scaler_set_hv_ratio() argument
277 h_ratio = (src_pos->h << 16) / dst_pos->w; in scaler_set_hv_ratio()
278 v_ratio = (src_pos->w << 16) / dst_pos->h; in scaler_set_hv_ratio()
280 h_ratio = (src_pos->w << 16) / dst_pos->w; in scaler_set_hv_ratio()
[all …]
/Linux-v4.19/sound/mips/
Dsgio2audio.c362 unsigned long src_base, src_pos, dst_mask; in snd_sgio2audio_dma_pull_frag() local
374 src_pos = readq(&mace->perif.audio.chan[ch].read_ptr); in snd_sgio2audio_dma_pull_frag()
385 src = (u64 *)(src_base + src_pos); in snd_sgio2audio_dma_pull_frag()
392 src_pos = (src_pos + sizeof(u64)) & CHANNEL_RING_MASK; in snd_sgio2audio_dma_pull_frag()
397 writeq(src_pos, &mace->perif.audio.chan[ch].read_ptr); /* in bytes */ in snd_sgio2audio_dma_pull_frag()
413 int src_pos; in snd_sgio2audio_dma_push_frag() local
424 src_pos = chip->channel[ch].pos; in snd_sgio2audio_dma_push_frag()
433 src = (s16 *)(src_base + src_pos); in snd_sgio2audio_dma_push_frag()
443 src_pos = (src_pos + 2 * sizeof(s16)) & src_mask; in snd_sgio2audio_dma_push_frag()
448 chip->channel[ch].pos = src_pos; in snd_sgio2audio_dma_push_frag()
/Linux-v4.19/drivers/gpu/drm/qxl/
Dqxl_draw.c431 drawable->u.copy_bits.src_pos.x = sx; in qxl_draw_copyarea()
432 drawable->u.copy_bits.src_pos.y = sy; in qxl_draw_copyarea()
Dqxl_dev.h486 struct qxl_point src_pos; member
/Linux-v4.19/fs/nfs/
Dnfs42proc.c233 loff_t pos_src = args->src_pos; in _nfs42_proc_copy()
314 .src_pos = pos_src, in nfs42_proc_copy()
Dnfs42xdr.c148 encode_uint64(xdr, args->src_pos); in encode_copy()
/Linux-v4.19/fs/nfsd/
Dvfs.c541 __be32 nfsd4_clone_file_range(struct file *src, u64 src_pos, struct file *dst, in nfsd4_clone_file_range() argument
544 return nfserrno(vfs_clone_file_range(src, src_pos, dst, dst_pos, in nfsd4_clone_file_range()
548 ssize_t nfsd_copy_file_range(struct file *src, u64 src_pos, struct file *dst, in nfsd_copy_file_range() argument
561 return vfs_copy_file_range(src, src_pos, dst, dst_pos, count, 0); in nfsd_copy_file_range()
/Linux-v4.19/drivers/net/wireless/broadcom/b43legacy/
Dmain.c1084 u16 src_size, elem_size, src_pos, dest_pos; in b43legacy_generate_probe_resp() local
1106 src_pos = ie_start; in b43legacy_generate_probe_resp()
1108 for ( ; src_pos < src_size - 2; src_pos += elem_size) { in b43legacy_generate_probe_resp()
1109 elem_size = src_data[src_pos + 1] + 2; in b43legacy_generate_probe_resp()
1110 if (src_data[src_pos] == 5) { in b43legacy_generate_probe_resp()
1114 memcpy(dest_data + dest_pos, src_data + src_pos, elem_size); in b43legacy_generate_probe_resp()
/Linux-v4.19/arch/m68k/fpsp040/
Dscale.S97 src_pos: label
/Linux-v4.19/fs/
Dread_write.c1980 int vfs_dedupe_file_range_one(struct file *src_file, loff_t src_pos, in vfs_dedupe_file_range_one() argument
2009 ret = dst_file->f_op->dedupe_file_range(src_file, src_pos, in vfs_dedupe_file_range_one()
/Linux-v4.19/include/linux/
Dnfs_xdr.h1384 u64 src_pos; member
Dfs.h1840 extern int vfs_dedupe_file_range_one(struct file *src_file, loff_t src_pos,