| /third_party/nghttp2/src/ |
| D | shrpx_router.cc | 86 auto next_node = find_next_node(node, pattern[i]); in add_route() local 87 if (next_node == nullptr) { in add_route() 93 node = next_node; in add_route() 173 auto next_node = find_next_node(node, *p); in match_complete() local 174 if (next_node == nullptr) { in match_complete() 178 node = next_node; in match_complete() 253 auto next_node = find_next_node(node, *p); in match_partial() local 254 if (next_node == nullptr) { in match_partial() 258 node = next_node; in match_partial() 359 auto next_node = find_next_node(node, *p); in match_prefix() local [all …]
|
| /third_party/mesa3d/src/intel/compiler/ |
| D | brw_disasm_info.c | 46 struct exec_node *next_node = exec_node_get_next(&group->link); in dump_assembly() local 47 if (exec_node_is_tail_sentinel(next_node)) in dump_assembly() 51 exec_node_data(struct inst_group, next_node, link); in dump_assembly() 176 struct exec_node *next_node = exec_node_get_next(&cur->link); in disasm_insert_error() local 177 if (exec_node_is_tail_sentinel(next_node)) in disasm_insert_error() 181 exec_node_data(struct inst_group, next_node, link); in disasm_insert_error()
|
| /third_party/python/Lib/lib2to3/ |
| D | btm_matcher.py | 71 next_node = BMNode() 72 start.transition_table[pattern[0]] = next_node 75 next_node = start.transition_table[pattern[0]] 78 end_nodes = self.add(pattern[1:], start=next_node) 80 end_nodes = [next_node]
|
| /third_party/mesa3d/src/intel/common/ |
| D | intel_disasm.c | 89 struct exec_node *next_node = exec_node_get_next(&group->link); in intel_disassemble() local 90 if (exec_node_is_tail_sentinel(next_node)) in intel_disassemble() 94 exec_node_data(struct inst_group, next_node, link); in intel_disassemble()
|
| /third_party/spirv-tools/source/opt/ |
| D | instruction_list.h | 91 iterator_template next_node = *this; in Erase() local 92 ++next_node; in Erase() 95 return next_node; in Erase()
|
| /third_party/skia/third_party/externals/spirv-tools/source/opt/ |
| D | instruction_list.h | 91 iterator_template next_node = *this; in Erase() local 92 ++next_node; in Erase() 95 return next_node; in Erase()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
| D | instruction_list.h | 91 iterator_template next_node = *this; in Erase() local 92 ++next_node; in Erase() 95 return next_node; in Erase()
|
| /third_party/ffmpeg/libavformat/ |
| D | nutdec.c | 1243 Syncpoint *sp, *next_node[2] = { &nopts_sp, &nopts_sp }; in read_seek() local 1262 (void **) next_node); in read_seek() 1264 next_node[0]->pos, next_node[1]->pos, next_node[0]->ts, in read_seek() 1265 next_node[1]->ts); in read_seek() 1266 pos = ff_gen_search(s, -1, dummy.ts, next_node[0]->pos, in read_seek() 1267 next_node[1]->pos, next_node[1]->pos, in read_seek() 1268 next_node[0]->ts, next_node[1]->ts, in read_seek() 1275 next_node[1] = &nopts_sp; in read_seek() 1277 (void **) next_node); in read_seek() 1278 pos2 = ff_gen_search(s, -2, dummy.pos, next_node[0]->pos, in read_seek() [all …]
|
| D | nutenc.c | 595 Syncpoint *next_node[2] = { NULL }; in write_index() local 604 av_tree_find(nut->syncpoints, &dummy, ff_nut_sp_pos_cmp, (void**)next_node); in write_index() 605 put_v(bc, (next_node[1]->pos >> 4) - (dummy.pos>>4)); in write_index() 606 dummy.pos = next_node[1]->pos; in write_index()
|
| /third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/internal/ |
| D | graphcycles_test.cc | 192 int next_node = 0; in TEST() local 218 int new_node = next_node++; in TEST() 321 int new_node = next_node++; in TEST()
|
| /third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
| D | cord.cc | 1977 const CordRep* next_node = nullptr; in MemoryUsageAux() local 1983 next_node = left; in MemoryUsageAux() 1988 if (next_node) { in MemoryUsageAux() 1989 tree_stack.push_back(next_node); in MemoryUsageAux() 1991 next_node = right; in MemoryUsageAux() 2009 next_node = cur_node->substring()->child; in MemoryUsageAux() 2010 if (RepMemoryUsageLeaf(next_node, &total_mem_usage)) { in MemoryUsageAux() 2011 next_node = nullptr; in MemoryUsageAux() 2015 if (!next_node) { in MemoryUsageAux() 2019 next_node = tree_stack.back(); in MemoryUsageAux() [all …]
|
| /third_party/mesa3d/src/compiler/nir/ |
| D | nir.c | 2080 nir_cf_node *next_node = nir_cf_node_next(&block->cf_node); in nir_block_get_following_if() local 2082 if (next_node->type != nir_cf_node_if) in nir_block_get_following_if() 2085 return nir_cf_node_as_if(next_node); in nir_block_get_following_if() 2097 nir_cf_node *next_node = nir_cf_node_next(&block->cf_node); in nir_block_get_following_loop() local 2099 if (next_node->type != nir_cf_node_loop) in nir_block_get_following_loop() 2102 return nir_cf_node_as_loop(next_node); in nir_block_get_following_loop()
|
| D | nir_validate.c | 1344 nir_cf_node *next_node = nir_cf_node_next(&if_stmt->cf_node); in validate_if() local 1345 validate_assert(state, next_node->type == nir_cf_node_block); in validate_if() 1377 nir_cf_node *next_node = nir_cf_node_next(&loop->cf_node); in validate_loop() local 1378 validate_assert(state, next_node->type == nir_cf_node_block); in validate_loop()
|
| /third_party/python/Modules/ |
| D | _zoneinfo.c | 2303 StrongCacheNode *next_node; in strong_cache_free() local 2305 next_node = node->next; in strong_cache_free() 2308 node = next_node; in strong_cache_free()
|
| /third_party/libxml2/ |
| D | xmlreader.c | 2029 next_node: in xmlTextReaderReadTree() 2082 goto next_node; in xmlTextReaderReadTree()
|
| D | xpath.c | 13761 next_node: in xmlXPathRunStreamEval() 13806 goto next_node; in xmlXPathRunStreamEval() 13837 goto next_node; in xmlXPathRunStreamEval()
|
| D | tree.c | 8322 goto next_node; in xmlDOMWrapRemoveNode() 8359 next_node: in xmlDOMWrapRemoveNode()
|
| /third_party/libbpf/.github/actions/build-selftests/ |
| D | vmlinux.h | 50549 struct assoc_array_ptr *next_node; member
|