Home
last modified time | relevance | path

Searched refs:_next (Results 1 – 9 of 9) sorted by relevance

/linux/drivers/gpu/drm/nouveau/include/nvkm/core/
H A Dfirmware.h50 typeof(l[0]) *_list = (l), *_next, *_fwif = NULL; \
56 for (_next = _list; !_fwif && _next->load; _next++) { \
57 if (_next->version == _ver) \
58 _fwif = _next; \
67 for (_next = _fwif ? _fwif : _list; _next->load; _next++) { \
68 _fwv = (_ver >= 0) ? _ver : _next->version; \
69 _ret = _next->load(p, _fwv, _next); \
71 _fwif = _next; \
/linux/arch/m68k/include/asm/
H A Dswitch_to.h33 register void *_next __asm__ ("a1") = (next); \
36 : "=a" (_prev), "=a" (_next), "=d" (_last) \
37 : "0" (_prev), "1" (_next) \
/linux/tools/testing/kunit/
H A Dkunit_parser.py153 _next: Tuple[int, str]
162 self._next = (0, '')
169 self._next = next(self._lines)
179 return self._next[1]
207 return self._next[0]
/linux/drivers/dma/dw-edma/
H A Ddw-edma-core.c129 struct dw_edma_burst *child, *_next; in dw_edma_free_burst() local
132 list_for_each_entry_safe(child, _next, &chunk->burst->list, list) { in dw_edma_free_burst()
145 struct dw_edma_chunk *child, *_next; in dw_edma_free_chunk() local
151 list_for_each_entry_safe(child, _next, &desc->chunk->list, list) { in dw_edma_free_chunk()
/linux/tools/verification/rvgen/rvgen/
H A Dltl2ba.py73 def __init__(self, incoming: set['GraphNode'], new, old, _next):
80 self.next = _next.copy()
72 __init__(self, incoming: set['GraphNode'], new, old, _next) global() argument
/linux/tools/lib/bpf/
H A Dbpf_helpers.h388 (((cur) = bpf_iter_##type##_next(&___it))); \
/linux/drivers/cxl/
H A Dacpi.c848 struct resource *_next = next->sibling; in add_cxl_resources() local
852 next = _next; in add_cxl_resources()
/linux/drivers/dma/dw/
H A Dcore.c100 struct dw_desc *child, *_next; in dwc_desc_put() local
105 list_for_each_entry_safe(child, _next, &desc->tx_list, desc_node) { in dwc_desc_put()
/linux/tools/sched_ext/include/scx/
H A Dcommon.bpf.h447 static inline int *bpf_iter_##name##_next(struct bpf_iter_##name *it) { \ in cast_mask()