Lines Matching refs:next
98 que->next = NULL;
104 data->next = NULL;
105 if (que->next == NULL)
106 que->next = que->tail = data;
108 data->next = que->next;
109 que->next = data;
119 entry->next = NULL;
120 if (que->next == NULL)
121 que->next = que->tail = entry;
123 que->tail->next = entry;
124 que->tail = que->tail->next;
131 if (que->next == NULL)
133 tmpdata = que->next;
134 if ( que->next == que->tail)
135 que->next = que->tail = NULL;
137 que->next = que->next->next;
219 /* Get the next available descriptor number from TCQ */
520 idealSlot += (u32)(spacing + fracSlot); // Point to the next location
748 * Now read the rest of the bits, the next bit read is D14, then D13,