/third_party/mesa3d/src/freedreno/ir3/ |
D | ir3_context.c | 588 src->def = (arr->last_write && arr->last_write->instr->block == block) in ir3_create_array_load() 589 ? arr->last_write in ir3_create_array_load() 631 if (arr->last_write && arr->last_write->instr->block == src->block) in ir3_create_array_store() 632 ir3_reg_set_last_array(src, dst, arr->last_write); in ir3_create_array_store() 634 arr->last_write = dst; in ir3_create_array_store() 662 if (arr->last_write && arr->last_write->instr->block == block) in ir3_create_array_store() 663 ir3_reg_set_last_array(mov, dst, arr->last_write); in ir3_create_array_store() 668 arr->last_write = dst; in ir3_create_array_store()
|
D | ir3_cp_postsched.c | 54 bool last_write = true; in has_conflicting_write() local 98 if (last_write) in has_conflicting_write() 101 last_write = false; in has_conflicting_write()
|
D | ir3.c | 547 struct ir3_register *last_write) in ir3_reg_set_last_array() argument 552 new_reg->def = last_write; in ir3_reg_set_last_array()
|
D | ir3.h | 521 struct ir3_register *last_write; member 677 struct ir3_register *last_write);
|
/third_party/grpc/test/core/util/ |
D | trickle_endpoint.cc | 39 gpr_timespec last_write; member 71 te->last_write = gpr_now(GPR_CLOCK_MONOTONIC); in te_write() 182 double elapsed = ts2dbl(gpr_time_sub(now, te->last_write)); in grpc_trickle_endpoint_trickle() 190 te->last_write = now; in grpc_trickle_endpoint_trickle()
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
D | sfn_emitssboinstruction.cpp | 338 emit_instruction(new AluInstruction(op2_sub_int, dest.x(), dest.x(), literal(1), last_write)); in emit_atomic_pre_dec() 399 emit_instruction(new AluInstruction(op1_mov, addr_vec.reg_i(2), Value::zero, last_write)); in emit_store_ssbo() 414 …v, temp2.reg_i(0), from_nir(instr->src[0], i), get_chip_class() == CAYMAN ? last_write : write)); in emit_store_ssbo() 416 {addr_vec.reg_i(0), Value::one_i}, last_write)); in emit_store_ssbo() 479 emit_instruction(new AluInstruction(op2_lshr_int, coord, coord_orig, literal(2), last_write)); in emit_ssbo_atomic_op() 489 …t_instruction(new AluInstruction(op1_mov, m_rat_return_address.reg_i(2), Value::zero, last_write)); in emit_ssbo_atomic_op() 662 EmitInstruction::last_write)); in emit_image_size() 676 literal(3), EmitInstruction::last_write)); in emit_image_size() 684 EmitInstruction::last_write)); in emit_image_size() 686 …AluInstruction(op3_cnde_int, dest.reg_i(2), low_bit, comp, high_bit, EmitInstruction::last_write)); in emit_image_size()
|
D | sfn_liverange.cpp | 378 last_write(-1), in temp_comp_access() 447 last_write = line; in record_write() 627 if (last_write < 0) in get_required_live_range() 636 return make_live_range(first_write, last_write + 1); in get_required_live_range() 718 if (last_write >= last_read) in get_required_live_range() 719 last_read = last_write + 1; in get_required_live_range()
|
D | sfn_emitinstruction.h | 48 static const std::set<AluModifiers> last_write; variable
|
D | sfn_shader_compute.cpp | 92 emit_instruction(new AluInstruction(op1_mov, a_zero, Value::zero, EmitInstruction::last_write)); in emit_load_num_workgroups()
|
D | sfn_emitaluinstruction.cpp | 434 m_src[0][i], last_write); in emit_alu_trans_op1() 561 m_src[0][comp], last_write)); in emit_unpack_64_2x32_split() 720 ir = new AluInstruction(combine, v[0], v[0], v[2], last_write); in emit_any_all_icomp() 774 ir = new AluInstruction(op, v[0], v[0], Value::one_f, last_write); in emit_any_all_fcomp() 807 ir = new AluInstruction(op, v[0], v[0], v[1], last_write); in emit_any_all_fcomp2() 839 … ir = new AluInstruction(opcode, from_nir(instr.dest, i), m_src[0][i], m_src[1][i], last_write); in emit_alu_trans_op2()
|
D | sfn_emitinstruction.cpp | 160 const std::set<AluModifiers> EmitInstruction::last_write = {alu_write, alu_last_instr}; member in r600::EmitInstruction
|
D | sfn_liverange.h | 143 int last_write; variable
|
D | sfn_emittexinstruction.cpp | 252 emit_instruction(new AluInstruction(op1_mov, src.coord.reg_i(3), src.lod, {last_write})); in emit_tex_txl() 288 emit_instruction(new AluInstruction(op1_mov, src.coord.reg_i(3), src.bias, {last_write})); in emit_tex_txb() 344 auto alu = new AluInstruction(op1_mov, dst[2], src, {last_write}); in emit_tex_txs()
|
D | sfn_shader_fragment.cpp | 479 …ew AluInstruction(op2_lshl_int, dest, Value::one_i, m_sample_id_reg, EmitInstruction::last_write)); in emit_load_sample_mask_in() 480 …ction(new AluInstruction(op2_and_int, dest, dest, m_sample_mask_reg, EmitInstruction::last_write)); in emit_load_sample_mask_in()
|
D | sfn_shader_base.cpp | 785 … PValue(new InlineConstValue(ALU_SRC_TIME_HI, 0)), EmitInstruction::last_write)); in emit_shader_clock() 1079 EmitInstruction::last_write)); in from_nir_with_fetch_constant()
|
/third_party/alsa-utils/alsactl/ |
D | daemon.c | 363 time_t last_write, now; in state_daemon() local 377 time(&last_write); in state_daemon() 439 last_write = now; in state_daemon() 444 if ((now - last_write >= period && changed) || save_now) { in state_daemon()
|
/third_party/mesa3d/src/mesa/state_tracker/ |
D | st_glsl_to_tgsi_temprename.cpp | 173 int last_write; member in __anona72501850111::temp_comp_access 650 last_write(-1), in temp_comp_access() 718 last_write = line; in record_write() 898 if (last_write < 0) in get_required_live_range() 907 return make_live_range(first_write, last_write + 1); in get_required_live_range() 989 if (last_write >= last_read) in get_required_live_range() 990 last_read = last_write + 1; in get_required_live_range()
|
/third_party/mesa3d/src/panfrost/midgard/ |
D | midgard_schedule.c | 104 struct util_dynarray *last_write = calloc(sizeof(struct util_dynarray), sz); in mir_create_dependency_graph() local 108 util_dynarray_init(&last_write[i], NULL); in mir_create_dependency_graph() 134 add_dependency(last_write, src, readmask, instructions, i); in mir_create_dependency_graph() 171 add_dependency(last_write, dest, mask, instructions, i); in mir_create_dependency_graph() 172 mark_access(last_write, dest, mask, i); in mir_create_dependency_graph() 203 util_dynarray_fini(&last_write[i]); in mir_create_dependency_graph() 207 free(last_write); in mir_create_dependency_graph()
|
/third_party/mesa3d/src/panfrost/bifrost/ |
D | bi_schedule.c | 202 struct util_dynarray last_read[64], last_write[64]; in bi_create_dependency_graph() local 206 util_dynarray_init(&last_write[i], NULL); in bi_create_dependency_graph() 228 … add_dependency(last_write, ins->src[s].value + c, i, st.dependents, st.dep_counts); in bi_create_dependency_graph() 260 … add_dependency(last_write, dest + c, i, st.dependents, st.dep_counts); in bi_create_dependency_graph() 261 mark_access(last_write, dest + c, i); in bi_create_dependency_graph() 287 util_dynarray_fini(&last_write[i]); in bi_create_dependency_graph()
|
/third_party/e2fsprogs/doc/RelNotes/ |
D | v1.39.txt | 98 last_write fields.
|