/external/mesa3d/src/util/ |
D | list.h | 211 *__next = LIST_ENTRY(type, pos->member.next, member); \ 214 list_assert(pos == __next, "use _safe iterator"), \ 215 __next = LIST_ENTRY(type, __next->member.next, member)) 219 *__next = LIST_ENTRY(type, pos->member.next, member); \ 221 pos = __next, \ 222 __next = LIST_ENTRY(type, __next->member.next, member)) 246 *__next = LIST_ENTRY(type, pos->member.next, member); \ 248 pos = __next, \ 249 __next = LIST_ENTRY(type, __next->member.next, member))
|
D | rb_tree.h | 264 *__next = (type *)rb_node_next_or_null((struct rb_node *)__node); \ 267 __node = __next, \ 268 __next = (type *)rb_node_next_or_null((struct rb_node *)__node))
|
/external/mesa3d/src/compiler/glsl/ |
D | list.h | 704 …*__next = (__node) ? exec_node_typed_forward((__list)->head_sentinel.next->next, __type *) : NULL;… 706 (__node) = __next, __next = __next ? exec_node_typed_forward(__next->next, __type *) : NULL) 762 * __next = (__node) ? \ 765 (__node) = __next, __next = (__next && (__next)->__field.next) ? \ 766 exec_node_data_forward(__type, (__next)->__field.next, __field) : NULL)
|
/external/mesa3d/src/intel/compiler/ |
D | brw_cfg.h | 413 *__next = (__type *)__inst->next; \ 414 __next != NULL; \ 415 __inst = __next, \ 416 __next = (__type *)__next->next)
|
D | brw_dead_control_flow.cpp | 96 __next = earlier_block->next(); in dead_control_flow_eliminate()
|
/external/llvm-project/libcxx/include/ |
D | __debug | 101 __i_node(void* __i, __i_node* __next, __c_node* __c) 102 : __i_(__i), __next_(__next), __c_(__c) {} 124 __c_node(void* __c, __c_node* __next) 125 : __c_(__c), __next_(__next), beg_(nullptr), end_(nullptr), cap_(nullptr) {} 223 …BCPP_INLINE_VISIBILITY static __c_node* __create_C_node(void *__mem, void *__c, __c_node *__next) { 224 return ::new(__mem) _C_node<_Cont>(__c, __next);
|
D | forward_list | 619 __node_pointer __next = __p->__next_; 622 __p = __next; 1256 __node_pointer __next = __first->__next_; 1259 __first = __next; 1306 __node_pointer __next = __first->__next_; 1309 __first = __next;
|
D | __hash_table | 1563 __next_pointer __next = __np->__next_; 1582 __np = __next; 1654 __next_pointer __next = __cache->__next_; 1656 __cache = __next; 1714 __next_pointer __next = __cache->__next_; 1716 __cache = __next; 1754 __next_pointer __next = __cache->__next_; 1756 __cache = __next;
|
D | __tree | 2045 const_iterator __next = _VSTD::next(__hint); 2046 if (__next == end() || value_comp()(__v, *__next)) 2056 __parent = static_cast<__parent_pointer>(__next.__ptr_);
|
D | regex | 2384 const _CharT* __next = _VSTD::next(__s.__current_); 2385 if (__next != __s.__last_) 2387 pair<_CharT, _CharT> __ch2(*__s.__current_, *__next);
|
/external/libcxx/include/ |
D | __debug | 135 __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) {}
|
D | forward_list | 616 __node_pointer __next = __p->__next_; 619 __p = __next; 1250 __node_pointer __next = __first->__next_; 1253 __first = __next; 1300 __node_pointer __next = __first->__next_; 1303 __first = __next;
|
D | __tree | 1625 __node_pointer __next = __detach(__cache); 1627 __cache = __next; 1671 __node_pointer __next = __detach(__cache); 1673 __cache = __next; 1795 __node_pointer __next = __detach(__cache); 1797 __cache = __next; 2098 const_iterator __next = _VSTD::next(__hint); 2099 if (__next == end() || value_comp()(__v, *__next)) 2109 __parent = static_cast<__parent_pointer>(__next.__ptr_);
|
D | __hash_table | 1584 __next_pointer __next = __np->__next_; 1603 __np = __next; 1677 __next_pointer __next = __cache->__next_; 1679 __cache = __next; 1739 __next_pointer __next = __cache->__next_; 1741 __cache = __next; 1779 __next_pointer __next = __cache->__next_; 1781 __cache = __next;
|
D | regex | 2345 const _CharT* __next = _VSTD::next(__s.__current_); 2346 if (__next != __s.__last_) 2348 pair<_CharT, _CharT> __ch2(*__s.__current_, *__next);
|
/external/python/cpython3/Lib/ |
D | sre_parse.py | 232 self.__next() 233 def __next(self): member in Tokenizer 251 self.__next() 256 self.__next() 265 self.__next() 271 self.__next() 290 self.__next()
|
/external/python/cpython2/Lib/ |
D | sre_parse.py | 193 self.__next() 194 def __next(self): member in Tokenizer 210 self.__next() 215 self.__next()
|
/external/llvm-project/pstl/include/pstl/internal/ |
D | parallel_backend_tbb.h | 623 __task* __next = _M_func(this); in execute() local 624 return finalize(__next); in execute() 634 finalize(__task* __next) in finalize() argument 641 return __next; in finalize() 654 _PSTL_ASSERT(__next == nullptr); in finalize() 659 return __next; in finalize()
|
/external/rust/crates/libc/src/unix/linux_like/linux/musl/ |
D | mod.rs | 128 __next: *mut ::c_void,
|
/external/crosvm/net_sys/src/ |
D | iff.rs | 642 pub __next: *mut __pthread_internal_list, field
|
/external/rust/crates/libc/src/unix/linux_like/emscripten/ |
D | mod.rs | 183 __next: *mut ::c_void,
|
/external/rust/crates/libc/src/fuchsia/ |
D | mod.rs | 298 __next: *mut ::c_void,
|
/external/libabigail/tests/data/test-abidiff/ |
D | test-PR18166-libtirpc.so.abi | 514 …<var-decl name='__next' type-id='type-id-80' visibility='default' filepath='/usr/include/x86_64-li…
|
/external/libabigail/tests/data/test-annotate/ |
D | test18-pr19037-libvtkRenderingLIC-6.1.so.abi | 1153 <!-- __pthread_internal_list* __pthread_internal_list::__next --> 1154 …<var-decl name='__next' type-id='type-id-46' visibility='default' filepath='/usr/include/bits/pthr…
|
/external/libabigail/tests/data/test-read-dwarf/ |
D | test18-pr19037-libvtkRenderingLIC-6.1.so.abi | 649 …<var-decl name='__next' type-id='type-id-46' visibility='default' filepath='/usr/include/bits/pthr…
|