Searched refs:__field (Results 1 – 2 of 2) sorted by relevance
/external/mesa3d/src/glsl/ |
D | list.h | 493 #define foreach_list_typed(__type, __node, __field, __list) \ argument 495 exec_node_data(__type, (__list)->head, __field); \ 496 (__node)->__field.next != NULL; \ 497 (__node) = exec_node_data(__type, (__node)->__field.next, __field)) 499 #define foreach_list_typed_const(__type, __node, __field, __list) \ argument 501 exec_node_data(__type, (__list)->head, __field); \ 502 (__node)->__field.next != NULL; \ 503 (__node) = exec_node_data(__type, (__node)->__field.next, __field))
|
/external/valgrind/main/VEX/auxprogs/ |
D | genoffsets.c | 59 #define my_offsetof(__type,__field) (&((__type*)0)->__field) argument
|