Lines Matching refs:next
99 que->next = NULL;
105 data->next = NULL;
106 if (que->next == NULL)
107 que->next = que->tail = data;
109 data->next = que->next;
110 que->next = data;
120 entry->next = NULL;
121 if (que->next == NULL)
122 que->next = que->tail = entry;
124 que->tail->next = entry;
125 que->tail = que->tail->next;
132 if (que->next == NULL)
134 tmpdata = que->next;
135 if ( que->next == que->tail)
136 que->next = que->tail = NULL;
138 que->next = que->next->next;
218 /* Get the next available descriptor number from TCQ */
519 idealSlot += (u32)(spacing + fracSlot); // Point to the next location
747 * Now read the rest of the bits, the next bit read is D14, then D13,