Lines Matching refs:entry
110 * @entry: the &list_head to attach this object to a &drm_gem_object
112 struct list_head entry;
125 * @entry: The &list_head to additionally connect &drm_gpuvas
131 struct list_head entry;
255 if (va && !list_is_last(&va->rb.entry, &va->mgr->rb.list))
256 return list_next_entry(va, rb.entry);
315 list_for_each_entry(va__, &(mgr__)->rb.list, rb.entry)
328 list_for_each_entry_safe(va__, next__, &(mgr__)->rb.list, rb.entry)
483 * @entry:
488 struct list_head entry;
535 #define drm_gpuva_for_each_op(op, ops) list_for_each_entry(op, &(ops)->list, entry)
547 list_for_each_entry_safe(op, next, &(ops)->list, entry)
558 list_for_each_entry_from_reverse(op, &(ops)->list, entry)
565 list_first_entry(&(ops)->list, struct drm_gpuva_op, entry)
572 list_last_entry(&(ops)->list, struct drm_gpuva_op, entry)
578 #define drm_gpuva_prev_op(op) list_prev_entry(op, entry)
584 #define drm_gpuva_next_op(op) list_next_entry(op, entry)