Searched refs:add_element (Results 1 – 5 of 5) sorted by relevance
/external/opencore/baselibs/gen_data_structures/src/ |
D | hashtable.h | 108 int add_element(const keyclass& fullkey, const hashclass& data); 109 int add_element(uint32 key, const keyclass& fullkey, const hashclass& data); 156 int HashTable<keyclass, hashclass>::add_element(const keyclass& fullkey, in add_element() function 161 return add_element(key, fullkey, data); in add_element() 169 int HashTable<keyclass, hashclass>::add_element(uint32 key, in add_element() function 189 hash_table[masked_key].add_element(tmp); in add_element() 358 int add_element(const keyclass& fullkey, const hashclass& data); 359 int add_element(uint32 key, const keyclass& fullkey, const hashclass& data); 397 int MTHashTable<keyclass, hashclass>::add_element(const keyclass& fullkey, in add_element() function 402 status = the_hash->add_element(fullkey, data); in add_element() [all …]
|
D | sorted_list.h | 64 int add_element(const LLClass& new_data); 163 template <class LLClass> int SortedList<LLClass>::add_element(const LLClass& new_element) in add_element() function 377 int add_element(const LLClass& new_data); 397 template <class LLClass> int MTSortedList<LLClass>::add_element(const LLClass& new_element) in add_element() function 401 status = the_list.add_element(new_element); in add_element()
|
D | linked_list.h | 61 int add_element(LLClass& new_data); 149 template <class LLClass> int LinkedList<LLClass>::add_element(LLClass& new_element) in add_element() function 397 int add_element(LLClass& new_data); 430 template <class LLClass> int MTLinkedList<LLClass>::add_element(LLClass& new_element) in add_element() function 434 status = the_list.add_element(new_element); in add_element()
|
/external/opencore/oscl/oscl/osclbase/src/ |
D | oscl_linked_list.h | 125 OSCL_IMPORT_REF int32 add_element(OsclAny* new_element); 269 int32 add_element(LLClass& new_element) in add_element() function 271 return Oscl_Linked_List_Base::add_element(&new_element); in add_element() 449 int32 add_element(LLClass& new_element) in add_element() function 454 status = the_list.add_element(new_element); in add_element()
|
D | oscl_linked_list.cpp | 101 OSCL_EXPORT_REF int32 Oscl_Linked_List_Base::add_element(OsclAny* new_element) in add_element() function in Oscl_Linked_List_Base
|