| /OK3568_Linux_fs/kernel/drivers/infiniband/core/ |
| H A D | uverbs_marshall.c | 63 struct ib_uverbs_ah_attr *dst, in ib_copy_ah_attr_to_user() argument 69 memset(&dst->grh, 0, sizeof(dst->grh)); in ib_copy_ah_attr_to_user() 76 dst->dlid = rdma_ah_get_dlid(src); in ib_copy_ah_attr_to_user() 77 dst->sl = rdma_ah_get_sl(src); in ib_copy_ah_attr_to_user() 78 dst->src_path_bits = rdma_ah_get_path_bits(src); in ib_copy_ah_attr_to_user() 79 dst->static_rate = rdma_ah_get_static_rate(src); in ib_copy_ah_attr_to_user() 80 dst->is_global = rdma_ah_get_ah_flags(src) & in ib_copy_ah_attr_to_user() 82 if (dst->is_global) { in ib_copy_ah_attr_to_user() 85 memcpy(dst->grh.dgid, grh->dgid.raw, sizeof(grh->dgid)); in ib_copy_ah_attr_to_user() 86 dst->grh.flow_label = grh->flow_label; in ib_copy_ah_attr_to_user() [all …]
|
| /OK3568_Linux_fs/kernel/include/net/ |
| H A D | dst.h | 87 u32 *dst_cow_metrics_generic(struct dst_entry *dst, unsigned long old); 96 static inline bool dst_metrics_read_only(const struct dst_entry *dst) in dst_metrics_read_only() argument 98 return dst->_metrics & DST_METRICS_READ_ONLY; in dst_metrics_read_only() 101 void __dst_destroy_metrics_generic(struct dst_entry *dst, unsigned long old); 103 static inline void dst_destroy_metrics_generic(struct dst_entry *dst) in dst_destroy_metrics_generic() argument 105 unsigned long val = dst->_metrics; in dst_destroy_metrics_generic() 107 __dst_destroy_metrics_generic(dst, val); in dst_destroy_metrics_generic() 110 static inline u32 *dst_metrics_write_ptr(struct dst_entry *dst) in dst_metrics_write_ptr() argument 112 unsigned long p = dst->_metrics; in dst_metrics_write_ptr() 117 return dst->ops->cow_metrics(dst, p); in dst_metrics_write_ptr() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/video/fbdev/core/ |
| H A D | cfbfillrect.c | 35 bitfill_aligned(struct fb_info *p, unsigned long __iomem *dst, int dst_idx, in bitfill_aligned() argument 50 FB_WRITEL(comp(pat, FB_READL(dst), first), dst); in bitfill_aligned() 56 FB_WRITEL(comp(pat, FB_READL(dst), first), dst); in bitfill_aligned() 57 dst++; in bitfill_aligned() 64 FB_WRITEL(pat, dst++); in bitfill_aligned() 65 FB_WRITEL(pat, dst++); in bitfill_aligned() 66 FB_WRITEL(pat, dst++); in bitfill_aligned() 67 FB_WRITEL(pat, dst++); in bitfill_aligned() 68 FB_WRITEL(pat, dst++); in bitfill_aligned() 69 FB_WRITEL(pat, dst++); in bitfill_aligned() [all …]
|
| H A D | sysfillrect.c | 25 bitfill_aligned(struct fb_info *p, unsigned long *dst, int dst_idx, in bitfill_aligned() argument 40 *dst = comp(pat, *dst, first); in bitfill_aligned() 46 *dst = comp(pat, *dst, first); in bitfill_aligned() 47 dst++; in bitfill_aligned() 54 *dst++ = pat; in bitfill_aligned() 55 *dst++ = pat; in bitfill_aligned() 56 *dst++ = pat; in bitfill_aligned() 57 *dst++ = pat; in bitfill_aligned() 58 *dst++ = pat; in bitfill_aligned() 59 *dst++ = pat; in bitfill_aligned() [all …]
|
| H A D | syscopyarea.c | 28 bitcpy(struct fb_info *p, unsigned long *dst, unsigned dst_idx, in bitcpy() argument 44 *dst = comp(*src, *dst, first); in bitcpy() 49 *dst = comp(*src, *dst, first); in bitcpy() 50 dst++; in bitcpy() 58 *dst++ = *src++; in bitcpy() 59 *dst++ = *src++; in bitcpy() 60 *dst++ = *src++; in bitcpy() 61 *dst++ = *src++; in bitcpy() 62 *dst++ = *src++; in bitcpy() 63 *dst++ = *src++; in bitcpy() [all …]
|
| /OK3568_Linux_fs/kernel/net/core/ |
| H A D | dst.c | 47 void dst_init(struct dst_entry *dst, struct dst_ops *ops, in dst_init() argument 51 dst->dev = dev; in dst_init() 54 dst->ops = ops; in dst_init() 55 dst_init_metrics(dst, dst_default_metrics.metrics, true); in dst_init() 56 dst->expires = 0UL; in dst_init() 58 dst->xfrm = NULL; in dst_init() 60 dst->input = dst_discard; in dst_init() 61 dst->output = dst_discard_out; in dst_init() 62 dst->error = 0; in dst_init() 63 dst->obsolete = initial_obsolete; in dst_init() [all …]
|
| H A D | dst_cache.c | 19 struct dst_entry *dst; member 28 struct dst_entry *dst, u32 cookie) in dst_cache_per_cpu_dst_set() argument 30 dst_release(dst_cache->dst); in dst_cache_per_cpu_dst_set() 31 if (dst) in dst_cache_per_cpu_dst_set() 32 dst_hold(dst); in dst_cache_per_cpu_dst_set() 35 dst_cache->dst = dst; in dst_cache_per_cpu_dst_set() 41 struct dst_entry *dst; in dst_cache_per_cpu_get() local 43 dst = idst->dst; in dst_cache_per_cpu_get() 44 if (!dst) in dst_cache_per_cpu_get() 48 dst_hold(dst); in dst_cache_per_cpu_get() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/selftests/ |
| H A D | test-drm_rect.c | 16 struct drm_rect src, dst, clip; in igt_drm_rect_clip_scaled_div_by_zero() local 24 drm_rect_init(&dst, 0, 0, 0, 0); in igt_drm_rect_clip_scaled_div_by_zero() 26 visible = drm_rect_clip_scaled(&src, &dst, &clip); in igt_drm_rect_clip_scaled_div_by_zero() 31 drm_rect_init(&dst, 3, 3, 0, 0); in igt_drm_rect_clip_scaled_div_by_zero() 33 visible = drm_rect_clip_scaled(&src, &dst, &clip); in igt_drm_rect_clip_scaled_div_by_zero() 42 struct drm_rect src, dst, clip; in igt_drm_rect_clip_scaled_not_clipped() local 47 drm_rect_init(&dst, 0, 0, 1, 1); in igt_drm_rect_clip_scaled_not_clipped() 50 visible = drm_rect_clip_scaled(&src, &dst, &clip); in igt_drm_rect_clip_scaled_not_clipped() 55 FAIL(dst.x1 != 0 || dst.x2 != 1 || in igt_drm_rect_clip_scaled_not_clipped() 56 dst.y1 != 0 || dst.y2 != 1, in igt_drm_rect_clip_scaled_not_clipped() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/staging/media/hantro/ |
| H A D | hantro_vp8.c | 54 u8 *dst; in hantro_vp8_prob_update() local 57 dst = ctx->vp8_dec.prob_tbl.cpu; in hantro_vp8_prob_update() 59 dst[0] = hdr->prob_skip_false; in hantro_vp8_prob_update() 60 dst[1] = hdr->prob_intra; in hantro_vp8_prob_update() 61 dst[2] = hdr->prob_last; in hantro_vp8_prob_update() 62 dst[3] = hdr->prob_gf; in hantro_vp8_prob_update() 63 dst[4] = hdr->segment_header.segment_probs[0]; in hantro_vp8_prob_update() 64 dst[5] = hdr->segment_header.segment_probs[1]; in hantro_vp8_prob_update() 65 dst[6] = hdr->segment_header.segment_probs[2]; in hantro_vp8_prob_update() 66 dst[7] = 0; in hantro_vp8_prob_update() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/staging/media/allegro-dvt/ |
| H A D | allegro-mail.c | 44 allegro_enc_init(u32 *dst, struct mcu_msg_init_request *msg) in allegro_enc_init() argument 49 dst[i++] = msg->reserved0; in allegro_enc_init() 50 dst[i++] = msg->suballoc_dma; in allegro_enc_init() 51 dst[i++] = msg->suballoc_size; in allegro_enc_init() 52 dst[i++] = msg->l2_cache[0]; in allegro_enc_init() 53 dst[i++] = msg->l2_cache[1]; in allegro_enc_init() 54 dst[i++] = msg->l2_cache[2]; in allegro_enc_init() 56 dst[i++] = -1; in allegro_enc_init() 57 dst[i++] = 0; in allegro_enc_init() 60 return i * sizeof(*dst); in allegro_enc_init() [all …]
|
| /OK3568_Linux_fs/external/mpp/mpp/codec/enc/h264/ |
| H A D | h264e_api_v2.c | 241 static MPP_RET h264e_proc_prep_cfg(MppEncPrepCfg *dst, MppEncPrepCfg *src) in h264e_proc_prep_cfg() argument 250 MppEncPrepCfg bak = *dst; in h264e_proc_prep_cfg() 253 dst->format = src->format; in h264e_proc_prep_cfg() 256 dst->range = src->range; in h264e_proc_prep_cfg() 259 dst->color = src->color; in h264e_proc_prep_cfg() 262 dst->colorprim = src->colorprim; in h264e_proc_prep_cfg() 265 dst->colortrc = src->colortrc; in h264e_proc_prep_cfg() 268 dst->rotation_ext = src->rotation_ext; in h264e_proc_prep_cfg() 271 dst->mirroring_ext = src->mirroring_ext; in h264e_proc_prep_cfg() 274 dst->flip = src->flip; in h264e_proc_prep_cfg() [all …]
|
| /OK3568_Linux_fs/external/mpp/mpp/codec/enc/vp8/ |
| H A D | vp8e_api_v2.c | 156 static MPP_RET vp8e_proc_prep_cfg(MppEncPrepCfg *dst, MppEncPrepCfg *src) in vp8e_proc_prep_cfg() argument 173 dst->format = src->format; in vp8e_proc_prep_cfg() 177 dst->rotation_ext = src->rotation_ext; in vp8e_proc_prep_cfg() 180 dst->mirroring_ext = src->mirroring_ext; in vp8e_proc_prep_cfg() 183 dst->flip = src->flip; in vp8e_proc_prep_cfg() 186 if (dst->rotation_ext >= MPP_ENC_ROT_BUTT || dst->rotation_ext < 0 || in vp8e_proc_prep_cfg() 187 dst->mirroring_ext < 0 || dst->flip < 0) { in vp8e_proc_prep_cfg() 188 … mpp_err("invalid trans: rotation %d, mirroring %d\n", dst->rotation_ext, dst->mirroring_ext); in vp8e_proc_prep_cfg() 192 rotation = dst->rotation_ext; in vp8e_proc_prep_cfg() 193 mirroring = dst->mirroring_ext; in vp8e_proc_prep_cfg() [all …]
|
| /OK3568_Linux_fs/kernel/arch/mips/net/ |
| H A D | ebpf_jit.c | 426 int dst = ebpf_to_mips_reg(ctx, insn, dst_reg); in gen_imm_insn() local 428 if (dst < 0) in gen_imm_insn() 429 return dst; in gen_imm_insn() 465 emit_instr(ctx, dinsu, dst, MIPS_R_ZERO, 32, 32); in gen_imm_insn() 471 emit_instr(ctx, sll, dst, dst, 0); in gen_imm_insn() 477 emit_instr(ctx, daddiu, dst, MIPS_R_ZERO, insn->imm); in gen_imm_insn() 481 emit_instr(ctx, andi, dst, dst, insn->imm); in gen_imm_insn() 485 emit_instr(ctx, ori, dst, dst, insn->imm); in gen_imm_insn() 489 emit_instr(ctx, xori, dst, dst, insn->imm); in gen_imm_insn() 492 emit_instr(ctx, daddiu, dst, dst, insn->imm); in gen_imm_insn() [all …]
|
| /OK3568_Linux_fs/external/mpp/mpp/codec/enc/h265/ |
| H A D | h265e_api.c | 323 static MPP_RET h265e_proc_prep_cfg(MppEncPrepCfg *dst, MppEncPrepCfg *src) in h265e_proc_prep_cfg() argument 332 MppEncPrepCfg bak = *dst; in h265e_proc_prep_cfg() 335 dst->format = src->format; in h265e_proc_prep_cfg() 338 dst->range = src->range; in h265e_proc_prep_cfg() 341 dst->color = src->color; in h265e_proc_prep_cfg() 344 dst->colorprim = src->colorprim; in h265e_proc_prep_cfg() 347 dst->colortrc = src->colortrc; in h265e_proc_prep_cfg() 350 dst->rotation_ext = src->rotation_ext; in h265e_proc_prep_cfg() 353 dst->mirroring_ext = src->mirroring_ext; in h265e_proc_prep_cfg() 356 dst->flip = src->flip; in h265e_proc_prep_cfg() [all …]
|
| /OK3568_Linux_fs/kernel/net/dsa/ |
| H A D | dsa2.c | 26 struct dsa_switch_tree *dst; in dsa_switch_find() local 29 list_for_each_entry(dst, &dsa_tree_list, list) { in dsa_switch_find() 30 if (dst->index != tree_index) in dsa_switch_find() 33 list_for_each_entry(dp, &dst->ports, list) { in dsa_switch_find() 47 struct dsa_switch_tree *dst; in dsa_tree_find() local 49 list_for_each_entry(dst, &dsa_tree_list, list) in dsa_tree_find() 50 if (dst->index == index) in dsa_tree_find() 51 return dst; in dsa_tree_find() 58 struct dsa_switch_tree *dst; in dsa_tree_alloc() local 60 dst = kzalloc(sizeof(*dst), GFP_KERNEL); in dsa_tree_alloc() [all …]
|
| /OK3568_Linux_fs/external/xserver/hw/xquartz/xpr/ |
| H A D | driWrap.c | 137 DRIFillSpans(DrawablePtr dst, GCPtr pGC, int nInit, in DRIFillSpans() argument 143 DRISurfaceSetDrawable(dst, &saved); in DRIFillSpans() 147 pGC->ops->FillSpans(dst, pGC, nInit, pptInit, pwidthInit, sorted); in DRIFillSpans() 151 DRISurfaceRestoreDrawable(dst, &saved); in DRIFillSpans() 155 DRISetSpans(DrawablePtr dst, GCPtr pGC, char *pSrc, in DRISetSpans() argument 161 DRISurfaceSetDrawable(dst, &saved); in DRISetSpans() 165 pGC->ops->SetSpans(dst, pGC, pSrc, pptInit, pwidthInit, nspans, sorted); in DRISetSpans() 169 DRISurfaceRestoreDrawable(dst, &saved); in DRISetSpans() 173 DRIPutImage(DrawablePtr dst, GCPtr pGC, in DRIPutImage() argument 179 DRISurfaceSetDrawable(dst, &saved); in DRIPutImage() [all …]
|
| /OK3568_Linux_fs/external/xserver/xkb/ |
| H A D | xkbUtils.c | 932 _XkbCopyClientMap(XkbDescPtr src, XkbDescPtr dst) in _XkbCopyClientMap() argument 940 if (!dst->map) { in _XkbCopyClientMap() 944 dst->map = tmp; in _XkbCopyClientMap() 948 if (src->map->size_syms != dst->map->size_syms) { in _XkbCopyClientMap() 949 tmp = reallocarray(dst->map->syms, in _XkbCopyClientMap() 953 dst->map->syms = tmp; in _XkbCopyClientMap() 956 memcpy(dst->map->syms, src->map->syms, in _XkbCopyClientMap() 960 free(dst->map->syms); in _XkbCopyClientMap() 961 dst->map->syms = NULL; in _XkbCopyClientMap() 963 dst->map->num_syms = src->map->num_syms; in _XkbCopyClientMap() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/phy/ |
| H A D | phy-xgene.c | 94 #define REGSPEC_CFG_I_TX_WORDMODE0_SET(dst, src) \ argument 95 (((dst) & ~0x00070000) | (((u32) (src) << 16) & 0x00070000)) 96 #define REGSPEC_CFG_I_RX_WORDMODE0_SET(dst, src) \ argument 97 (((dst) & ~0x00e00000) | (((u32) (src) << 21) & 0x00e00000)) 99 #define REGSPEC_CFG_I_CUSTOMER_PIN_MODE0_SET(dst, src) \ argument 100 (((dst) & ~0x00007fff) | (((u32) (src)) & 0x00007fff)) 102 #define CFG_I_SPD_SEL_CDR_OVR1_SET(dst, src) \ argument 103 (((dst) & ~0x0000000f) | (((u32) (src)) & 0x0000000f)) 109 #define CFG_IND_ADDR_SET(dst, src) \ argument 110 (((dst) & ~0x003ffff0) | (((u32) (src) << 4) & 0x003ffff0)) [all …]
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/ |
| H A D | eigen.hpp | 63 …en2cv( const Eigen::Matrix<_Tp, _rows, _cols, _options, _maxRows, _maxCols>& src, OutputArray dst ) in eigen2cv() argument 69 transpose(_src, dst); in eigen2cv() 75 _src.copyTo(dst); in eigen2cv() 82 Matx<_Tp, _rows, _cols>& dst ) in eigen2cv() argument 86 dst = Matx<_Tp, _cols, _rows>(static_cast<const _Tp*>(src.data())).t(); in eigen2cv() 90 dst = Matx<_Tp, _rows, _cols>(static_cast<const _Tp*>(src.data())); in eigen2cv() 96 Eigen::Matrix<_Tp, _rows, _cols, _options, _maxRows, _maxCols>& dst ) in cv2eigen() argument 99 if( !(dst.Flags & Eigen::RowMajorBit) ) in cv2eigen() 102 dst.data(), (size_t)(dst.outerStride()*sizeof(_Tp))); in cv2eigen() 116 dst.data(), (size_t)(dst.outerStride()*sizeof(_Tp))); in cv2eigen() [all …]
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/core/ |
| H A D | eigen.hpp | 63 …en2cv( const Eigen::Matrix<_Tp, _rows, _cols, _options, _maxRows, _maxCols>& src, OutputArray dst ) in eigen2cv() argument 69 transpose(_src, dst); in eigen2cv() 75 _src.copyTo(dst); in eigen2cv() 82 Matx<_Tp, _rows, _cols>& dst ) in eigen2cv() argument 86 dst = Matx<_Tp, _cols, _rows>(static_cast<const _Tp*>(src.data())).t(); in eigen2cv() 90 dst = Matx<_Tp, _rows, _cols>(static_cast<const _Tp*>(src.data())); in eigen2cv() 96 Eigen::Matrix<_Tp, _rows, _cols, _options, _maxRows, _maxCols>& dst ) in cv2eigen() argument 99 if( !(dst.Flags & Eigen::RowMajorBit) ) in cv2eigen() 102 dst.data(), (size_t)(dst.outerStride()*sizeof(_Tp))); in cv2eigen() 116 dst.data(), (size_t)(dst.outerStride()*sizeof(_Tp))); in cv2eigen() [all …]
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/core/ |
| H A D | eigen.hpp | 63 …en2cv( const Eigen::Matrix<_Tp, _rows, _cols, _options, _maxRows, _maxCols>& src, OutputArray dst ) in eigen2cv() argument 69 transpose(_src, dst); in eigen2cv() 75 _src.copyTo(dst); in eigen2cv() 82 Matx<_Tp, _rows, _cols>& dst ) in eigen2cv() argument 86 dst = Matx<_Tp, _cols, _rows>(static_cast<const _Tp*>(src.data())).t(); in eigen2cv() 90 dst = Matx<_Tp, _rows, _cols>(static_cast<const _Tp*>(src.data())); in eigen2cv() 96 Eigen::Matrix<_Tp, _rows, _cols, _options, _maxRows, _maxCols>& dst ) in cv2eigen() argument 99 if( !(dst.Flags & Eigen::RowMajorBit) ) in cv2eigen() 102 dst.data(), (size_t)(dst.outerStride()*sizeof(_Tp))); in cv2eigen() 116 dst.data(), (size_t)(dst.outerStride()*sizeof(_Tp))); in cv2eigen() [all …]
|
| /OK3568_Linux_fs/external/mpp/mpp/codec/enc/jpeg/ |
| H A D | jpege_api_v2.c | 113 static MPP_RET jpege_proc_prep_cfg(MppEncPrepCfg *dst, MppEncPrepCfg *src) in jpege_proc_prep_cfg() argument 120 MppEncPrepCfg bak = *dst; in jpege_proc_prep_cfg() 125 dst->format = src->format; in jpege_proc_prep_cfg() 128 dst->rotation_ext = src->rotation_ext; in jpege_proc_prep_cfg() 131 dst->mirroring_ext = src->mirroring_ext; in jpege_proc_prep_cfg() 134 dst->flip = src->flip; in jpege_proc_prep_cfg() 137 if (dst->rotation_ext >= MPP_ENC_ROT_BUTT || dst->rotation_ext < 0 || in jpege_proc_prep_cfg() 138 dst->mirroring_ext < 0 || dst->flip < 0) { in jpege_proc_prep_cfg() 139 … mpp_err("invalid trans: rotation %d, mirroring %d\n", dst->rotation_ext, dst->mirroring_ext); in jpege_proc_prep_cfg() 143 rotation = dst->rotation_ext; in jpege_proc_prep_cfg() [all …]
|
| /OK3568_Linux_fs/external/rknpu2/examples/rknn_yolov5_android_apk_demo/app/src/main/cpp/rga/ |
| H A D | im2d_single.h | 39 IM_API IM_STATUS imcopy(const rga_buffer_t src, rga_buffer_t dst, int sync = 1, int *release_fence_… 61 IM_API IM_STATUS imresize(const rga_buffer_t src, rga_buffer_t dst, double fx = 0, double fy = 0, i… 79 IM_API IM_STATUS imcrop(const rga_buffer_t src, rga_buffer_t dst, im_rect rect, int sync = 1, int *… 99 IM_API IM_STATUS imtranslate(const rga_buffer_t src, rga_buffer_t dst, int x, int y, int sync = 1, … 127 IM_API IM_STATUS imcvtcolor(rga_buffer_t src, rga_buffer_t dst, int sfmt, int dfmt, int mode = IM_C… 147 IM_API IM_STATUS imrotate(const rga_buffer_t src, rga_buffer_t dst, int rotation, int sync = 1, int… 166 IM_API IM_STATUS imflip(const rga_buffer_t src, rga_buffer_t dst, int mode, int sync = 1, int *rele… 212 IM_API IM_STATUS imcomposite(const rga_buffer_t srcA, const rga_buffer_t srcB, rga_buffer_t dst, in… 228 IM_API IM_STATUS imcolorkey(const rga_buffer_t src, rga_buffer_t dst, im_colorkey_range range, int … 246 IM_API IM_STATUS imosd(const rga_buffer_t osd,const rga_buffer_t dst, [all …]
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/rga/RK3588/include/ |
| H A D | im2d_single.h | 39 IM_API IM_STATUS imcopy(const rga_buffer_t src, rga_buffer_t dst, int sync = 1, int *release_fence_… 61 IM_API IM_STATUS imresize(const rga_buffer_t src, rga_buffer_t dst, double fx = 0, double fy = 0, i… 79 IM_API IM_STATUS imcrop(const rga_buffer_t src, rga_buffer_t dst, im_rect rect, int sync = 1, int *… 99 IM_API IM_STATUS imtranslate(const rga_buffer_t src, rga_buffer_t dst, int x, int y, int sync = 1, … 127 IM_API IM_STATUS imcvtcolor(rga_buffer_t src, rga_buffer_t dst, int sfmt, int dfmt, int mode = IM_C… 147 IM_API IM_STATUS imrotate(const rga_buffer_t src, rga_buffer_t dst, int rotation, int sync = 1, int… 166 IM_API IM_STATUS imflip(const rga_buffer_t src, rga_buffer_t dst, int mode, int sync = 1, int *rele… 212 IM_API IM_STATUS imcomposite(const rga_buffer_t srcA, const rga_buffer_t srcB, rga_buffer_t dst, in… 228 IM_API IM_STATUS imcolorkey(const rga_buffer_t src, rga_buffer_t dst, im_colorkey_range range, int … 246 IM_API IM_STATUS imosd(const rga_buffer_t osd,const rga_buffer_t dst, [all …]
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/rga/RK356X/include/ |
| H A D | im2d_single.h | 39 IM_API IM_STATUS imcopy(const rga_buffer_t src, rga_buffer_t dst, int sync = 1, int *release_fence_… 61 IM_API IM_STATUS imresize(const rga_buffer_t src, rga_buffer_t dst, double fx = 0, double fy = 0, i… 79 IM_API IM_STATUS imcrop(const rga_buffer_t src, rga_buffer_t dst, im_rect rect, int sync = 1, int *… 99 IM_API IM_STATUS imtranslate(const rga_buffer_t src, rga_buffer_t dst, int x, int y, int sync = 1, … 127 IM_API IM_STATUS imcvtcolor(rga_buffer_t src, rga_buffer_t dst, int sfmt, int dfmt, int mode = IM_C… 147 IM_API IM_STATUS imrotate(const rga_buffer_t src, rga_buffer_t dst, int rotation, int sync = 1, int… 166 IM_API IM_STATUS imflip(const rga_buffer_t src, rga_buffer_t dst, int mode, int sync = 1, int *rele… 212 IM_API IM_STATUS imcomposite(const rga_buffer_t srcA, const rga_buffer_t srcB, rga_buffer_t dst, in… 228 IM_API IM_STATUS imcolorkey(const rga_buffer_t src, rga_buffer_t dst, im_colorkey_range range, int … 246 IM_API IM_STATUS imosd(const rga_buffer_t osd,const rga_buffer_t dst, [all …]
|