Home
last modified time | relevance | path

Searched refs:new_if (Results 1 – 2 of 2) sorted by relevance

/third_party/mesa3d/src/compiler/glsl/
Dir_clone.cpp122 ir_if *new_if = new(mem_ctx) ir_if(this->condition->clone(mem_ctx, ht)); in clone() local
125 new_if->then_instructions.push_tail(ir->clone(mem_ctx, ht)); in clone()
129 new_if->else_instructions.push_tail(ir->clone(mem_ctx, ht)); in clone()
132 return new_if; in clone()
/third_party/gstreamer/gstplugins_good/gst/goom/
Dgoomsl_yacc.y843 static NodeType *new_if(NodeType *expression, NodeType *instr) { /* {{{ */ in new_if() function
1347 | '(' test ')' '?' opt_nl instruction { $$ = new_if($2,$6); }