Home
last modified time | relevance | path

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

/linux-6.15/drivers/gpu/drm/exynos/
H A Dexynos_drm_scaler.c181 struct drm_exynos_ipp_task_rect *src_pos, in scaler_set_src_luma_chroma_pos() argument
190 (src_pos->x * fmt->chroma_tile_w / 16) << 2); in scaler_set_src_luma_chroma_pos()
197 struct drm_exynos_ipp_task_rect *src_pos) in scaler_set_src_wh() argument
201 val = SCALER_SRC_WH_SET_WIDTH(src_pos->w); in scaler_set_src_wh()
202 val |= SCALER_SRC_WH_SET_HEIGHT(src_pos->h); in scaler_set_src_wh()
265 struct drm_exynos_ipp_task_rect *src_pos, in scaler_set_hv_ratio() argument
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->w; in scaler_set_hv_ratio()
275 v_ratio = (src_pos->h << 16) / dst_pos->h; in scaler_set_hv_ratio()
[all …]
/linux-6.15/sound/mips/
H A Dsgio2audio.c347 unsigned long src_base, src_pos, dst_mask; in snd_sgio2audio_dma_pull_frag() local
359 src_pos = readq(&mace->perif.audio.chan[ch].read_ptr); in snd_sgio2audio_dma_pull_frag()
370 src = (u64 *)(src_base + src_pos); in snd_sgio2audio_dma_pull_frag()
377 src_pos = (src_pos + sizeof(u64)) & CHANNEL_RING_MASK; in snd_sgio2audio_dma_pull_frag()
382 writeq(src_pos, &mace->perif.audio.chan[ch].read_ptr); /* in bytes */ in snd_sgio2audio_dma_pull_frag()
398 int src_pos; in snd_sgio2audio_dma_push_frag() local
409 src_pos = chip->channel[ch].pos; in snd_sgio2audio_dma_push_frag()
418 src = (s16 *)(src_base + src_pos); in snd_sgio2audio_dma_push_frag()
428 src_pos = (src_pos + 2 * sizeof(s16)) & src_mask; in snd_sgio2audio_dma_push_frag()
433 chip->channel[ch].pos = src_pos; in snd_sgio2audio_dma_push_frag()
/linux-6.15/lib/tests/
H A Dmemcpy_kunit.c399 int src_pos, src_orig_pos, src_size; in inner_loop() local
421 src_pos = s_off; in inner_loop()
431 src_pos = d_off + bytes; in inner_loop()
432 src_orig_pos = src_pos - s_off; in inner_loop()
433 src_size = right_zero_pos - src_pos; in inner_loop()
438 memcmp(&large_dst[src_pos], &large_src[src_orig_pos], src_size), 0, in inner_loop()
/linux-6.15/drivers/staging/media/atomisp/pci/base/circbuf/interface/
H A Dia_css_circbuf_desc.h111 u32 src_pos, in ia_css_circbuf_desc_get_offset() argument
118 offset = (int)(dest_pos - src_pos); in ia_css_circbuf_desc_get_offset()
H A Dia_css_circbuf.h172 u32 src_pos, in ia_css_circbuf_get_offset() argument
180 offset = (int)(dest_pos - src_pos); in ia_css_circbuf_get_offset()
/linux-6.15/drivers/staging/media/atomisp/pci/base/circbuf/src/
H A Dcircbuf.c120 u32 src_pos; in ia_css_circbuf_extract() local
154 src_pos = ia_css_circbuf_get_pos_at_offset(cb, pos, -1); in ia_css_circbuf_extract()
156 ia_css_circbuf_shift_chunk(cb, src_pos, dest_pos); in ia_css_circbuf_extract()
/linux-6.15/fs/
H A Dremap_range.c432 loff_t vfs_dedupe_file_range_one(struct file *src_file, loff_t src_pos, in vfs_dedupe_file_range_one() argument
445 ret = remap_verify_area(src_file, src_pos, len, false); in vfs_dedupe_file_range_one()
483 ret = dst_file->f_op->remap_file_range(src_file, src_pos, dst_file, in vfs_dedupe_file_range_one()
/linux-6.15/drivers/gpu/drm/adp/
H A Dadp_drv.c160 u32 src_pos, src_size, dst_pos, dst_size; in adp_plane_atomic_update() local
171 src_pos = src_rect.x1 << 16 | src_rect.y1; in adp_plane_atomic_update()
176 writel(src_pos, adp->be + ADBE_SRC_START); in adp_plane_atomic_update()
/linux-6.15/fs/bcachefs/
H A Dio_misc.c419 struct bpos src_pos = POS(inum.inum, src_offset); in __bch2_resume_logged_op_finsert() local
447 bkey_lt(bkey_start_pos(k.k), src_pos)) { in __bch2_resume_logged_op_finsert()
448 bch2_cut_front(src_pos, copy); in __bch2_resume_logged_op_finsert()
/linux-6.15/fs/nfsd/
H A Dvfs.h88 struct nfsd_file *nf_src, u64 src_pos,
H A Dvfs.c647 struct nfsd_file *nf_src, u64 src_pos, in nfsd4_clone_file_range() argument
658 cloned = vfs_clone_file_range(src, src_pos, dst, dst_pos, count, 0); in nfsd4_clone_file_range()
681 src_pos, in nfsd4_clone_file_range()
693 ssize_t nfsd_copy_file_range(struct file *src, u64 src_pos, struct file *dst, in nfsd_copy_file_range() argument
707 ret = vfs_copy_file_range(src, src_pos, dst, dst_pos, count, 0); in nfsd_copy_file_range()
710 ret = vfs_copy_file_range(src, src_pos, dst, dst_pos, count, in nfsd_copy_file_range()
H A Dnfs4proc.c1740 u64 src_pos = copy->cp_src_pos; in _nfsd_copy_file_range() local
1752 bytes_copied = nfsd_copy_file_range(src, src_pos, dst, dst_pos, in _nfsd_copy_file_range()
1758 src_pos += bytes_copied; in _nfsd_copy_file_range()
/linux-6.15/drivers/net/wireless/broadcom/b43legacy/
H A Dmain.c1056 u16 src_size, elem_size, src_pos, dest_pos; in b43legacy_generate_probe_resp() local
1078 src_pos = ie_start; in b43legacy_generate_probe_resp()
1080 for ( ; src_pos < src_size - 2; src_pos += elem_size) { in b43legacy_generate_probe_resp()
1081 elem_size = src_data[src_pos + 1] + 2; in b43legacy_generate_probe_resp()
1082 if (src_data[src_pos] == 5) { in b43legacy_generate_probe_resp()
1086 memcpy(dest_data + dest_pos, src_data + src_pos, elem_size); in b43legacy_generate_probe_resp()
/linux-6.15/arch/m68k/fpsp040/
H A Dscale.S97 src_pos: label
/linux-6.15/drivers/gpu/drm/qxl/
H A Dqxl_dev.h483 struct qxl_point src_pos; member
/linux-6.15/fs/nfs/
H A Dnfs42proc.c378 loff_t pos_src = args->src_pos; in _nfs42_proc_copy()
472 .src_pos = pos_src, in nfs42_proc_copy()
H A Dnfs42xdr.c327 encode_uint64(xdr, args->src_pos); in encode_copy()
H A Dnfs4trace.h2427 __entry->src_offset = args->src_pos;
/linux-6.15/include/linux/
H A Dnfs_xdr.h1485 u64 src_pos; member
H A Dfs.h2263 extern loff_t vfs_dedupe_file_range_one(struct file *src_file, loff_t src_pos,