/third_party/mesa3d/src/gallium/drivers/vc4/ |
D | vc4_qir.h | 354 struct qblock { struct 361 struct qblock *successors[2]; argument 470 struct qblock *cur_block; 471 struct qblock *loop_cont_block; 472 struct qblock *loop_break_block; 473 struct qblock *last_top_block; 520 struct qblock *qir_new_block(struct vc4_compile *c); 521 void qir_set_emit_block(struct vc4_compile *c, struct qblock *block); 522 void qir_link_blocks(struct qblock *predecessor, struct qblock *successor); 523 struct qblock *qir_entry_block(struct vc4_compile *c); [all …]
|
D | vc4_qpu_emit.c | 47 queue(struct qblock *block, uint64_t inst) in queue() 55 last_inst(struct qblock *block) in last_inst() 63 set_last_cond_add(struct qblock *block, uint32_t cond) in set_last_cond_add() 69 set_last_cond_mul(struct qblock *block, uint32_t cond) in set_last_cond_mul() 133 setup_for_vpm_read(struct vc4_compile *c, struct qblock *block) in setup_for_vpm_read() 163 fixup_raddr_conflict(struct qblock *block, in fixup_raddr_conflict() 205 set_last_dst_pack(struct qblock *block, struct qinst *inst) in set_last_dst_pack() 226 handle_r4_qpu_write(struct qblock *block, struct qinst *qinst, in handle_r4_qpu_write() 241 struct qblock *block, in vc4_generate_code_block() 591 struct qblock *start_block = list_first_entry(&c->blocks, in vc4_generate_code() [all …]
|
D | vc4_qir.c | 640 struct qblock * 643 struct qblock *block = rzalloc(c, struct qblock); in qir_new_block() 658 qir_set_emit_block(struct vc4_compile *c, struct qblock *block) in qir_set_emit_block() 664 struct qblock * 667 return list_first_entry(&c->blocks, struct qblock, link); in qir_entry_block() 670 struct qblock * 673 return list_last_entry(&c->blocks, struct qblock, link); in qir_exit_block() 677 qir_link_blocks(struct qblock *predecessor, struct qblock *successor) in qir_link_blocks()
|
D | vc4_qir_emit_uniform_stream_resets.c | 39 block_reads_any_uniform(struct qblock *block) in block_reads_any_uniform()
|
D | vc4_qir_live_variables.c | 47 qir_setup_use(struct vc4_compile *c, struct qblock *block, int ip, in qir_setup_use() 84 qir_setup_def(struct vc4_compile *c, struct qblock *block, int ip, in qir_setup_def()
|
D | vc4_opt_vpm.c | 40 struct qblock *block = qir_entry_block(c); in qir_opt_vpm()
|
D | vc4_opt_coalesce_ff_writes.c | 37 struct qblock *block = qir_entry_block(c); in qir_opt_coalesce_ff_writes()
|
D | vc4_opt_peephole_sf.c | 110 qir_opt_peephole_sf_block(struct vc4_compile *c, struct qblock *block) in qir_opt_peephole_sf_block()
|
D | vc4_qir_schedule.c | 617 struct qblock *block, struct schedule_state *state) in schedule_instructions() 677 struct qblock *block) in qir_schedule_instructions_block()
|
D | vc4_program.c | 1894 struct qblock *then_block = qir_new_block(c); in ntq_emit_if() 1895 struct qblock *after_block = qir_new_block(c); in ntq_emit_if() 1896 struct qblock *else_block; in ntq_emit_if() 1964 struct qblock *jump_block; in ntq_emit_jump() 1983 struct qblock *new_block = qir_new_block(c); in ntq_emit_jump() 2051 struct qblock *save_loop_cont_block = c->loop_cont_block; in ntq_emit_loop() 2052 struct qblock *save_loop_break_block = c->loop_break_block; in ntq_emit_loop()
|
D | vc4_qpu_schedule.c | 869 struct qblock *block, in schedule_instructions() 986 struct qblock *block, in qpu_schedule_instructions_block()
|
/third_party/mesa3d/src/broadcom/compiler/ |
D | v3d_compiler.h | 488 struct qblock { struct 494 struct qblock *successors[2]; argument 562 vir_before_block(struct qblock *block) in vir_before_block() 568 vir_after_block(struct qblock *block) in vir_after_block() 749 struct qblock *current_unifa_block; 864 struct qblock *cur_block; 865 struct qblock *loop_cont_block; 866 struct qblock *loop_break_block; 1088 struct qblock *vir_new_block(struct v3d_compile *c); 1089 void vir_set_emit_block(struct v3d_compile *c, struct qblock *block); [all …]
|
D | vir_opt_dead_code.c | 96 struct qblock *block) in check_last_ldunifa() 124 struct qblock *block, in check_first_ldunifa()
|
D | vir.c | 471 struct qblock * 474 struct qblock *block = rzalloc(c, struct qblock); in vir_new_block() 488 vir_set_emit_block(struct v3d_compile *c, struct qblock *block) in vir_set_emit_block() 495 struct qblock * 498 return list_first_entry(&c->blocks, struct qblock, link); in vir_entry_block() 501 struct qblock * 504 return list_last_entry(&c->blocks, struct qblock, link); in vir_exit_block() 508 vir_link_blocks(struct qblock *predecessor, struct qblock *successor) in vir_link_blocks()
|
D | vir_live_variables.c | 49 vir_setup_use(struct v3d_compile *c, struct qblock *block, int ip, in vir_setup_use() 90 vir_setup_def(struct v3d_compile *c, struct qblock *block, int ip, in vir_setup_def()
|
D | qpu_schedule.c | 1486 struct qblock *block, in insert_scheduled_instruction() 1507 emit_nop(struct v3d_compile *c, struct qblock *block, in emit_nop() 1751 struct qblock *block, in emit_thrsw() 1896 struct qblock *block, in emit_branch() 2068 struct qblock *block, in fixup_pipelined_ldvary() 2171 struct qblock *block, in schedule_instructions() 2307 struct qblock *block, in qpu_schedule_instructions_block() 2451 struct qblock *end_block = list_last_entry(&c->blocks, in v3d_qpu_schedule_instructions() 2452 struct qblock, link); in v3d_qpu_schedule_instructions()
|
D | vir_opt_redundant_flags.c | 97 vir_opt_redundant_flags_block(struct v3d_compile *c, struct qblock *block) in vir_opt_redundant_flags_block()
|
D | qpu_validate.c | 294 qpu_validate_block(struct v3d_qpu_validate_state *state, struct qblock *block) in qpu_validate_block()
|
D | nir_to_vir.c | 3873 struct qblock *then_block = vir_new_block(c); in ntq_emit_uniform_if() 3874 struct qblock *after_block = vir_new_block(c); in ntq_emit_uniform_if() 3875 struct qblock *else_block; in ntq_emit_uniform_if() 3973 struct qblock *then_block = vir_new_block(c); in ntq_emit_nonuniform_if() 3974 struct qblock *after_block = vir_new_block(c); in ntq_emit_nonuniform_if() 3975 struct qblock *else_block; in ntq_emit_nonuniform_if() 4274 struct qblock *save_loop_cont_block = c->loop_cont_block; in ntq_emit_loop() 4275 struct qblock *save_loop_break_block = c->loop_break_block; in ntq_emit_loop()
|
D | vir_to_qpu.c | 187 struct qblock *block, in v3d_generate_code_block()
|
D | vir_register_allocate.c | 101 struct qinst *inst, struct qblock *block) in is_end_of_tmu_sequence() 361 struct qblock *current_block = c->cur_block; in v3d_setup_spill_base()
|
/third_party/ffmpeg/libavcodec/ |
D | dnxhdenc.c | 652 static av_always_inline int dnxhd_ssd_block(int16_t *qblock, int16_t *block) in dnxhd_ssd_block() argument 657 score += (block[i] - qblock[i]) * (block[i] - qblock[i]); in dnxhd_ssd_block()
|
/third_party/libcoap/src/ |
D | coap_block.c | 3343 coap_block_b_t qblock; in coap_handle_response_get_block() local 3355 memset(&qblock, 0, sizeof(qblock)); in coap_handle_response_get_block() 3388 if (coap_get_block_b(session, rcvd, COAP_OPTION_Q_BLOCK2, &qblock)) { in coap_handle_response_get_block() 3394 block = qblock; in coap_handle_response_get_block()
|
D | coap_net.c | 3387 coap_block_b_t qblock; in handle_response() local 3389 if (coap_get_block_b(session, rcvd, COAP_OPTION_Q_BLOCK2, &qblock)) { in handle_response()
|