Lines Matching refs:list
94 struct ePICPixListElem *list;
445 new_elem->next = hash_elem->list;
446 hash_elem->list = new_elem;
456 if (hash_elem != NULL && hash_elem->list != NULL)
468 ePICPixListElem *list_elem = hash->bucket[i][j].list;
771 ePICPixListElem *list, *prev = NULL;
774 if (!hash_elem || !hash_elem->list)
777 list = hash_elem->list;
778 while (list) {
779 if (!is_pixel_on_stack(dc, list->pixel)) {
780 if (ff_els_decode_bit(&dc->els_ctx, &list->rung)) {
781 *pPix = list->pixel;
782 if (list != hash_elem->list) {
783 prev->next = list->next;
784 list->next = hash_elem->list;
785 hash_elem->list = list;
789 dc->stack[dc->stack_pos++ & EPIC_PIX_STACK_MAX] = list->pixel;
791 prev = list;
792 list = list->next;