Searched refs:else_branch (Results 1 – 15 of 15) sorted by relevance
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/ |
D | nir.c | 671 ppir_branch_node *else_branch, *after_branch; in ppir_emit_if() local 681 else_branch = ppir_node_to_branch(node); in ppir_emit_if() 682 ppir_node_add_src(block->comp, node, &else_branch->src[0], in ppir_emit_if() 684 else_branch->num_src = 1; in ppir_emit_if() 696 else_branch->negate = true; in ppir_emit_if() 697 list_addtail(&else_branch->node.list, &block->node_list); in ppir_emit_if() 706 else_branch->target = ppir_get_block(comp, nblock->successors[0]); in ppir_emit_if() 712 else_branch->target = ppir_get_block(comp, nir_if_first_else_block(if_stmt)); in ppir_emit_if()
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
D | sfn_liverangeevaluator_helpers.cpp | 157 scope_type == else_branch || in is_conditional() 164 if (scope_type == else_branch) in in_else_scope() 184 scope_type == else_branch) in in_ifelse_scope()
|
D | sfn_liverangeevaluator_helpers.h | 38 else_branch, /* Inside else branch */ enumerator
|
D | sfn_liverangeevaluator.cpp | 193 m_current_scope = create_scope(m_current_scope->parent(), else_branch, m_current_scope->id(), in scope_else()
|
/third_party/mesa3d/src/compiler/glsl/ |
D | ir_builder.cpp | 622 ir_instruction *else_branch) in if_tree() argument 625 assert(else_branch != NULL); in if_tree() 631 result->else_instructions.push_tail(else_branch); in if_tree()
|
D | ir_builder.h | 237 ir_instruction *else_branch);
|
/third_party/rust/crates/syn/src/ |
D | expr.rs | 486 pub else_branch: Option<(Token![else], Box<Expr>)>, 2174 else_branch: { in parse() 2190 let else_branch = if input.peek(Token![if]) { in else_block() localVariable 2202 Ok((else_token, Box::new(else_branch))) in else_block() 3160 maybe_wrap_else(tokens, &self.else_branch); in to_tokens()
|
/third_party/rust/crates/syn/src/gen/ |
D | clone.rs | 485 else_branch: self.else_branch.clone(), in clone()
|
D | eq.rs | 482 && self.else_branch == other.else_branch in eq()
|
D | fold.rs | 1343 else_branch: (node.else_branch) in fold_expr_if()
|
D | hash.rs | 711 self.else_branch.hash(state); in hash()
|
D | debug.rs | 799 formatter.field("else_branch", &self.else_branch); in fmt()
|
D | visit_mut.rs | 1463 if let Some(it) = &mut node.else_branch { in visit_expr_if_mut()
|
D | visit.rs | 1462 if let Some(it) = &node.else_branch { in visit_expr_if()
|
/third_party/rust/crates/syn/tests/debug/ |
D | gen.rs | 710 if let Some(val) = &_val.else_branch { in fmt() 1428 if let Some(val) = &_val.else_branch { in fmt()
|