/external/python/cpython3/Tools/peg_generator/pegen/ |
D | python_generator.py | 161 is_loop = node.is_loop() 180 if is_loop: 182 self.visit(rhs, is_loop=is_loop, is_gather=is_gather) 183 if is_loop: 199 def visit_Rhs(self, node: Rhs, is_loop: bool = False, is_gather: bool = False) -> None: 200 if is_loop: 203 self.visit(alt, is_loop=is_loop, is_gather=is_gather) 205 def visit_Alt(self, node: Alt, is_loop: bool, is_gather: bool) -> None: 208 if is_loop: 234 if is_loop:
|
D | c_generator.py | 157 type = "asdl_seq *" if rule.is_loop() or rule.is_gather() else rule.type 395 if rule.is_loop() or rule.is_gather(): 533 rhs, is_loop=False, is_gather=node.is_gather(), rulename=node.name, 566 rhs, is_loop=True, is_gather=node.is_gather(), rulename=node.name, 583 is_loop = node.is_loop() 586 if is_loop or is_gather: 605 if is_loop: 618 self, node: Rhs, is_loop: bool, is_gather: bool, rulename: Optional[str] 620 if is_loop: 623 self.visit(alt, is_loop=is_loop, is_gather=is_gather, rulename=rulename) [all …]
|
D | grammar.py | 81 def is_loop(self) -> bool: member in Rule 119 not self.is_loop()
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
D | r3xx_vertprog_dump.c | 193 unsigned is_loop = 0; in r300_vertex_program_dump() local 197 case 2: fprintf(stderr, "LOOP"); is_loop = 1; break; in r300_vertex_program_dump() 206 if (is_loop) { in r300_vertex_program_dump()
|
/external/crosvm/devices/src/ |
D | serial.rs | 116 if !c.is_empty() && !self.is_loop() { in queue_input_bytes() 226 fn is_loop(&self) -> bool { in is_loop() method 283 if self.is_loop() { in handle_write() 351 if self.is_loop() { in read()
|
/external/mesa3d/src/gallium/drivers/r600/sfn/ |
D | sfn_liverange.cpp | 104 bool prog_scope::is_loop() const in is_loop() function in r600::prog_scope 684 if (last_read_scope->is_loop()) in get_required_live_range() 693 if (keep_for_full_loop && first_write_scope->is_loop()) in get_required_live_range() 710 if (keep_for_full_loop && first_write_scope->is_loop()) in get_required_live_range()
|
D | sfn_liverange.h | 85 bool is_loop() const;
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_glsl_to_tgsi_temprename.cpp | 114 bool is_loop() const; 311 bool prog_scope::is_loop() const in is_loop() function in __anona9d7d0190111::prog_scope 955 if (last_read_scope->is_loop()) in get_required_live_range() 964 if (keep_for_full_loop && first_write_scope->is_loop()) in get_required_live_range() 981 if (keep_for_full_loop && first_write_scope->is_loop()) in get_required_live_range()
|
/external/mesa3d/src/gallium/drivers/r600/sb/ |
D | sb_bc_finalize.cpp | 64 bool loop = r->is_loop(); in run() 220 if (dep1->target != r && dep1->target->is_loop()) in finalize_if() 226 if (rep1->target != r && rep1->target->is_loop()) in finalize_if() 901 if (r->is_loop()) { in get_stack_depth()
|
D | sb_ir.cpp | 473 if(r->is_loop()) in collect_stats()
|
D | sb_shader.cpp | 549 loop = static_cast<region_node*>(k)->is_loop(); in create_bbs()
|
D | sb_ir.h | 1141 bool is_loop() { return src_loop || !repeats.empty(); } in is_loop() function
|
/external/libaom/libaom/test/ |
D | quantize_func_test.cc | 109 void QuantizeRun(bool is_loop, int q = 0, int test_num = 1) { in QuantizeRun() argument 140 if (is_loop) FillCoeffRandom(); in QuantizeRun()
|