| /rockchip-linux_mpp/osal/ |
| H A D | mpp_eventfd.c | 31 RK_S32 mpp_eventfd_read(RK_S32 fd, RK_U64 *val, RK_S64 timeout) in mpp_eventfd_read() 34 RK_U64 tmp = 0; in mpp_eventfd_read() 45 sizeof(RK_U64) == read(fd, val, sizeof(RK_U64))) { in mpp_eventfd_read() 53 RK_S32 mpp_eventfd_write(RK_S32 fd, RK_U64 val) in mpp_eventfd_write() 57 if (sizeof(RK_U64) != write(fd, &val, sizeof(val))) in mpp_eventfd_write()
|
| /rockchip-linux_mpp/osal/inc/ |
| H A D | mpp_common.h | 69 #define MPP_RB64(x) (((RK_U64)((const RK_U8*)(x))[0] << 56) | \ 70 ((RK_U64)((const RK_U8*)(x))[1] << 48) | \ 71 ((RK_U64)((const RK_U8*)(x))[2] << 40) | \ 72 ((RK_U64)((const RK_U8*)(x))[3] << 32) | \ 73 ((RK_U64)((const RK_U8*)(x))[4] << 24) | \ 74 ((RK_U64)((const RK_U8*)(x))[5] << 16) | \ 75 ((RK_U64)((const RK_U8*)(x))[6] << 8) | \ 76 (RK_U64)((const RK_U8*)(x))[7]) 87 #define MPP_RL64(x) (((RK_U64)((const RK_U8*)(x))[7] << 56) | \ 88 ((RK_U64)((const RK_U8*)(x))[6] << 48) | \ [all …]
|
| H A D | mpp_service.h | 20 #define REQ_DATA_PTR(ptr) ((RK_U64)ptr) 91 RK_U64 data_ptr; 104 RK_U64 flag;
|
| H A D | mpp_eventfd.h | 18 RK_S32 mpp_eventfd_read(RK_S32 fd, RK_U64 *val, RK_S64 timeout); 19 RK_S32 mpp_eventfd_write(RK_S32 fd, RK_U64 val);
|
| /rockchip-linux_mpp/mpp/base/inc/ |
| H A D | mpp_bitput.h | 28 RK_U64 *pbuf; //!< outpacket data 29 RK_U64 bvalue; //!< buffer value, 64 bit 38 RK_S32 mpp_set_bitput_ctx(BitputCtx_t *bp, RK_U64 *data, RK_U32 len); 39 void mpp_put_bits(BitputCtx_t *bp, RK_U64 invalue, RK_S32 lbits);
|
| /rockchip-linux_mpp/mpp/base/ |
| H A D | mpp_bitput.c | 21 RK_S32 mpp_set_bitput_ctx(BitputCtx_t *bp, RK_U64 *data, RK_U32 len) in mpp_set_bitput_ctx() 33 void mpp_put_bits(BitputCtx_t *bp, RK_U64 invalue, RK_S32 lbits) in mpp_put_bits() 67 mpp_put_bits(bp, ((RK_U64)0 << (64 - 8)) >> (64 - 8), 8); in mpp_put_align() 73 mpp_put_bits(bp, ((RK_U64)0 << (64 - len)) >> (64 - len), len); in mpp_put_align()
|
| /rockchip-linux_mpp/mpp/hal/common/ |
| H A D | hal_info.h | 63 MPP_RET hal_info_set(HalInfo ctx, RK_U32 type, RK_U32 flag, RK_U64 data); 66 RK_U64 hal_info_to_string(HalInfo ctx, RK_U32 type, void *val); 67 RK_U64 hal_info_to_float(RK_S32 num, RK_S32 denom);
|
| H A D | hal_info.c | 66 MPP_RET hal_info_set(HalInfo ctx, RK_U32 type, RK_U32 flag, RK_U64 data) in hal_info_set() 178 RK_U64 hal_info_to_string(HalInfo ctx, RK_U32 type, void *val) in hal_info_to_string() 180 RK_U64 ret = 0; in hal_info_to_string() 237 RK_U64 hal_info_to_float(RK_S32 num, RK_S32 denom) in hal_info_to_float() 239 RK_U64 ret = 0; in hal_info_to_float() 255 RK_U64 val = 0; in hal_info_from_enc_cfg()
|
| /rockchip-linux_mpp/osal/test/ |
| H A D | mpp_eventfd_test.c | 19 static RK_U64 wr_val_base = WR_VAL; 20 static RK_U64 rd_val_base = RD_VAL; 21 static RK_U64 wr_val = WR_VAL; 22 static RK_U64 rd_val = RD_VAL;
|
| /rockchip-linux_mpp/mpp/inc/ |
| H A D | mpp_cfg.h | 29 MPP_RET mpp_cfg_set_u64(MppCfgInfo *info, void *cfg, RK_U64 val); 30 MPP_RET mpp_cfg_get_u64(MppCfgInfo *info, void *cfg, RK_U64 *val); 43 #define MPP_CFG_GET_u64(info, cfg, val) (mpp_cfg_get_u64)(info, cfg, (RK_U64 *)(val))
|
| H A D | mpp_dec_cfg.h | 77 RK_U64 change; 110 RK_U64 change;
|
| /rockchip-linux_mpp/inc/ |
| H A D | rk_vdec_cfg.h | 35 MPP_RET mpp_dec_cfg_set_u64(MppDecCfg cfg, const char *name, RK_U64 val); 41 MPP_RET mpp_dec_cfg_get_u64(MppDecCfg cfg, const char *name, RK_U64 *val);
|
| H A D | rk_mpp_cfg.h | 32 MPP_RET mpp_sys_cfg_set_u64(MppSysCfg cfg, const char *name, RK_U64 val); 38 MPP_RET mpp_sys_cfg_get_u64(MppSysCfg cfg, const char *name, RK_U64 *val);
|
| H A D | rk_venc_kcfg.h | 35 MPP_RET mpp_venc_kcfg_set_u64(MppVencKcfg cfg, const char *name, RK_U64 val); 42 MPP_RET mpp_venc_kcfg_get_u64(MppVencKcfg cfg, const char *name, RK_U64 *val);
|
| H A D | rk_vdec_kcfg.h | 34 MPP_RET mpp_vdec_kcfg_set_u64(MppVdecKcfg cfg, const char *name, RK_U64 val); 41 MPP_RET mpp_vdec_kcfg_get_u64(MppVdecKcfg cfg, const char *name, RK_U64 *val);
|
| H A D | rk_venc_cfg.h | 27 MPP_RET mpp_enc_cfg_set_u64(MppEncCfg cfg, const char *name, RK_U64 val); 34 MPP_RET mpp_enc_cfg_get_u64(MppEncCfg cfg, const char *name, RK_U64 *val);
|
| /rockchip-linux_mpp/osal/driver/ |
| H A D | mpp_vcodec_client.c | 25 RK_U64 data; 31 #define REQ_DATA_PTR(ptr) ((RK_U64)ptr)
|
| /rockchip-linux_mpp/utils/ |
| H A D | utils.h | 78 RK_U64 value1; 79 RK_U64 value2;
|
| H A D | mpp_enc_roi_utils.c | 84 RK_U64 force_inter : 42; 85 RK_U64 mode_mask : 9; 86 RK_U64 reserved : 10; 87 RK_U64 force_intra : 1; 88 RK_U64 qp_adj_en : 1; 89 RK_U64 amv_en : 1; 495 RK_U64 *tmp = (RK_U64 *)base_cfg; in gen_vepu580_roi_h264()
|
| /rockchip-linux_mpp/mpp/codec/dec/m2v/ |
| H A D | m2vd_parser.h | 258 RK_U64 pre_pts_27M; 294 RK_U64 pts; 295 RK_U64 dts;
|
| /rockchip-linux_mpp/mpp/codec/dec/vp8/ |
| H A D | vp8d_parser.h | 173 RK_U64 pts; 174 RK_U64 dts;
|
| /rockchip-linux_mpp/kmpp/base/ |
| H A D | kmpp_vdec_cfg.c | 159 MPP_VDEC_KCFG_ACCESS(RK_U64, RK_U64*, u64);
|
| H A D | kmpp_venc_cfg.c | 160 MPP_VENC_KCFG_ACCESS(RK_U64, RK_U64*, u64);
|
| /rockchip-linux_mpp/mpp/codec/inc/rc/ |
| H A D | rc_vepu540.h | 49 RK_U64 sse_sum;
|
| /rockchip-linux_mpp/mpp/codec/enc/h265/ |
| H A D | h265e_enctropy.h | 34 RK_U64 m_fracBits;
|