Home
last modified time | relevance | path

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

/OK3568_Linux_fs/yocto/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 …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/sys/
H A Dqueue.h94 struct type *le_next; /* next element */ \
106 if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \
107 (listelm)->field.le_next->field.le_prev = \
108 &(elm)->field.le_next; \
109 (listelm)->field.le_next = (elm); \
110 (elm)->field.le_prev = &(listelm)->field.le_next; \
115 (elm)->field.le_next = (listelm); \
117 (listelm)->field.le_prev = &(elm)->field.le_next; \
121 if (((elm)->field.le_next = (head)->lh_first) != NULL) \
122 (head)->lh_first->field.le_prev = &(elm)->field.le_next;\
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/sys/
H A Dqueue.h94 struct type *le_next; /* next element */ \
106 if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \
107 (listelm)->field.le_next->field.le_prev = \
108 &(elm)->field.le_next; \
109 (listelm)->field.le_next = (elm); \
110 (elm)->field.le_prev = &(listelm)->field.le_next; \
115 (elm)->field.le_next = (listelm); \
117 (listelm)->field.le_prev = &(elm)->field.le_next; \
121 if (((elm)->field.le_next = (head)->lh_first) != NULL) \
122 (head)->lh_first->field.le_prev = &(elm)->field.le_next;\
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v1/export-user_ta/include/sys/
H A Dqueue.h98 struct type *le_next; /* next element */ \
111 if ((elm)->field.le_next && \
112 (elm)->field.le_next->field.le_prev != \
113 &(elm)->field.le_next) \
118 (elm)->field.le_next = (void *)1L; \
132 if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \
133 (listelm)->field.le_next->field.le_prev = \
134 &(elm)->field.le_next; \
135 (listelm)->field.le_next = (elm); \
136 (elm)->field.le_prev = &(listelm)->field.le_next; \
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/sys/
H A Dqueue.h99 struct type *le_next; /* next element */ \
112 if ((elm)->field.le_next && \
113 (elm)->field.le_next->field.le_prev != \
114 &(elm)->field.le_next) \
119 (elm)->field.le_next = (void *)1L; \
133 if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \
134 (listelm)->field.le_next->field.le_prev = \
135 &(elm)->field.le_next; \
136 (listelm)->field.le_next = (elm); \
137 (elm)->field.le_prev = &(listelm)->field.le_next; \
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/sys/
H A Dqueue.h99 struct type *le_next; /* next element */ \
112 if ((elm)->field.le_next && \
113 (elm)->field.le_next->field.le_prev != \
114 &(elm)->field.le_next) \
119 (elm)->field.le_next = (void *)1L; \
133 if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \
134 (listelm)->field.le_next->field.le_prev = \
135 &(elm)->field.le_next; \
136 (listelm)->field.le_next = (elm); \
137 (elm)->field.le_prev = &(listelm)->field.le_next; \
[all …]
/OK3568_Linux_fs/u-boot/include/zfs/
H A Dzap_leaf.h68 uint16_t le_next; /* next entry in hash chain */ member
/OK3568_Linux_fs/kernel/drivers/scsi/aic7xxx/
H A Dqueue.h259 struct type *le_next; /* next element */ \
302 #define LIST_NEXT(elm, field) ((elm)->field.le_next)
/OK3568_Linux_fs/u-boot/fs/zfs/
H A Dzfs.c836 chunk != CHAIN_END; chunk = le->le_next) { in zap_leaf_lookup()