Home
last modified time | relevance | path

Searched refs:le_next (Results 1 – 13 of 13) sorted by relevance

/openbmc/qemu/include/qemu/
H A Drcu_queue.h36 #define QLIST_NEXT_RCU(elm, field) (qatomic_rcu_read(&(elm)->field.le_next))
62 (elm)->field.le_next = (listelm)->field.le_next; \
63 (elm)->field.le_prev = &(listelm)->field.le_next; \
64 qatomic_rcu_set(&(listelm)->field.le_next, (elm)); \
65 if ((elm)->field.le_next != NULL) { \
66 (elm)->field.le_next->field.le_prev = \
67 &(elm)->field.le_next; \
79 (elm)->field.le_next = (listelm); \
81 (listelm)->field.le_prev = &(elm)->field.le_next; \
92 (elm)->field.le_next = (head)->lh_first; \
[all …]
H A Dqueue.h94 struct type *le_next; /* next element */ \
119 if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \
120 (listelm)->field.le_next->field.le_prev = \
121 &(elm)->field.le_next; \
122 (listelm)->field.le_next = (elm); \
123 (elm)->field.le_prev = &(listelm)->field.le_next; \
128 (elm)->field.le_next = (listelm); \
130 (listelm)->field.le_prev = &(elm)->field.le_next; \
134 if (((elm)->field.le_next = (head)->lh_first) != NULL) \
135 (head)->lh_first->field.le_prev = &(elm)->field.le_next;\
[all …]
/openbmc/openbmc/poky/meta/recipes-core/musl/bsd-headers/
H A Dsys-queue.h191 struct type *le_next; /* next element */ \
201 #define LIST_NEXT(elm, field) ((elm)->field.le_next)
206 (var) = ((var)->field.le_next))
232 if ((elm)->field.le_next && \
233 (elm)->field.le_next->field.le_prev != \
234 &(elm)->field.le_next) \
241 (elm)->field.le_next = (void *)1L; \
255 if (((elm)->field.le_next = (listelm)->field.le_next) != \
257 (listelm)->field.le_next->field.le_prev = \
258 &(elm)->field.le_next; \
[all …]
/openbmc/qemu/util/
H A Denvlist.c78 entry = entry->ev_link.le_next) { in envlist_setenv()
121 entry = entry->ev_link.le_next) { in envlist_unsetenv()
154 entry = entry->ev_link.le_next) { in envlist_to_environ()
H A Dfdmon-io_uring.c163 old_node->node_deleted.le_prev = &old_node->node_deleted.le_next; in fdmon_io_uring_update()
/openbmc/qemu/audio/
H A Daudio-hmp-cmds.c39 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) { in hmp_info_capture()
51 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) { in hmp_stopcapture()
H A Daudio.c393 for (cap = s->cap_head.lh_first; cap; cap = cap->entries.le_next) { in audio_pcm_capture_find_specific()
408 for (cb = cap->cb_head.lh_first; cb; cb = cb->entries.le_next) { in audio_notify_capture()
429 for (sw = hw->sw_head.lh_first; sw; sw = sw->entries.le_next) { in audio_recalc_and_notify_capture()
443 SWVoiceCap *sc1 = sc->entries.le_next; in audio_detach_capture()
472 for (cap = s->cap_head.lh_first; cap; cap = cap->entries.le_next) { in audio_attach_capture()
510 for (sw = hw->sw_head.lh_first; sw; sw = sw->entries.le_next) { in audio_pcm_hw_find_min_in()
619 for (sw = hw->sw_head.lh_first; sw; sw = sw->entries.le_next) { in audio_pcm_hw_find_min_out()
941 temp_sw = temp_sw->entries.le_next) { in AUD_set_active_out()
949 for (sc = hw->cap_head.lh_first; sc; sc = sc->entries.le_next) { in AUD_set_active_out()
988 temp_sw = temp_sw->entries.le_next) { in AUD_set_active_in()
[all …]
H A Daudio_template.h239 return hw ? hw->entries.le_next : glue (s->hw_head_, TYPE).lh_first; in glue()
/openbmc/u-boot/include/zfs/
H A Dzap_leaf.h67 uint16_t le_next; /* next entry in hash chain */ member
/openbmc/qemu/scripts/
H A Dcocci-macro-file.h59 struct type *le_next; /* next element */ \
/openbmc/linux/drivers/scsi/aic7xxx/
H A Dqueue.h259 struct type *le_next; /* next element */ \
302 #define LIST_NEXT(elm, field) ((elm)->field.le_next)
/openbmc/qemu/hw/riscv/
H A Driscv-iommu.c2225 s->iommus.le_next = NULL; in riscv_iommu_realize()
2356 s = s->iommus.le_next; in riscv_iommu_find_as()
/openbmc/u-boot/fs/zfs/
H A Dzfs.c835 chunk != CHAIN_END; chunk = le->le_next) { in zap_leaf_lookup()