Home
last modified time | relevance | path

Searched refs:hnode (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/src/public/src/
H A Dskiplist.c69 (void)memset_s(list->hnode, sizeof(list->hnode), 0, sizeof(list->hnode)); in SkiplistInit()
99 (void)memset_s(list->hnode, sizeof(list->hnode), 0, sizeof(list->hnode)); in SkiplistDestroy()
126 list->hnode[index] = head->forward[index]; in SkipListPopValue()
176 list->hnode[index] = FILLP_NULL_PTR; in SkipListPopTail()
203 next = list->hnode[index]; in SkiplistInsertAtMid()
225 list->hnode[index] = node; in SkiplistInsertAtMid()
248 list->hnode[index] = node; in SkipListInsertFirstNode()
270 list->hnode[index]->pre[index] = node; in SkipListInsertAtHead()
272 list->hnode[index] = node; in SkipListInsertAtHead()
337 list->hnode[index] = node; in SkipListInsert()
[all …]
H A Ddympool.c141 HLIST_INIT_NODE(&mem->hnode); in DympExpandMemory()
142 HlistAddTail(&pool->mlist, &mem->hnode); in DympExpandMemory()
169 HlistDelete(&pool->mlist, &mem->hnode); in DympExpandMemory()
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/src/public/include/
H A Ddympool.h28 struct HlistNode hnode; member
34 return (DympMemory *)((char *)(node) - (uintptr_t)(&(((DympMemory *)0)->hnode))); in DympMemoryNodeEntry()
H A Dskiplist.h44 struct SkipListNode *hnode[MAX_SKIPLIST_LEVEL]; /* point to the first node of each level */ member
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/src/fillp_lib/include/fillp/
H A Dfillp_pcb.h55 struct HlistNode hnode; member
63 …turn (struct FillpNackNode *)((char *)(node) - (uintptr_t)(&(((struct FillpNackNode *)0)->hnode))); in FillpNackNodeEntry()
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/src/fillp_lib/src/fillp/
H A Dfillp_common.c524 HlistAddTail(&(pcb->recv.nackList), &(nackNode->hnode)); in FillpAddNodeAtDelayNackListTail()
587 HlistAddAfter(list, node, &(newNackNode->hnode)); in FillpCheckAndUpdateDelayNackList()