Searched refs:list_empty (Results 1 - 25 of 78) sorted by relevance

1234

/freebsd-11-stable/cddl/contrib/opensolaris/tools/ctf/common/
H A Dlist.h50 int list_empty(list_t *);
H A Dlist.c150 list_empty(list_t *list) function
/freebsd-11-stable/sys/dev/drm2/i915/
H A Di915_gem_evict.c108 while (!list_empty(&unwind_list)) {
129 while (!list_empty(&unwind_list)) {
142 while (!list_empty(&eviction_list)) {
164 lists_empty = (list_empty(&dev_priv->mm.inactive_list) &&
165 list_empty(&dev_priv->mm.active_list));
/freebsd-11-stable/sys/dev/hpt27xx/
H A Dlist.h81 static HPT_INLINE int list_empty(struct list_head *head) function
103 if (!list_empty(list))
109 if (!list_empty(list)) {
/freebsd-11-stable/sys/dev/hptnr/
H A Dlist.h80 static HPT_INLINE int list_empty(struct list_head *head) function
102 if (!list_empty(list))
108 if (!list_empty(list)) {
/freebsd-11-stable/sys/dev/hptrr/
H A Dlist.h83 static HPT_INLINE int list_empty(struct list_head *head) function
105 if (!list_empty(list))
111 if (!list_empty(list)) {
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/os/
H A Dlist.c40 #define list_empty(a) ((a)->list_head.list_next == &(a)->list_head) macro
128 ASSERT(!list_empty(list));
156 if (list_empty(list))
164 if (list_empty(list))
203 if (list_empty(src))
244 return (list_empty(list));
/freebsd-11-stable/sys/dev/drm2/ttm/
H A Dttm_execbuf_util.c91 if (list_empty(list))
120 if (list_empty(list))
213 if (list_empty(list))
H A Dttm_bo.c121 MPASS(list_empty(&bo->lru));
122 MPASS(list_empty(&bo->ddestroy));
168 MPASS(list_empty(&bo->lru));
185 if (!list_empty(&bo->swap)) {
189 if (!list_empty(&bo->lru)) {
669 if (ret || unlikely(list_empty(&bo->ddestroy))) {
700 if (list_empty(&bdev->ddestroy))
736 if (list_empty(&entry->ddestroy))
884 if (!list_empty(&bo->ddestroy)) {
1374 while (!list_empty(
[all...]
/freebsd-11-stable/sys/contrib/vchiq/interface/compat/
H A Dlist.h98 list_empty(const struct list_head *head) function
107 if (list_empty(head))
160 if (!list_empty(list))
167 if (!list_empty(list))
/freebsd-11-stable/sys/netpfil/ipfw/test/
H A Dmylist.h15 #define list_empty(l) ( (l)->next == l ) macro
/freebsd-11-stable/sys/dev/drm2/radeon/
H A Dradeon_sa.c86 if (!list_empty(&sa_manager->olist)) {
89 if (!list_empty(&sa_manager->olist)) {
237 if (!list_empty(&sa_manager->flist[i])) {
276 if (list_empty(&sa_manager->flist[i])) {
/freebsd-11-stable/sys/dev/mlx4/mlx4_core/
H A Dmlx4_pd.c183 if (!list_empty(&priv->bf_list))
258 if (!list_empty(&bf->uar->bf_list))
265 } else if (list_empty(&bf->uar->bf_list))
H A Dicm.h92 iter->chunk = list_empty(&icm->chunk_list) ?
/freebsd-11-stable/tools/tools/drm/radeon/mkregtable/
H A Dmkregtable.c121 * Note: list_empty() on entry does not return true after this, the entry is
202 * list_empty - tests whether a list is empty
205 static inline int list_empty(const struct list_head *head) function
235 return !list_empty(head) && (head->next == head->prev);
269 if (list_empty(head))
300 if (!list_empty(list))
312 if (!list_empty(list))
326 if (!list_empty(list)) {
343 if (!list_empty(list)) {
/freebsd-11-stable/sys/compat/linuxkpi/common/src/
H A Dlinux_schedule.c226 if (list_empty(&wq->task_list))
238 if (!list_empty(&wq->task_list)) {
251 ret = !list_empty(&wqh->task_list);
/freebsd-11-stable/sys/dev/drm/
H A Ddrm_linux_list.h52 list_empty(struct list_head *head) { function
H A Dmach64_drv.h724 if (list_empty(&dev_priv->pending)) {
805 if (list_empty(&dev_priv->placeholders)) { \
847 if (list_empty(&dev_priv->placeholders)) { \
/freebsd-11-stable/sys/dev/mlx4/mlx4_ib/
H A Dmlx4_ib_mcg.c458 if (!list_empty(&group->pending_list))
549 if (!list_empty(&group->pending_list)) {
674 if (!list_empty(&group->pending_list))
710 while (!list_empty(&group->pending_list) && group->state == MCAST_IDLE) {
739 if (!list_empty(&group->pending_list) && group->state == MCAST_IDLE)
788 if (!list_empty(&group->pending_list) && group->state != MCAST_IDLE)
1010 if (list_empty(&group->pending_list)) {
1173 if (!list_empty(&group->pending_list))
1194 if (!pend && (!list_empty(&group->func[vf].pending) || group->func[vf].num_pend_reqs)) {
1195 mcg_warn_group(group, "DRIVER BUG: list_empty
[all...]
/freebsd-11-stable/sys/compat/linuxkpi/common/include/linux/
H A Dlist.h98 list_empty(const struct list_head *head) function
177 (!list_empty(ptr) ? list_first_entry(ptr, type, member) : NULL)
284 if (list_empty(list))
423 return !list_empty(head) && (head->next == head->prev);
441 if (list_empty(head))
/freebsd-11-stable/sys/dev/drm2/
H A Ddrm_fops.c382 if (!list_empty(&dev->ctxlist)) {
481 if (list_empty(&file_priv->event_list))
514 while (list_empty(&file_priv->event_list)) {
575 if (list_empty(&file_priv->event_list)) {
H A Ddrm_linux_list.h56 list_empty(const struct list_head *head) { function
172 if (list_empty(list))
/freebsd-11-stable/sys/dev/mthca/
H A Dmthca_memfree.h103 iter->chunk = list_empty(&icm->chunk_list) ?
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/
H A Dib_iwcm.c105 if (list_empty(&cm_id_priv->work_free_list))
130 BUG_ON(!list_empty(&cm_id_priv->work_free_list));
174 BUG_ON(!list_empty(&cm_id_priv->work_list));
883 empty = list_empty(&cm_id_priv->work_list);
888 empty = list_empty(&cm_id_priv->work_list);
955 if (list_empty(&cm_id_priv->work_list)) {
/freebsd-11-stable/sys/ofed/drivers/infiniband/ulp/ipoib/
H A Dipoib_cm.c178 if (list_empty(&priv->cm.rx_flush_list) ||
179 !list_empty(&priv->cm.rx_drain_list))
797 while (!list_empty(&priv->cm.passive_ids)) {
811 while (!list_empty(&priv->cm.rx_error_list) ||
812 !list_empty(&priv->cm.rx_flush_list) ||
813 !list_empty(&priv->cm.rx_drain_list)) {
1204 while (!list_empty(&priv->cm.start_list)) {
1242 while (!list_empty(&priv->cm.reap_list)) {
1323 while (!list_empty(&priv->cm.passive_ids)) {
1338 if (!list_empty(
[all...]

Completed in 607 milliseconds

1234