HomeSort by relevance Sort by last modified time
    Searched refs:list_empty (Results 1 - 25 of 110) sorted by null

1 2 3 4 5

  /external/u-boot/drivers/usb/musb-new/
musb_host.h 57 if (list_empty(q))
81 if (list_empty(queue))
musb_gadget.h 85 if (list_empty(queue))
  /external/mesa3d/src/compiler/nir/
nir_search_helpers.h 132 bool zero_if_use = list_empty(&instr->dest.dest.ssa.if_uses);
133 bool zero_use = list_empty(&instr->dest.dest.ssa.uses);
148 bool zero_if_use = list_empty(&instr->dest.dest.ssa.if_uses);
149 bool zero_use = list_empty(&instr->dest.dest.ssa.uses);
170 return list_empty(&instr->dest.dest.ssa.if_uses);
nir_lower_to_source_mods.c 93 if (list_empty(&parent->dest.dest.ssa.uses) &&
94 list_empty(&parent->dest.dest.ssa.if_uses))
139 if (!list_empty(&alu->dest.dest.ssa.if_uses))
nir_lower_regs_to_ssa.c 271 assert(list_empty(&reg->uses));
272 assert(list_empty(&reg->if_uses));
273 assert(list_empty(&reg->defs));
  /external/blktrace/btt/
list.h 107 * Note: list_empty on entry does not return true after this, the entry is
162 * list_empty - tests whether a list is empty
165 static inline int list_empty(const struct list_head *head) function
176 return list_empty(head) ? NULL : head->next;
212 if (!list_empty(list))
  /external/e2fsprogs/lib/blkid/
cache.c 129 while (!list_empty(&cache->bic_devs)) {
136 while (!list_empty(&cache->bic_tags)) {
141 while (!list_empty(&tag->bit_names)) {
list.h 102 * list_empty() on @entry does not return true after this, @entry is
121 * list_empty - tests whether a list is empty
124 _INLINE_ int list_empty(struct list_head *head) function
  /external/libnl/python/netlink/
utils.h 8 static inline int list_empty(const struct list_head *head) function
  /external/mesa3d/src/util/
list.h 75 static inline bool list_empty(struct list_head *list);
79 if (list_empty(from)) {
104 static inline bool list_empty(struct list_head *list) function
128 if (list_empty(src))
139 if (list_empty(src))
  /external/e2fsprogs/lib/ext2fs/
kernel-list.h 79 static __inline__ int list_empty(struct list_head *head) function
  /external/mesa3d/src/vulkan/util/
vk_debug_report.c 102 if (!instance || list_empty(&instance->callbacks))
  /external/u-boot/drivers/core/
dump.c 87 if (list_empty(&uc->dev_head))
devres.c 83 BUG_ON(!list_empty(&dr->entry));
93 BUG_ON(!list_empty(&dr->entry));
  /external/u-boot/drivers/usb/dwc3/
gadget.h 64 if (list_empty(list))
  /external/u-boot/scripts/kconfig/
list.h 68 * list_empty - tests whether a list is empty
71 static inline int list_empty(const struct list_head *head) function
123 * Note: list_empty() on entry does not return true after this, the entry is
  /external/ltp/testcases/realtime/include/
list.h 133 * Note: list_empty on entry does not return true after this, the entry is
177 * list_empty - tests whether a list is empty
180 static inline int list_empty(const struct list_head *head) function
224 if (!list_empty(list))
238 if (!list_empty(list)) {
  /external/mesa3d/src/gallium/drivers/freedreno/ir3/
ir3_legalize.c 162 if (list_empty(&block->instr_list) && (opc_cat(n->opc) >= 5))
165 if (is_nop(n) && !list_empty(&block->instr_list)) {
308 if (list_empty(&block->instr_list)) {
  /external/mesa3d/src/intel/compiler/
brw_nir_opt_peephole_ffma.c 39 if (!list_empty(&def->if_uses))
155 list_empty(&load_const->def.if_uses)) {
258 assert(list_empty(&add->dest.dest.ssa.uses));
  /external/u-boot/fs/ubifs/
gc.c 404 if (list_empty(&sleb->nodes) && list_empty(&nondata))
510 ubifs_assert(!list_empty(&sleb->nodes));
671 if (i > SOFT_LEBS_LIMIT && !list_empty(&c->idx_gc)) {
791 if (ret == -ENOSPC && !list_empty(&c->idx_gc)) {
944 while (!list_empty(&c->idx_gc)) {
966 if (list_empty(&c->idx_gc))
  /external/u-boot/include/linux/
list.h 95 * Note: list_empty() on entry does not return true after this, the entry is
173 * list_empty - tests whether a list is empty
176 static inline int list_empty(const struct list_head *head) function
206 return !list_empty(head) && (head->next == head->prev);
238 if (list_empty(head))
271 if (!list_empty(list))
283 if (!list_empty(list))
297 if (!list_empty(list)) {
314 if (!list_empty(list)) {
  /external/blktrace/iowatcher/
list.h 132 * Note: list_empty on entry does not return true after this, the entry is
212 * list_empty - tests whether a list is empty
215 static inline int list_empty(const struct list_head *head) function
260 if (!list_empty(list))
274 if (!list_empty(list)) {
  /external/mesa3d/src/broadcom/clif/
clif_dump.c 124 while (!list_empty(&clif->worklist)) {
  /external/u-boot/drivers/usb/gadget/
dwc2_udc_otg_xfer_dma.c 198 if (list_empty(&ep->queue)) {
252 if (!list_empty(&ep->queue)) {
278 if (list_empty(&ep->queue)) {
333 if (!list_empty(&ep->queue)) {
349 if (!list_empty(&ep->queue)) {
596 || !list_empty(&req->queue))) {
629 list_empty(&ep->queue), ep->stopped);
647 if (list_empty(&ep->queue) && !ep->stopped) {
790 if (!list_empty(&ep->queue)) {
828 if (list_empty(&ep->queue)
    [all...]
  /external/u-boot/fs/yaffs2/
yaffs_allocator.c 299 if (list_empty(&allocator->free_objs))
302 if (!list_empty(&allocator->free_objs)) {

Completed in 5461 milliseconds

1 2 3 4 5