Lines Matching refs:next_frame
55 STREAM_FRAME *sf, *next_frame; in ossl_sframe_list_destroy() local
57 for (sf = fl->head; sf != NULL; sf = next_frame) { in ossl_sframe_list_destroy()
58 next_frame = sf->next; in ossl_sframe_list_destroy()
83 STREAM_FRAME *sf, *new_frame, *prev_frame, *next_frame; in ossl_sframe_list_insert() local
136 for (next_frame = sf; in ossl_sframe_list_insert()
137 next_frame != NULL && next_frame->range.end <= range->end;) { in ossl_sframe_list_insert()
138 STREAM_FRAME *drop_frame = next_frame; in ossl_sframe_list_insert()
140 next_frame = next_frame->next; in ossl_sframe_list_insert()
141 if (next_frame != NULL) in ossl_sframe_list_insert()
142 next_frame->prev = drop_frame->prev; in ossl_sframe_list_insert()
146 fl->head = next_frame; in ossl_sframe_list_insert()
153 if (next_frame != NULL) { in ossl_sframe_list_insert()
156 && next_frame->range.start <= prev_frame->range.end) { in ossl_sframe_list_insert()
160 next_frame->prev = new_frame; in ossl_sframe_list_insert()
165 new_frame->next = next_frame; in ossl_sframe_list_insert()