Home
last modified time | relevance | path

Searched defs:key (Results 1 – 12 of 12) sorted by relevance

/rockchip-linux_mpp/mpp/base/
H A Dmpp_task.c13 MPP_RET mpp_task_meta_set_s32(MppTask task, MppMetaKey key, RK_S32 val) in mpp_task_meta_set_s32()
22 MPP_RET mpp_task_meta_set_s64(MppTask task, MppMetaKey key, RK_S64 val) in mpp_task_meta_set_s64()
31 MPP_RET mpp_task_meta_set_ptr(MppTask task, MppMetaKey key, void *val) in mpp_task_meta_set_ptr()
40 MPP_RET mpp_task_meta_set_frame(MppTask task, MppMetaKey key, MppFrame frame) in mpp_task_meta_set_frame()
49 MPP_RET mpp_task_meta_set_packet(MppTask task, MppMetaKey key, MppPacket packet) in mpp_task_meta_set_packet()
58 MPP_RET mpp_task_meta_set_buffer(MppTask task, MppMetaKey key, MppBuffer buffer) in mpp_task_meta_set_buffer()
67 MPP_RET mpp_task_meta_get_s32(MppTask task, MppMetaKey key, RK_S32 *val, RK_S32 default_val) in mpp_task_meta_get_s32()
79 MPP_RET mpp_task_meta_get_s64(MppTask task, MppMetaKey key, RK_S64 *val, RK_S64 default_val) in mpp_task_meta_get_s64()
91 MPP_RET mpp_task_meta_get_ptr(MppTask task, MppMetaKey key, void **val, void *default_val) in mpp_task_meta_get_ptr()
103 MPP_RET mpp_task_meta_get_frame(MppTask task, MppMetaKey key, MppFrame *frame) in mpp_task_meta_get_frame()
[all …]
H A Dmpp_meta.c74 static inline RK_U64 META_KEY_TO_U64(RK_U32 key, RK_U32 type) in META_KEY_TO_U64()
79 #define EXPAND_AS_TRIE(key, type) \ argument
86 #define EXPAND_AS_LOG(key, type) \ argument
180 #define get_index_of_key_f(key, type) get_index_of_key(key, type, __FUNCTION__); argument
571 const char *key = NULL; in mpp_meta_dump() local
H A Dmpp_trie.c58 rk_u16 key; member
97 static rk_s32 trie_get_node(MppTrieImpl *trie, rk_s32 prev, rk_u64 key) in trie_get_node()
177 rk_u32 key = s[i]; in trie_pave_node() local
360 static rk_s32 mpp_trie_walk(MppTrieWalk *p, rk_s32 idx, rk_u32 key, rk_u32 keyx, rk_u32 end) in mpp_trie_walk()
454 char key = *s++; in mpp_trie_get_node() local
H A Dmpp_buffer_impl.c1331 rk_u32 key; in service_dump() local
/rockchip-linux_mpp/utils/
H A Ddictionary.c118 unsigned dictionary_hash(const char * key) in dictionary_hash()
209 const char * dictionary_get(const dictionary * d, const char * key, const char * def) in dictionary_get()
255 int dictionary_set(dictionary * d, const char * key, const char * val) in dictionary_set()
314 void dictionary_unset(dictionary * d, const char * key) in dictionary_unset()
H A Diniparser.c413 const char * iniparser_getstring(const dictionary * d, const char * key, const char * def) in iniparser_getstring()
454 long int iniparser_getlongint(const dictionary * d, const char * key, long int notfound) in iniparser_getlongint()
491 int iniparser_getint(const dictionary * d, const char * key, int notfound) in iniparser_getint()
509 double iniparser_getdouble(const dictionary * d, const char * key, double notfound) in iniparser_getdouble()
550 int iniparser_getboolean(const dictionary * d, const char * key, int notfound) in iniparser_getboolean()
636 char * key, in iniparser_line()
720 char key [ASCIILINESZ + 1] ; in iniparser_load() local
H A Ddictionary.h49 char ** key ; /** List of string keys */ member
/rockchip-linux_mpp/mpp/legacy/
H A Drk_list.cpp28 RK_U32 key; member
37 static inline void list_node_init_with_key_and_size(rk_list_node *node, RK_U32 key, RK_S32 size) in list_node_init_with_key_and_size()
44 static rk_list_node* create_list(void *data, RK_S32 size, RK_U32 key) in create_list()
184 RK_S32 rk_list::add_by_key(void *data, RK_S32 size, RK_U32 *key) in add_by_key()
193 RK_S32 rk_list::del_by_key(void *data, RK_S32 size, RK_U32 key) in del_by_key()
203 RK_S32 rk_list::show_by_key(void *data, RK_U32 key) in show_by_key()
/rockchip-linux_mpp/kmpp/base/
H A Dkmpp_meta.c44 #define META_KEY_TO_U64(key, type) ((rk_u64)((rk_u32)htobe32(key)) | ((rk_u64)type << 32)) argument
187 static void *meta_key_to_addr(KmppObj meta, KmppMetaKey key, KmppMetaType type) in meta_key_to_addr()
361 rk_s32 kmpp_meta_get_obj(KmppMeta meta, KmppMetaKey key, KmppObj *val) in kmpp_meta_get_obj()
379 rk_s32 kmpp_meta_get_obj_d(KmppMeta meta, KmppMetaKey key, KmppObj *val, KmppObj def) in kmpp_meta_get_obj_d()
399 rk_s32 kmpp_meta_set_shm(KmppMeta meta, KmppMetaKey key, KmppShmPtr *sptr) in kmpp_meta_set_shm()
427 rk_s32 kmpp_meta_get_shm(KmppMeta meta, KmppMetaKey key, KmppShmPtr *sptr) in kmpp_meta_get_shm()
446 rk_s32 kmpp_meta_get_shm_d(KmppMeta meta, KmppMetaKey key, KmppShmPtr *sptr, KmppShmPtr *def) in kmpp_meta_get_shm_d()
/rockchip-linux_mpp/osal/
H A Dmpp_list.c26 static inline void list_node_init_with_key_and_size(MppListNode *node, rk_u32 key, rk_s32 size) in list_node_init_with_key_and_size()
33 static MppListNode* create_list(void *data, rk_s32 size, rk_u32 key) in create_list()
157 static MppListNode* create_list_with_size(void *data, rk_s32 size, rk_u32 key) in create_list_with_size()
228 rk_s32 mpp_list_add_by_key(MppList *list, void *data, rk_s32 size, rk_u32 *key) in mpp_list_add_by_key()
249 rk_s32 mpp_list_del_by_key(MppList *list, void *data, rk_s32 size, rk_u32 key) in mpp_list_del_by_key()
270 rk_s32 mpp_list_show_by_key(MppList *list, void *data, rk_u32 key) in mpp_list_show_by_key()
/rockchip-linux_mpp/osal/inc/
H A Dmpp_hash.h260 #define hash_add(hashtable, node, key) \ argument
298 #define hash_for_each_possible(name, obj, member, key) \ argument
H A Dmpp_list.h31 rk_u32 key; member