/external/libdrm/ |
D | libdrm_lists.h | 46 #define DRMLISTADD(__item, __list) \ argument 48 (__item)->prev = (__list); \ 49 (__item)->next = (__list)->next; \ 50 (__list)->next->prev = (__item); \ 51 (__list)->next = (__item); \ 54 #define DRMLISTADDTAIL(__item, __list) \ argument 56 (__item)->next = (__list); \ 57 (__item)->prev = (__list)->prev; \ 58 (__list)->prev->next = (__item); \ 59 (__list)->prev = (__item); \ [all …]
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_double_list.h | 97 #define LIST_ADD(__item, __list) list_add(__item, __list) argument 98 #define LIST_ADDTAIL(__item, __list) list_addtail(__item, __list) argument 106 #define LIST_IS_EMPTY(__list) \ argument 107 ((__list)->next == (__list))
|
/external/libdrm/freedreno/ |
D | list.h | 92 #define LIST_ADD(__item, __list) list_add(__item, __list) argument 93 #define LIST_ADDTAIL(__item, __list) list_addtail(__item, __list) argument 101 #define LIST_IS_EMPTY(__list) \ argument 102 ((__list)->next == (__list))
|
/external/libdrm/tests/radeon/ |
D | list.h | 92 #define LIST_ADD(__item, __list) list_add(__item, __list) argument 93 #define LIST_ADDTAIL(__item, __list) list_addtail(__item, __list) argument 101 #define LIST_IS_EMPTY(__list) \ argument 102 ((__list)->next == (__list))
|
/external/mesa3d/src/glsl/ |
D | list.h | 474 #define foreach_list_safe(__node, __list) \ argument 475 for (exec_node * __node = (__list)->head, * __next = __node->next \ 479 #define foreach_list(__node, __list) \ argument 480 for (exec_node * __node = (__list)->head \ 484 #define foreach_list_const(__node, __list) \ argument 485 for (const exec_node * __node = (__list)->head \ 489 #define foreach_list_typed(__type, __node, __field, __list) \ argument 491 exec_node_data(__type, (__list)->head, __field); \ 495 #define foreach_list_typed_const(__type, __node, __field, __list) \ argument 497 exec_node_data(__type, (__list)->head, __field); \
|
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
D | nv50_ir_util.h | 116 #define DLLIST_ADDTAIL(__list, __item) \ argument 118 (__item)->next = (__list); \ 119 (__item)->prev = (__list)->prev; \ 120 (__list)->prev->next = (__item); \ 121 (__list)->prev = (__item); \ 124 #define DLLIST_ADDHEAD(__list, __item) \ argument 126 (__item)->prev = (__list); \ 127 (__item)->next = (__list)->next; \ 128 (__list)->next->prev = (__item); \ 129 (__list)->next = (__item); \ [all …]
|
/external/clang/www/ |
D | libstdc++4.4-clang0x.patch | 16 - swap(forward_list&& __list) 17 + swap(forward_list& __list) 18 { _Node_base::swap(this->_M_impl._M_head, __list._M_impl._M_head); }
|
/external/clang/test/Analysis/ |
D | malloc.mm | 190 void OSAtomicEnqueue( OSQueueHead *__list, void *__new, size_t __offset) __attribute__((weak_import…
|