Home
last modified time | relevance | path

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

/hal_altera-latest/altera_hal/HAL/inc/sys/
Dalt_llist.h89 alt_llist* entry) in alt_llist_insert() argument
91 entry->previous = list; in alt_llist_insert()
92 entry->next = list->next; in alt_llist_insert()
94 list->next->previous = entry; in alt_llist_insert()
95 list->next = entry; in alt_llist_insert()
103 static ALT_INLINE void ALT_ALWAYS_INLINE alt_llist_remove(alt_llist* entry) in alt_llist_remove() argument
105 entry->next->previous = entry->previous; in alt_llist_remove()
106 entry->previous->next = entry->next; in alt_llist_remove()
113 entry->previous = entry; in alt_llist_remove()
114 entry->next = entry; in alt_llist_remove()