| /OK3568_Linux_fs/external/mpp/osal/ |
| H A D | mpp_list.cpp | 32 RK_U32 mpp_list::keys = 0; 84 RK_S32 mpp_list::add_at_head(void *data, RK_S32 size) in add_at_head() 100 RK_S32 mpp_list::add_at_tail(void *data, RK_S32 size) in add_at_tail() 149 RK_S32 mpp_list::del_at_head(void *data, RK_S32 size) in del_at_head() 160 RK_S32 mpp_list::del_at_tail(void *data, RK_S32 size) in del_at_tail() 186 RK_S32 mpp_list::fifo_wr(void *data, RK_S32 size) in fifo_wr() 215 RK_S32 mpp_list::fifo_rd(void *data, RK_S32 *size) in fifo_rd() 229 RK_S32 mpp_list::list_is_empty() in list_is_empty() 235 RK_S32 mpp_list::list_size() in list_size() 241 RK_S32 mpp_list::add_by_key(void *data, RK_S32 size, RK_U32 *key) in add_by_key() [all …]
|
| H A D | mpp_queue.cpp | 21 : mpp_list(func), mFlushFlag(0) in MppQueue() 35 ret = mpp_list::add_at_tail(data, size); in push() 47 AutoMutex autoLock(mpp_list::mutex()); in pull() 48 if (!mpp_list::list_size()) in pull() 51 return mpp_list::del_at_head(data, size); in pull() 63 return mpp_list::flush(); in flush()
|
| H A D | CMakeLists.txt | 51 mpp_list.cpp
|
| /OK3568_Linux_fs/kernel/arch/arm/plat-orion/ |
| H A D | mpp.c | 27 void __init orion_mpp_conf(unsigned int *mpp_list, unsigned int variant_mask, in orion_mpp_conf() argument 46 for ( ; *mpp_list; mpp_list++) { in orion_mpp_conf() 47 unsigned int num = MPP_NUM(*mpp_list); in orion_mpp_conf() 48 unsigned int sel = MPP_SEL(*mpp_list); in orion_mpp_conf() 56 if (variant_mask && !(*mpp_list & variant_mask)) { in orion_mpp_conf() 68 if (*mpp_list & MPP_INPUT_MASK) in orion_mpp_conf() 70 if (*mpp_list & MPP_OUTPUT_MASK) in orion_mpp_conf()
|
| /OK3568_Linux_fs/u-boot/arch/arm/mach-kirkwood/ |
| H A D | mpp.c | 34 void kirkwood_mpp_conf(const u32 *mpp_list, u32 *mpp_save) in kirkwood_mpp_conf() argument 52 while (*mpp_list) { in kirkwood_mpp_conf() 53 unsigned int num = MPP_NUM(*mpp_list); in kirkwood_mpp_conf() 54 unsigned int sel = MPP_SEL(*mpp_list); in kirkwood_mpp_conf() 63 if (!(*mpp_list & variant_mask)) { in kirkwood_mpp_conf() 80 mpp_list++; in kirkwood_mpp_conf()
|
| /OK3568_Linux_fs/external/mpp/osal/inc/ |
| H A D | mpp_list.h | 36 class mpp_list : public MppMutexCond 39 mpp_list(node_destructor func = NULL); 40 ~mpp_list(); 81 mpp_list(const mpp_list &); 82 mpp_list &operator=(const mpp_list &);
|
| H A D | mpp_queue.h | 22 class MppQueue: public mpp_list
|
| /OK3568_Linux_fs/external/mpp/mpp/inc/ |
| H A D | mpp.h | 136 mpp_list *mPktIn; 137 mpp_list *mPktOut; 138 mpp_list *mFrmIn; 139 mpp_list *mFrmOut;
|
| /OK3568_Linux_fs/kernel/arch/arm/mach-mv78xx0/ |
| H A D | mpp.c | 33 void __init mv78xx0_mpp_conf(unsigned int *mpp_list) in mv78xx0_mpp_conf() argument 35 orion_mpp_conf(mpp_list, mv78xx0_variant(), in mv78xx0_mpp_conf()
|
| H A D | mpp.h | 339 void mv78xx0_mpp_conf(unsigned int *mpp_list);
|
| /OK3568_Linux_fs/kernel/arch/arm/mach-orion5x/ |
| H A D | mpp.c | 40 void __init orion5x_mpp_conf(unsigned int *mpp_list) in orion5x_mpp_conf() argument 42 orion_mpp_conf(mpp_list, orion5x_variant(), in orion5x_mpp_conf()
|
| H A D | mpp.h | 128 void orion5x_mpp_conf(unsigned int *mpp_list);
|
| /OK3568_Linux_fs/kernel/arch/arm/mach-dove/ |
| H A D | mpp.c | 147 void __init dove_mpp_conf(unsigned int *mpp_list, in dove_mpp_conf() argument 155 orion_mpp_conf(mpp_list, 0, MPP_MAX, DOVE_MPP_VIRT_BASE); in dove_mpp_conf()
|
| H A D | mpp.h | 192 void dove_mpp_conf(unsigned int *mpp_list,
|
| /OK3568_Linux_fs/external/mpp/mpp/ |
| H A D | mpp.cpp | 149 mPktIn = new mpp_list(list_wraper_packet); in init() 150 mFrmOut = new mpp_list(list_wraper_frame); in init() 192 mPktIn = new mpp_list(list_wraper_packet); in init() 193 mPktOut = new mpp_list(list_wraper_packet); in init() 194 mFrmIn = new mpp_list(NULL); in init() 195 mFrmOut = new mpp_list(NULL); in init()
|
| /OK3568_Linux_fs/kernel/arch/arm/plat-orion/include/plat/ |
| H A D | mpp.h | 31 void __init orion_mpp_conf(unsigned int *mpp_list, unsigned int variant_mask,
|
| /OK3568_Linux_fs/external/mpp/test/ |
| H A D | mpi_enc_mt_test.cpp | 71 mpp_list *list_buf; 530 p->list_buf = new mpp_list(NULL); in mt_test_res_init() 673 mpp_list *list_buf = p->list_buf; in enc_test_input() 884 mpp_list *list_buf = p->list_buf; in enc_test_output()
|
| /OK3568_Linux_fs/u-boot/arch/arm/mach-kirkwood/include/mach/ |
| H A D | mpp.h | 299 void kirkwood_mpp_conf(const u32 *mpp_list, u32 *mpp_save);
|
| /OK3568_Linux_fs/external/mpp/mpp/codec/ |
| H A D | mpp_enc_impl.cpp | 524 mpp_list *pkt_out = mpp->mPktOut; in mpp_enc_callback() 2395 mpp_list *pkt_out = mpp->mPktOut; in async_task_terminate() 2465 mpp_list *pkt_out = mpp->mPktOut; in async_task_skip() 2591 mpp_list *frm_in = mpp->mFrmIn; in try_get_async_task() 2936 mpp_list *pkt_out = mpp->mPktOut; in enc_async_wait_task() 2976 mpp_list *frm_in = mpp->mFrmIn; in mpp_enc_async_thread()
|
| H A D | mpp_dec.cpp | 368 mpp_list *list = mpp->mFrmOut; in mpp_dec_put_frame()
|
| /OK3568_Linux_fs/external/mpp/debian/ |
| H A D | changelog | 191 * [mpp_list]: release the blocked thread at reset
|
| /OK3568_Linux_fs/external/mpp/mpp/vproc/ |
| H A D | mpp_dec_vproc.cpp | 105 mpp_list *list = mpp->mFrmOut; in dec_vproc_put_frame()
|
| /OK3568_Linux_fs/docs/en/RK3566_RK3568/ |
| H A D | RK3566_RK3568_Linux4.19_SDK_Note.md | 257 * - [mpp_list]: Add list_sort func
|
| /OK3568_Linux_fs/docs/cn/RK3566_RK3568/ |
| H A D | RK3566_RK3568_Linux4.19_SDK_Note.md | 257 * - [mpp_list]: Add list_sort func
|