Lines Matching full:tail
160 * The head is removed by making the tail element of the list point its
162 * "prev" pointer of the next element after the head point at the tail
177 * Because the tail of the list points forward (its "next" pointer) to
179 * "prev" pointer) to the tail of the list, this list is circular.
256 * Adds the specified element to the tail of the list
259 * the head element's prev pointer. This is the previous tail member of
262 * Sets next pointer of the previous tail member of the list to point to
278 * Because the tail is always "just before" the head of the list (the
279 * tail's "next" pointer points at the head of the list, and the head's
280 * "prev" pointer points at the tail of the list), the list is circular.