Home
last modified time | relevance | path

Searched refs:__item (Results 1 - 7 of 7) sorted by relevance

/third_party/libdrm/
H A Dlibdrm_lists.h40 #define DRMINITLISTHEAD(__item) \
42 (__item)->prev = (__item); \
43 (__item)->next = (__item); \
46 #define DRMLISTADD(__item, __list) \
48 (__item)->prev = (__list); \
49 (__item)->next = (__list)->next; \
50 (__list)->next->prev = (__item); \
51 (__list)->next = (__item); \
[all...]
H A Dutil_double_list.h91 #define LIST_INITHEAD(__item) list_inithead(__item)
92 #define LIST_ADD(__item, __list) list_add(__item, __list)
93 #define LIST_ADDTAIL(__item, __list) list_addtail(__item, __list)
95 #define LIST_DEL(__item) list_del(__item)
96 #define LIST_DELINIT(__item) list_delinit(__item)
[all...]
/third_party/mesa3d/src/nouveau/codegen/
H A Dnv50_ir_util.h106 // WARNING: do not use a->prev/next for __item or __list
108 #define DLLIST_DEL(__item) \
110 (__item)->prev->next = (__item)->next; \
111 (__item)->next->prev = (__item)->prev; \
112 (__item)->next = (__item); \
113 (__item)->prev = (__item); \
[all...]
/third_party/python/Lib/idlelib/
H A Ddebugobj_r.py13 self.__item = item
16 value = getattr(self.__item, name)
20 sub_list = self.__item._GetSubList()
/third_party/rust/crates/libc/src/
H A Dmacros.rs72 __item! {
95 __item! {
109 __item! {
125 __item! {
139 __item! {
273 macro_rules! __item { macros
/third_party/alsa-lib/include/
H A Dsearch.h88 extern ENTRY *hsearch __P ((ENTRY __item, ACTION __action));
107 extern int hsearch_r __P ((ENTRY __item, ACTION __action, ENTRY **__retval,
/third_party/mesa3d/src/util/
H A Dlist.h190 #define list_entry(__item, __type, __field) \
191 ((__type *)(((char *)(__item)) - offsetof(__type, __field)))

Completed in 3 milliseconds