Home
last modified time | relevance | path

Searched refs:else_branch (Results 1 – 15 of 15) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/
Dnir.c671 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/
Dsfn_liverangeevaluator_helpers.cpp157 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()
Dsfn_liverangeevaluator_helpers.h38 else_branch, /* Inside else branch */ enumerator
Dsfn_liverangeevaluator.cpp193 m_current_scope = create_scope(m_current_scope->parent(), else_branch, m_current_scope->id(), in scope_else()
/third_party/mesa3d/src/compiler/glsl/
Dir_builder.cpp622 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()
Dir_builder.h237 ir_instruction *else_branch);
/third_party/rust/crates/syn/src/
Dexpr.rs486 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/
Dclone.rs485 else_branch: self.else_branch.clone(), in clone()
Deq.rs482 && self.else_branch == other.else_branch in eq()
Dfold.rs1343 else_branch: (node.else_branch) in fold_expr_if()
Dhash.rs711 self.else_branch.hash(state); in hash()
Ddebug.rs799 formatter.field("else_branch", &self.else_branch); in fmt()
Dvisit_mut.rs1463 if let Some(it) = &mut node.else_branch { in visit_expr_if_mut()
Dvisit.rs1462 if let Some(it) = &node.else_branch { in visit_expr_if()
/third_party/rust/crates/syn/tests/debug/
Dgen.rs710 if let Some(val) = &_val.else_branch { in fmt()
1428 if let Some(val) = &_val.else_branch { in fmt()