Home
last modified time | relevance | path

Searched refs:dst_pos (Results 1 - 25 of 27) sorted by relevance

12

/kernel/linux/linux-5.10/drivers/gpu/drm/exynos/
H A Dexynos_drm_scaler.c243 struct drm_exynos_ipp_task_rect *dst_pos) in scaler_set_dst_luma_pos()
247 val = SCALER_DST_WH_SET_WIDTH(dst_pos->w); in scaler_set_dst_luma_pos()
248 val |= SCALER_DST_WH_SET_HEIGHT(dst_pos->h); in scaler_set_dst_luma_pos()
253 struct drm_exynos_ipp_task_rect *dst_pos) in scaler_set_dst_wh()
257 val = SCALER_DST_POS_SET_H_POS(dst_pos->x); in scaler_set_dst_wh()
258 val |= SCALER_DST_POS_SET_V_POS(dst_pos->y); in scaler_set_dst_wh()
265 struct drm_exynos_ipp_task_rect *dst_pos) in scaler_set_hv_ratio()
270 h_ratio = (src_pos->h << 16) / dst_pos->w; in scaler_set_hv_ratio()
271 v_ratio = (src_pos->w << 16) / dst_pos->h; in scaler_set_hv_ratio()
273 h_ratio = (src_pos->w << 16) / dst_pos in scaler_set_hv_ratio()
242 scaler_set_dst_luma_pos(struct scaler_context *scaler, struct drm_exynos_ipp_task_rect *dst_pos) scaler_set_dst_luma_pos() argument
252 scaler_set_dst_wh(struct scaler_context *scaler, struct drm_exynos_ipp_task_rect *dst_pos) scaler_set_dst_wh() argument
262 scaler_set_hv_ratio(struct scaler_context *scaler, unsigned int rotation, struct drm_exynos_ipp_task_rect *src_pos, struct drm_exynos_ipp_task_rect *dst_pos) scaler_set_hv_ratio() argument
363 struct drm_exynos_ipp_task_rect *dst_pos = &task->dst.rect; scaler_commit() local
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/exynos/
H A Dexynos_drm_scaler.c244 struct drm_exynos_ipp_task_rect *dst_pos) in scaler_set_dst_luma_pos()
248 val = SCALER_DST_WH_SET_WIDTH(dst_pos->w); in scaler_set_dst_luma_pos()
249 val |= SCALER_DST_WH_SET_HEIGHT(dst_pos->h); in scaler_set_dst_luma_pos()
254 struct drm_exynos_ipp_task_rect *dst_pos) in scaler_set_dst_wh()
258 val = SCALER_DST_POS_SET_H_POS(dst_pos->x); in scaler_set_dst_wh()
259 val |= SCALER_DST_POS_SET_V_POS(dst_pos->y); in scaler_set_dst_wh()
266 struct drm_exynos_ipp_task_rect *dst_pos) in scaler_set_hv_ratio()
271 h_ratio = (src_pos->h << 16) / dst_pos->w; in scaler_set_hv_ratio()
272 v_ratio = (src_pos->w << 16) / dst_pos->h; in scaler_set_hv_ratio()
274 h_ratio = (src_pos->w << 16) / dst_pos in scaler_set_hv_ratio()
243 scaler_set_dst_luma_pos(struct scaler_context *scaler, struct drm_exynos_ipp_task_rect *dst_pos) scaler_set_dst_luma_pos() argument
253 scaler_set_dst_wh(struct scaler_context *scaler, struct drm_exynos_ipp_task_rect *dst_pos) scaler_set_dst_wh() argument
263 scaler_set_hv_ratio(struct scaler_context *scaler, unsigned int rotation, struct drm_exynos_ipp_task_rect *src_pos, struct drm_exynos_ipp_task_rect *dst_pos) scaler_set_hv_ratio() argument
364 struct drm_exynos_ipp_task_rect *dst_pos = &task->dst.rect; scaler_commit() local
[all...]
/kernel/linux/linux-5.10/sound/mips/
H A Dsgio2audio.c350 int dst_pos; in snd_sgio2audio_dma_pull_frag() local
362 dst_pos = chip->channel[ch].pos; in snd_sgio2audio_dma_pull_frag()
372 dst = (s16 *)(dst_base + dst_pos); in snd_sgio2audio_dma_pull_frag()
379 dst_pos = (dst_pos + 2 * sizeof(s16)) & dst_mask; in snd_sgio2audio_dma_pull_frag()
384 chip->channel[ch].pos = dst_pos; in snd_sgio2audio_dma_pull_frag()
397 unsigned long dst_base, dst_pos, src_mask; in snd_sgio2audio_dma_push_frag() local
408 dst_pos = readq(&mace->perif.audio.chan[ch].write_ptr); in snd_sgio2audio_dma_push_frag()
420 dst = (u64 *)(dst_base + dst_pos); in snd_sgio2audio_dma_push_frag()
428 dst_pos in snd_sgio2audio_dma_push_frag()
[all...]
/kernel/linux/linux-6.6/sound/mips/
H A Dsgio2audio.c349 int dst_pos; in snd_sgio2audio_dma_pull_frag() local
361 dst_pos = chip->channel[ch].pos; in snd_sgio2audio_dma_pull_frag()
371 dst = (s16 *)(dst_base + dst_pos); in snd_sgio2audio_dma_pull_frag()
378 dst_pos = (dst_pos + 2 * sizeof(s16)) & dst_mask; in snd_sgio2audio_dma_pull_frag()
383 chip->channel[ch].pos = dst_pos; in snd_sgio2audio_dma_pull_frag()
396 unsigned long dst_base, dst_pos, src_mask; in snd_sgio2audio_dma_push_frag() local
407 dst_pos = readq(&mace->perif.audio.chan[ch].write_ptr); in snd_sgio2audio_dma_push_frag()
419 dst = (u64 *)(dst_base + dst_pos); in snd_sgio2audio_dma_push_frag()
427 dst_pos in snd_sgio2audio_dma_push_frag()
[all...]
/kernel/linux/linux-5.10/fs/
H A Dremap_range.c448 struct file *dst_file, loff_t dst_pos, in vfs_dedupe_file_range_one()
460 ret = remap_verify_area(dst_file, dst_pos, len, true); in vfs_dedupe_file_range_one()
486 dst_pos, len, remap_flags | REMAP_FILE_DEDUP); in vfs_dedupe_file_range_one()
447 vfs_dedupe_file_range_one(struct file *src_file, loff_t src_pos, struct file *dst_file, loff_t dst_pos, loff_t len, unsigned int remap_flags) vfs_dedupe_file_range_one() argument
/kernel/linux/linux-6.6/fs/
H A Dremap_range.c440 struct file *dst_file, loff_t dst_pos, in vfs_dedupe_file_range_one()
460 ret = remap_verify_area(dst_file, dst_pos, len, true); in vfs_dedupe_file_range_one()
486 dst_pos, len, remap_flags | REMAP_FILE_DEDUP); in vfs_dedupe_file_range_one()
439 vfs_dedupe_file_range_one(struct file *src_file, loff_t src_pos, struct file *dst_file, loff_t dst_pos, loff_t len, unsigned int remap_flags) vfs_dedupe_file_range_one() argument
/kernel/linux/linux-6.6/fs/nfsd/
H A Dvfs.c613 struct nfsd_file *nf_dst, u64 dst_pos, in nfsd4_clone_file_range()
623 cloned = vfs_clone_file_range(src, src_pos, dst, dst_pos, count, 0); in nfsd4_clone_file_range()
633 loff_t dst_end = count ? dst_pos + count - 1 : LLONG_MAX; in nfsd4_clone_file_range()
634 int status = vfs_fsync_range(dst, dst_pos, dst_end, 0); in nfsd4_clone_file_range()
648 dst_pos, in nfsd4_clone_file_range()
660 u64 dst_pos, u64 count) in nfsd_copy_file_range()
673 ret = vfs_copy_file_range(src, src_pos, dst, dst_pos, count, 0); in nfsd_copy_file_range()
676 ret = vfs_copy_file_range(src, src_pos, dst, dst_pos, count, in nfsd_copy_file_range()
611 nfsd4_clone_file_range(struct svc_rqst *rqstp, struct nfsd_file *nf_src, u64 src_pos, struct nfsd_file *nf_dst, u64 dst_pos, u64 count, bool sync) nfsd4_clone_file_range() argument
659 nfsd_copy_file_range(struct file *src, u64 src_pos, struct file *dst, u64 dst_pos, u64 count) nfsd_copy_file_range() argument
H A Dvfs.h79 struct nfsd_file *nf_dst, u64 dst_pos,
H A Dnfs4proc.c1637 u64 dst_pos = copy->cp_dst_pos; in _nfsd_copy_file_range() local
1647 bytes_copied = nfsd_copy_file_range(src, src_pos, dst, dst_pos, in _nfsd_copy_file_range()
1654 dst_pos += bytes_copied; in _nfsd_copy_file_range()
/kernel/linux/linux-5.10/fs/nfsd/
H A Dvfs.c534 struct nfsd_file *nf_dst, u64 dst_pos, u64 count, bool sync) in nfsd4_clone_file_range()
543 cloned = vfs_clone_file_range(src, src_pos, dst, dst_pos, count, 0); in nfsd4_clone_file_range()
553 loff_t dst_end = count ? dst_pos + count - 1 : LLONG_MAX; in nfsd4_clone_file_range()
554 int status = vfs_fsync_range(dst, dst_pos, dst_end, 0); in nfsd4_clone_file_range()
571 u64 dst_pos, u64 count) in nfsd_copy_file_range()
584 ret = vfs_copy_file_range(src, src_pos, dst, dst_pos, count, 0); in nfsd_copy_file_range()
587 ret = vfs_copy_file_range(src, src_pos, dst, dst_pos, count, in nfsd_copy_file_range()
533 nfsd4_clone_file_range(struct nfsd_file *nf_src, u64 src_pos, struct nfsd_file *nf_dst, u64 dst_pos, u64 count, bool sync) nfsd4_clone_file_range() argument
570 nfsd_copy_file_range(struct file *src, u64 src_pos, struct file *dst, u64 dst_pos, u64 count) nfsd_copy_file_range() argument
H A Dvfs.h61 struct nfsd_file *nf_dst, u64 dst_pos,
H A Dnfs4proc.c1378 u64 dst_pos = copy->cp_dst_pos; in _nfsd_copy_file_range() local
1383 bytes_copied = nfsd_copy_file_range(src, src_pos, dst, dst_pos, in _nfsd_copy_file_range()
1390 dst_pos += bytes_copied; in _nfsd_copy_file_range()
/kernel/linux/linux-5.10/arch/m68k/fpsp040/
H A Dkernel_ex.S287 beqs dst_pos |if clr, it was positive
289 dst_pos: label
/kernel/linux/linux-6.6/arch/m68k/fpsp040/
H A Dkernel_ex.S287 beqs dst_pos |if clr, it was positive
289 dst_pos: label
/kernel/linux/linux-5.10/fs/hmdfs/
H A Dstash.c129 loff_t dst_pos; member
1381 err = hmdfs_write_dst(conn, args->dst, args->buf, rd, ctx->dst_pos); in hmdfs_rd_src_wr_dst()
1433 ctx.dst_pos = data_pos - data_init_pos; in hmdfs_copy_src_to_dst()
/kernel/linux/linux-6.6/fs/hmdfs/
H A Dstash.c129 loff_t dst_pos; member
1366 err = hmdfs_write_dst(conn, args->dst, args->buf, rd, ctx->dst_pos); in hmdfs_rd_src_wr_dst()
1418 ctx.dst_pos = data_pos - data_init_pos; in hmdfs_copy_src_to_dst()
/kernel/linux/linux-5.10/drivers/dma/ppc4xx/
H A Dadma.c1243 unsigned char mult, int index, int dst_pos);
3451 unsigned char mult, int index, int dst_pos) in ppc440spe_adma_pq_set_src_mult()
3482 mult_dst = dst_pos ? DMA_CDB_SG_DST2 : in ppc440spe_adma_pq_set_src_mult()
3499 mult_dst = dst_pos ? DMA_CDB_SG_DST2 : DMA_CDB_SG_DST1; in ppc440spe_adma_pq_set_src_mult()
3449 ppc440spe_adma_pq_set_src_mult( struct ppc440spe_adma_desc_slot *sw_desc, unsigned char mult, int index, int dst_pos) ppc440spe_adma_pq_set_src_mult() argument
/kernel/linux/linux-6.6/drivers/dma/ppc4xx/
H A Dadma.c1241 unsigned char mult, int index, int dst_pos);
3448 unsigned char mult, int index, int dst_pos) in ppc440spe_adma_pq_set_src_mult()
3479 mult_dst = dst_pos ? DMA_CDB_SG_DST2 : in ppc440spe_adma_pq_set_src_mult()
3496 mult_dst = dst_pos ? DMA_CDB_SG_DST2 : DMA_CDB_SG_DST1; in ppc440spe_adma_pq_set_src_mult()
3446 ppc440spe_adma_pq_set_src_mult( struct ppc440spe_adma_desc_slot *sw_desc, unsigned char mult, int index, int dst_pos) ppc440spe_adma_pq_set_src_mult() argument
/kernel/linux/linux-5.10/fs/nfs/
H A Dnfs42xdr.c306 encode_uint64(xdr, args->dst_pos); in encode_copy()
667 p = xdr_encode_hyper(p, args->dst_pos); in encode_copy_commit()
H A Dnfs42proc.c292 loff_t pos_dst = args->dst_pos; in _nfs42_proc_copy()
396 .dst_pos = pos_dst, in nfs42_proc_copy()
/kernel/linux/linux-6.6/fs/nfs/
H A Dnfs42xdr.c313 encode_uint64(xdr, args->dst_pos); in encode_copy()
334 p = xdr_encode_hyper(p, args->dst_pos); in encode_copy_commit()
H A Dnfs42proc.c329 loff_t pos_dst = args->dst_pos; in _nfs42_proc_copy()
424 .dst_pos = pos_dst, in nfs42_proc_copy()
/kernel/linux/linux-5.10/include/linux/
H A Dnfs_xdr.h1441 u64 dst_pos; member
H A Dfs.h1993 struct file *dst_file, loff_t dst_pos,
/kernel/linux/linux-6.6/include/linux/
H A Dnfs_xdr.h1462 u64 dst_pos; member

Completed in 65 milliseconds

12