Home
last modified time | relevance | path

Searched refs:__next (Results 1 – 12 of 12) sorted by relevance

/external/mesa3d/src/compiler/glsl/
Dlist.h665 *__next = (__type *)__node->next; \
666 __next != NULL; \
667 __node = __next, __next = (__type *)__next->next)
711 * __next = \
714 __node = __next, __next = \
715 exec_node_data(__type, (__next)->__field.next, __field))
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_cfg.h337 *__next = (__type *)__inst->next; \
338 __next != NULL; \
339 __inst = __next, \
340 __next = (__type *)__next->next)
Dbrw_dead_control_flow.cpp94 __next = earlier_block->next(); in dead_control_flow_eliminate()
/external/valgrind/none/tests/s390x/
Dsrst.c11 static char * srst3(char *__next, char *__start, char __what, int *__cc) in srst3() argument
14 register char *next asm ("2") = __next; in srst3()
/external/mesa3d/src/util/
Dlist.h220 *__next = LIST_ENTRY(type, pos->member.next, member); \
222 pos = __next, \
223 __next = LIST_ENTRY(type, __next->member.next, member))
/external/libcxx/include/
D__debug135 __i_node(void* __i, __i_node* __next, __c_node* __c)
136 : __i_(__i), __next_(__next), __c_(__c) {}
158 __c_node(void* __c, __c_node* __next)
159 : __c_(__c), __next_(__next), beg_(nullptr), end_(nullptr), cap_(nullptr) {}
Dforward_list598 __node_pointer __next = __p->__next_;
601 __p = __next;
1249 __node_pointer __next = __first->__next_;
1252 __first = __next;
1299 __node_pointer __next = __first->__next_;
1302 __first = __next;
D__tree1598 __node_pointer __next = __detach(__cache);
1600 __cache = __next;
1644 __node_pointer __next = __detach(__cache);
1646 __cache = __next;
1768 __node_pointer __next = __detach(__cache);
1770 __cache = __next;
2075 const_iterator __next = _VSTD::next(__hint);
2076 if (__next == end() || value_comp()(__v, *__next))
2086 __parent = static_cast<__parent_pointer>(__next.__ptr_);
D__hash_table1548 __next_pointer __next = __np->__next_;
1567 __np = __next;
1641 __next_pointer __next = __cache->__next_;
1643 __cache = __next;
1703 __next_pointer __next = __cache->__next_;
1705 __cache = __next;
1743 __next_pointer __next = __cache->__next_;
1745 __cache = __next;
Dregex2331 const _CharT* __next = _VSTD::next(__s.__current_);
2332 if (__next != __s.__last_)
2334 pair<_CharT, _CharT> __ch2(*__s.__current_, *__next);
/external/python/cpython2/Lib/
Dsre_parse.py192 self.__next()
193 def __next(self): member in Tokenizer
209 self.__next()
214 self.__next()
/external/valgrind/perf/
Dtest_input_for_tinycc.c4980 struct __gconv_trans_data *__next; member