Lines Matching refs:next
25 * initializes the segment to zero, and sets the private next pointer to NULL.
60 seg->next = NULL;
86 seg = first->next;
89 struct cdnsp_segment *next = seg->next;
92 seg = next;
99 * Make the prev segment point to the next segment.
102 * DMA address of the next segment. The caller needs to set any Link TRB
107 struct cdnsp_segment *next,
113 if (!prev || !next)
116 prev->next = next;
119 link->segment_ptr = cpu_to_le64(next->dma);
142 struct cdnsp_segment *next;
147 next = ring->enq_seg->next;
149 cdnsp_link_segments(pdev, last, next, ring->type);
245 seg = seg->next;
257 seg = seg->next;
270 seg = seg->next;
343 struct cdnsp_segment *next;
345 next = cdnsp_segment_alloc(pdev, cycle_state,
347 if (!next) {
352 cdnsp_link_segments(pdev, prev, next, type);
354 prev = next;
1048 seg = seg->next;