Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/src/public/src/
H A Dskiplist.c191 struct SkipListNode *node, FILLP_BOOL errIfConflict, FILLP_INT curMinLevel) in SkiplistInsertAtMid() argument
220 for (index = 0; index < curMinLevel; index++) { in SkiplistInsertAtMid()
256 static void SkipListInsertAtTail(struct SkipList *list, struct SkipListNode *node, int curMinLevel) in SkipListInsertAtTail() argument
259 for (index = 0; index < curMinLevel; index++) { in SkipListInsertAtTail()
266 static void SkipListInsertAtHead(struct SkipList *list, struct SkipListNode *node, int curMinLevel) in SkipListInsertAtHead() argument
269 for (index = 0; index < curMinLevel; index++) { in SkipListInsertAtHead()
296 FILLP_INT curMinLevel; in SkipListInsert() local
320 curMinLevel = (list->level > level) ? level : list->level; in SkipListInsert()
324 SkipListInsertAtTail(list, node, curMinLevel); in SkipListInsert()
327 SkipListInsertAtHead(list, node, curMinLevel); in SkipListInsert()
[all …]