HomeSort by relevance Sort by last modified time
    Searched refs:__field (Results 1 - 7 of 7) sorted by null

  /external/mesa3d/src/compiler/glsl/
list.h 695 #define foreach_list_typed(__type, __node, __field, __list) \
697 exec_node_data(__type, (__list)->head_sentinel.next, __field); \
698 (__node)->__field.next != NULL; \
699 (__node) = exec_node_data(__type, (__node)->__field.next, __field))
701 #define foreach_list_typed_from(__type, __node, __field, __list, __start) \
702 for (__type * __node = exec_node_data(__type, (__start), __field); \
703 (__node)->__field.next != NULL; \
704 (__node) = exec_node_data(__type, (__node)->__field.next, __field))
    [all...]
  /external/libdrm/
util_double_list.h 98 #define LIST_ENTRY(__type, __item, __field) \
99 ((__type *)(((char *)(__item)) - offsetof(__type, __field)))
101 #define LIST_FIRST_ENTRY(__ptr, __type, __field) \
102 LIST_ENTRY(__type, (__ptr)->next, __field)
104 #define LIST_LAST_ENTRY(__ptr, __type, __field) \
105 LIST_ENTRY(__type, (__ptr)->prev, __field)
libdrm_lists.h 76 #define DRMLISTENTRY(__type, __item, __field) \
77 ((__type *)(((char *) (__item)) - offsetof(__type, __field)))
  /external/virglrenderer/src/gallium/auxiliary/util/
u_double_list.h 103 #define LIST_ENTRY(__type, __item, __field) \
104 ((__type *)(((char *)(__item)) - offsetof(__type, __field)))
  /external/python/apitools/apitools/base/protorpclite/
messages.py     [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/nv30/
nv30_query.c 31 #define LIST_FIRST_ENTRY(__type, __item, __field) \
32 LIST_ENTRY(__type, (__item)->next, __field)
  /external/mesa3d/src/util/
list.h 163 #define LIST_ENTRY(__type, __item, __field) \
164 ((__type *)(((char *)(__item)) - offsetof(__type, __field)))

Completed in 178 milliseconds