Home
last modified time | relevance | path

Searched refs:then_branch (Results 1 – 13 of 13) sorted by relevance

/third_party/mesa3d/src/compiler/glsl/
Dir_builder.cpp608 ir_instruction *then_branch) in if_tree() argument
610 assert(then_branch != NULL); in if_tree()
615 result->then_instructions.push_tail(then_branch); in if_tree()
621 ir_instruction *then_branch, in if_tree() argument
624 assert(then_branch != NULL); in if_tree()
630 result->then_instructions.push_tail(then_branch); in if_tree()
Dir_builder.h234 ir_instruction *then_branch);
236 ir_instruction *then_branch,
/third_party/mesa3d/src/panfrost/midgard/
Dmidgard_compile.c2919 midgard_instruction *then_branch = mir_last_in_block(ctx->current_block); in emit_if() local
2920 then_branch->src[0] = mir_get_branch_cond(&nif->condition, &inv); in emit_if()
2921 then_branch->src_types[0] = nir_type_uint32; in emit_if()
2922 then_branch->branch.invert_conditional = !inv; in emit_if()
2948 then_branch->branch.target_block = after_else_idx; in emit_if()
2950 then_branch->branch.target_block = else_idx; in emit_if()
/third_party/rust/crates/syn/src/
Dexpr.rs485 pub then_branch: Block,
2173 then_branch: input.parse()?, in parse()
3159 self.then_branch.to_tokens(tokens); in to_tokens()
/third_party/mesa3d/src/panfrost/bifrost/
Dbifrost_compile.c3938 bi_instr *then_branch = bi_branchz_i16(&_b, in emit_if() local
3959 then_branch->branch_target = ctx->after_block; in emit_if()
3962 then_branch->branch_target = else_block; in emit_if()
3973 bi_block_add_successor(before_block, then_branch->branch_target); /* then_branch */ in emit_if()
/third_party/rust/crates/syn/src/gen/
Dclone.rs484 then_branch: self.then_branch.clone(), in clone()
Deq.rs481 && self.then_branch == other.then_branch in eq()
Dfold.rs1342 then_branch: f.fold_block(node.then_branch), in fold_expr_if()
Dhash.rs710 self.then_branch.hash(state); in hash()
Ddebug.rs798 formatter.field("then_branch", &self.then_branch); in fmt()
Dvisit_mut.rs1462 v.visit_block_mut(&mut node.then_branch); in visit_expr_if_mut()
Dvisit.rs1461 v.visit_block(&node.then_branch); in visit_expr_if()
/third_party/rust/crates/syn/tests/debug/
Dgen.rs709 formatter.field("then_branch", Lite(&_val.then_branch)); in fmt()
1427 formatter.field("then_branch", Lite(&_val.then_branch)); in fmt()