Searched refs:is_gather (Results 1 – 9 of 9) sorted by relevance
/third_party/python/Tools/peg_generator/pegen/ |
D | python_generator.py | 161 is_gather = node.is_gather() 181 self.visit(rhs, is_loop=is_loop, is_gather=is_gather) 198 def visit_Rhs(self, node: Rhs, is_loop: bool = False, is_gather: bool = False) -> None: 202 self.visit(alt, is_loop=is_loop, is_gather=is_gather) 204 def visit_Alt(self, node: Alt, is_loop: bool, is_gather: bool) -> None: 219 if is_gather: 226 if is_gather:
|
D | c_generator.py | 166 type = "asdl_seq *" if rule.is_loop() or rule.is_gather() else rule.type 430 if rule.is_loop() or rule.is_gather(): 580 rhs, is_loop=False, is_gather=node.is_gather(), rulename=node.name, 613 rhs, is_loop=True, is_gather=node.is_gather(), rulename=node.name, 631 is_gather = node.is_gather() 633 if is_loop or is_gather: 665 self, node: Rhs, is_loop: bool, is_gather: bool, rulename: Optional[str] 670 self.visit(alt, is_loop=is_loop, is_gather=is_gather, rulename=rulename) 700 def emit_default_action(self, is_gather: bool, node: Alt) -> None: 702 if is_gather: [all …]
|
D | grammar.py | 84 def is_gather(self) -> bool: member in Rule
|
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_sample_soa.c | 320 boolean is_gather, in lp_build_sample_wrap_linear() argument 416 if (!is_gather) { in lp_build_sample_wrap_linear() 472 if (!is_gather) { in lp_build_sample_wrap_linear() 575 if (!is_gather) { in lp_build_sample_wrap_linear() 1010 boolean is_gather, in lp_build_sample_image_linear() argument 1045 if (is_gather) { in lp_build_sample_image_linear() 1086 lp_build_sample_wrap_linear(bld, is_gather, coords[0], width_vec, in lp_build_sample_image_linear() 1097 lp_build_sample_wrap_linear(bld, is_gather, coords[1], height_vec, in lp_build_sample_image_linear() 1108 lp_build_sample_wrap_linear(bld, is_gather, coords[2], depth_vec, in lp_build_sample_image_linear() 1361 assert(!is_gather); in lp_build_sample_image_linear() [all …]
|
/third_party/mesa3d/src/gallium/drivers/crocus/ |
D | crocus_program.c | 969 bool is_gather = devinfo->ver < 8 && tex->op == nir_texop_tg4; in crocus_setup_binding_table() local 979 if (is_gather && devinfo->ver == 6 && key->gfx6_gather_wa[tex->texture_index]) { in crocus_setup_binding_table() 994 …crocus_group_index_to_bti(bt, is_gather ? CROCUS_SURFACE_GROUP_TEXTURE_GATHER : CROCUS_SURFACE_GRO… in crocus_setup_binding_table()
|
/third_party/skia/third_party/externals/spirv-cross/ |
D | spirv_glsl.hpp | 402 bool is_fetch = false, is_gather = false, is_proj = false; member
|
D | spirv_msl.cpp | 9288 if (msl_options.swizzle_texture_samples && args.base.is_gather && !is_dynamic_img_sampler && in to_function_name() 9410 else if (args.base.is_gather) in to_function_name() 9469 msl_options.swizzle_texture_samples && args.base.is_gather) in to_function_args() 9484 msl_options.swizzle_texture_samples && args.base.is_gather) in to_function_args() 9963 bool is_gather = (op == OpImageGather || op == OpImageDrefGather); in to_texture_op() local 10021 else if (msl_options.swizzle_texture_samples && !is_gather && is_sampled_image_type(imgtype) && in to_texture_op() 10121 if (msl_options.swizzle_texture_samples && !is_gather && is_sampled_image_type(imgtype) && in to_texture_op()
|
D | spirv_glsl.cpp | 6772 base_args.is_gather = gather != 0; in to_texture_op() 6920 if (args.base.is_gather) in to_function_name() 6941 return (is_legacy() && !args.base.is_gather) ? legacy_tex_op(fname, imgtype, tex) : fname; in to_function_name() 7052 if (args.base.is_gather || in to_function_args()
|
/third_party/mesa3d/src/gallium/drivers/softpipe/ |
D | sp_tex_sample.c | 2786 const bool is_gather = (control == TGSI_SAMPLER_GATHER); in sample_compare() local 2814 for (v = 0; v < (is_gather ? TGSI_NUM_CHANNELS : 1); v++) { in sample_compare() 2866 if (is_gather) { in sample_compare()
|