/third_party/mesa3d/src/amd/compiler/ |
D | aco_print_asm.cpp | 59 unsigned* next_block, unsigned pos) in print_block_markers() argument 61 while (*next_block < program->blocks.size() && pos == program->blocks[*next_block].offset) { in print_block_markers() 62 if (referenced_blocks[*next_block]) in print_block_markers() 63 fprintf(output, "BB%u:\n", *next_block); in print_block_markers() 64 (*next_block)++; in print_block_markers() 208 unsigned next_block = 0; in print_asm_clrx() 239 print_block_markers(output, program, referenced_blocks, &next_block, pos); in print_asm_clrx() 369 unsigned next_block = 0; in print_asm_llvm() local 376 next_block < program->blocks.size() && pos == program->blocks[next_block].offset; in print_asm_llvm() 388 print_block_markers(output, program, referenced_blocks, &next_block, pos); in print_asm_llvm() [all …]
|
D | aco_dead_code_analysis.cpp | 102 unsigned next_block = ctx.current_block--; in dead_code_analysis() local 103 process_block(ctx, program->blocks[next_block]); in dead_code_analysis()
|
/third_party/skia/third_party/externals/spirv-cross/ |
D | spirv_cfg.cpp | 126 if (post_order_visit(block.next_block)) in post_order_visit() 127 add_branch(block_id, block.next_block); in post_order_visit() 158 if (block.merge == SPIRBlock::MergeSelection && post_order_visit(block.next_block)) in post_order_visit() 168 auto pred_itr = preceding_edges.find(block.next_block); in post_order_visit() 186 add_branch(block_id, block.next_block); in post_order_visit() 191 add_branch(block_id, block.next_block); in post_order_visit() 198 add_branch(block_id, block.next_block); in post_order_visit() 253 else if (pred_block.merge == SPIRBlock::MergeSelection && pred_block.next_block == ID(block_id)) in find_loop_dominator() 316 if ((dom.merge == SPIRBlock::MergeSelection && dom.next_block == to) || in node_terminates_control_flow_in_sub_graph() 318 (dom.terminator == SPIRBlock::Direct && dom.next_block == to) || in node_terminates_control_flow_in_sub_graph() [all …]
|
D | spirv_parser.cpp | 949 current_block->next_block = target; in parse() 982 ir.block_meta[current_block->next_block] |= ParsedIR::BLOCK_META_MULTISELECT_MERGE_BIT; in parse() 1046 current_block->next_block = ops[0]; in parse() 1048 ir.block_meta[current_block->next_block] |= ParsedIR::BLOCK_META_SELECTION_MERGE_BIT; in parse()
|
D | spirv_glsl.cpp | 14130 …BlockID merge_block = from_block.merge == SPIRBlock::MergeSelection ? from_block.next_block : Bloc… in branch() 14193 if (block->next_block) in emit_continue_block() 14195 flush_phi(continue_block, block->next_block); in emit_continue_block() 14196 block = &get<SPIRBlock>(block->next_block); in emit_continue_block() 14419 auto &child = get<SPIRBlock>(block.next_block); in attempt_emit_loop_header() 14677 if (block.loop_dominator == block.next_block) in emit_block_chain() 14679 branch(block.self, block.next_block); in emit_block_chain() 14685 …else if (is_continue(block.next_block) || is_break(block.next_block) || is_conditional(block.next_… in emit_block_chain() 14687 branch(block.self, block.next_block); in emit_block_chain() 14770 if (c.block != block.next_block && c.block != block.default_block) in emit_block_chain() [all …]
|
D | spirv_cross.cpp | 1485 auto &child = get<SPIRBlock>(block.next_block); in block_is_loop_candidate() 1546 auto &next = get<SPIRBlock>(start->next_block); in execution_is_noop() 1565 start = &get<SPIRBlock>(start->next_block); in execution_is_branchless() 1573 …erminator == SPIRBlock::Direct && from.merge == SPIRBlock::MergeNone && from.next_block == to.self; in execution_is_direct_branch() 3005 test_phi(block.next_block); in set_current_block()
|
D | spirv_common.hpp | 803 BlockID next_block = 0; member
|
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_flow.c | 58 LLVMBasicBlockRef next_block; in lp_build_insert_new_block() local 65 next_block = LLVMGetNextBasicBlock(current_block); in lp_build_insert_new_block() 66 if (next_block) { in lp_build_insert_new_block() 68 new_block = LLVMInsertBasicBlockInContext(gallivm->context, next_block, name); in lp_build_insert_new_block()
|
/third_party/mesa3d/src/panfrost/bifrost/ |
D | bir.c | 166 bi_block *next_block = bi_next_block(block); in bi_next_clause() local 168 bi_foreach_block_from(ctx, next_block, block) { in bi_next_clause()
|
/third_party/ffmpeg/libavcodec/ |
D | mpegvideo_enc.c | 2695 int *dmin, int *next_block, int motion_x, int motion_y) in encode_mb_hq() argument 2702 s->block= s->blocks[*next_block]; in encode_mb_hq() 2703 s->pb= pb[*next_block]; in encode_mb_hq() 2705 s->pb2 = pb2 [*next_block]; in encode_mb_hq() 2706 s->tex_pb= tex_pb[*next_block]; in encode_mb_hq() 2709 if(*next_block){ in encode_mb_hq() 2732 if(*next_block){ in encode_mb_hq() 2738 *next_block^=1; in encode_mb_hq() 3167 int next_block=0; in encode_thread() local 3186 &dmin, &next_block, s->mv[0][0][0], s->mv[0][0][1]); in encode_thread() [all …]
|
/third_party/python/Lib/multiprocessing/ |
D | heap.py | 217 next_block = self._start_to_block[(arena, stop)] 221 _, stop = self._absorb(next_block)
|
/third_party/protobuf/src/google/protobuf/ |
D | arena.cc | 261 Block* next_block = b->next(); in Free() local 274 b = next_block; in Free()
|
/third_party/mesa3d/src/amd/llvm/ |
D | ac_llvm_build.c | 50 LLVMBasicBlockRef next_block; member 2871 flow->next_block = NULL; in push_flow() 2892 return LLVMInsertBasicBlockInContext(ctx->context, flow->next_block, name); in append_basic_block() 2913 flow->next_block = append_basic_block(ctx, "ENDLOOP"); in ac_build_bgnloop() 2922 LLVMBuildBr(ctx->builder, flow->next_block); in ac_build_break() 2941 LLVMPositionBuilderAtEnd(ctx->builder, current_branch->next_block); in ac_build_else() 2942 set_basicblock_name(current_branch->next_block, "else", label_id); in ac_build_else() 2944 current_branch->next_block = endif_block; in ac_build_else() 2969 emit_default_branch(ctx->builder, current_branch->next_block); in ac_build_endif() 2970 LLVMPositionBuilderAtEnd(ctx->builder, current_branch->next_block); in ac_build_endif() [all …]
|
/third_party/mesa3d/src/compiler/nir/ |
D | nir_control_flow.c | 285 nir_block *next_block = nir_cf_node_as_block(next); in block_add_normal_succs() local 287 link_blocks(block, next_block, NULL); in block_add_normal_succs()
|
D | nir_opt_if.c | 920 nir_block *const next_block = in opt_if_simplification() local 922 nir_opt_remove_phis_block(next_block); in opt_if_simplification()
|
/third_party/node/deps/brotli/c/enc/ |
D | compress_fragment.c | 579 goto next_block; in BrotliCompressFragmentFastImpl() 700 next_block: in BrotliCompressFragmentFastImpl()
|
/third_party/skia/third_party/externals/brotli/c/enc/ |
D | compress_fragment.c | 579 goto next_block; in BrotliCompressFragmentFastImpl() 700 next_block: in BrotliCompressFragmentFastImpl()
|
/third_party/libabigail/tests/data/test-read-dwarf/ |
D | PR25042-libgdbm-clang-dwarf5.so.6.0.0.abi | 241 …<var-decl name='next_block' type-id='type-id-12' visibility='default' filepath='./gdbmdefs.h' line… 329 …<var-decl name='next_block' type-id='type-id-12' visibility='default' filepath='./gdbmdefs.h' line…
|