Searched refs:next_if (Results 1 - 9 of 9) sorted by relevance
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_opt_if.c | 1526 nir_if *next_if = nir_block_get_following_if(next_blk); in opt_if_merge() 1527 if (!next_if || !next_if->condition.is_ssa) in opt_if_merge() 1548 if (nif->condition.ssa == next_if->condition.ssa && in opt_if_merge() 1558 simple_merge_if(nif, next_if, true, true); in opt_if_merge() 1559 simple_merge_if(nif, next_if, false, false); in opt_if_merge() 1564 nir_block *old_then_block = nir_if_last_then_block(next_if); in opt_if_merge() 1565 nir_block *old_else_block = nir_if_last_else_block(next_if); in opt_if_merge() 1570 rewrite_phi_predecessor_blocks(next_if, old_then_block, in opt_if_merge() 1579 nir_cf_node_as_block(nir_cf_node_next(&next_if in opt_if_merge() [all...] |
H A D | nir_control_flow.c | 302 nir_if *next_if = nir_cf_node_as_if(next); in block_add_normal_succs() local 304 nir_block *first_then_block = nir_if_first_then_block(next_if); in block_add_normal_succs() 305 nir_block *first_else_block = nir_if_first_else_block(next_if); in block_add_normal_succs()
|
/third_party/rust/crates/peeking_take_while/src/ |
H A D | lib.rs | 144 self.iter.next_if(&mut self.predicate) in fmt() 158 while let Some(x) = self.iter.next_if(&mut self.predicate) { in fmt()
|
/third_party/jinja2/ |
H A D | lexer.py | 365 def next_if(self, expr: str) -> t.Optional[Token]: member in TokenStream 375 """Like :meth:`next_if` but only returns `True` or `False`.""" 376 return self.next_if(expr) is not None
|
H A D | ext.py | 359 context_token = parser.stream.next_if("string")
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | lexer.py | 366 def next_if(self, expr): member in TokenStream 374 """Like :meth:`next_if` but only returns `True` or `False`.""" 375 return self.next_if(expr) is not None
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | lexer.py | 338 def next_if(self, expr): member in TokenStream 346 """Like :meth:`next_if` but only returns `True` or `False`.""" 347 return self.next_if(expr) is not None
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | lexer.py | 366 def next_if(self, expr): member in TokenStream 374 """Like :meth:`next_if` but only returns `True` or `False`.""" 375 return self.next_if(expr) is not None
|
/third_party/mesa3d/src/mesa/state_tracker/ |
H A D | st_draw_hw_select.c | 300 nir_if *next_if = nir_push_if(b, nir_flt(b, nir_imm_float(b, 0), dn)); in clip_with_plane() local 321 nir_pop_if(b, next_if); in clip_with_plane()
|
Completed in 12 milliseconds