Lines Matching full:less
5 * Lock-less NULL terminated single linked list
68 * init_llist_head - initialize lock-less list head
69 * @head: the head for your lock-less list
77 * init_llist_node - initialize lock-less list node
130 * llist_for_each - iterate over some deleted entries of a lock-less list
134 * In general, some entries of the lock-less list can be traversed
138 * If being used on entries deleted from lock-less list directly, the
147 * llist_for_each_safe - iterate over some deleted entries of a lock-less list
153 * In general, some entries of the lock-less list can be traversed
157 * If being used on entries deleted from lock-less list directly, the
166 * llist_for_each_entry - iterate over some deleted entries of lock-less list of given type
171 * In general, some entries of the lock-less list can be traversed
175 * If being used on entries deleted from lock-less list directly, the
186 * llist_for_each_entry_safe - iterate over some deleted entries of lock-less list of given type
193 * In general, some entries of the lock-less list can be traversed
197 * If being used on entries deleted from lock-less list directly, the
209 * llist_empty - tests whether a lock-less list is empty
242 * @head: the head for your lock-less list
257 * llist_del_all - delete all entries from lock-less list
258 * @head: the head of lock-less list to delete all entries
281 * @head: the head of lock-less list to delete from.