Home
last modified time | relevance | path

Searched refs:is_gather (Results 1 - 11 of 11) sorted by relevance

/third_party/python/Tools/peg_generator/pegen/
H A Dc_generator.py175 type = "asdl_seq *" if rule.is_loop() or rule.is_gather() else rule.type
449 if rule.is_loop() or rule.is_gather():
596 is_gather=node.is_gather(),
633 is_gather=node.is_gather(),
652 is_gather = node.is_gather()
654 if is_loop or is_gather:
697 self, node: Rhs, is_loop: bool, is_gather
[all...]
H A Dpython_generator.py249 is_gather = node.is_gather()
270 self.visit(rhs, is_loop=is_loop, is_gather=is_gather)
287 def visit_Rhs(self, node: Rhs, is_loop: bool = False, is_gather: bool = False) -> None:
291 self.visit(alt, is_loop=is_loop, is_gather=is_gather)
293 def visit_Alt(self, node: Alt, is_loop: bool, is_gather: bool) -> None:
310 if is_gather:
317 if is_gather
[all...]
H A Dgrammar.py81 def is_gather(self) -> bool: member in Rule
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_sample_soa.c320 boolean is_gather, in lp_build_sample_wrap_linear()
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()
1045 if (is_gather) { in lp_build_sample_image_linear()
1088 lp_build_sample_wrap_linear(bld, is_gather, coords[0], width_vec, in lp_build_sample_image_linear()
1099 lp_build_sample_wrap_linear(bld, is_gather, coords[1], height_vec, in lp_build_sample_image_linear()
1110 lp_build_sample_wrap_linear(bld, is_gather, coords[2], depth_vec, in lp_build_sample_image_linear()
1362 assert(!is_gather); in lp_build_sample_image_linear()
319 lp_build_sample_wrap_linear(struct lp_build_sample_context *bld, boolean is_gather, LLVMValueRef coord, LLVMValueRef length, LLVMValueRef length_f, LLVMValueRef offset, boolean is_pot, unsigned wrap_mode, LLVMValueRef *x0_out, LLVMValueRef *x1_out, LLVMValueRef *weight_out) lp_build_sample_wrap_linear() argument
1009 lp_build_sample_image_linear(struct lp_build_sample_context *bld, boolean is_gather, LLVMValueRef size, LLVMValueRef linear_mask, LLVMValueRef row_stride_vec, LLVMValueRef img_stride_vec, LLVMValueRef data_ptr, LLVMValueRef mipoffsets, const LLVMValueRef *coords, const LLVMValueRef *offsets, LLVMValueRef colors_out[4]) lp_build_sample_image_linear() argument
1783 lp_build_sample_mipmap(struct lp_build_sample_context *bld, unsigned img_filter, unsigned mip_filter, boolean is_gather, const LLVMValueRef *coords, const LLVMValueRef *offsets, LLVMValueRef ilevel0, LLVMValueRef ilevel1, LLVMValueRef lod_fpart, LLVMValueRef *colors_out) lp_build_sample_mipmap() argument
2074 lp_build_sample_aniso(struct lp_build_sample_context *bld, unsigned img_filter, unsigned mip_filter, boolean is_gather, const LLVMValueRef *coords, const LLVMValueRef *offsets, LLVMValueRef ilevel0, LLVMValueRef ilevel1, LLVMValueRef lod_fpart, LLVMValueRef *colors_out) lp_build_sample_aniso() argument
2933 lp_build_sample_general(struct lp_build_sample_context *bld, unsigned sampler_unit, boolean is_gather, const LLVMValueRef *coords, const LLVMValueRef *offsets, LLVMValueRef lod_positive, LLVMValueRef lod_fpart, LLVMValueRef ilevel0, LLVMValueRef ilevel1, LLVMValueRef *colors_out) lp_build_sample_general() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
H A Dsfn_instr_tex.h153 static bool is_gather(Opcode op);
H A Dsfn_instr_tex.cpp157 if (m_inst_mode || is_gather(m_opcode)) in do_print()
231 bool TexInstr::is_gather(Opcode op) in is_gather() function in r600::TexInstr
/third_party/mesa3d/src/gallium/drivers/crocus/
H A Dcrocus_program.c974 bool is_gather = devinfo->ver < 8 && tex->op == nir_texop_tg4; in crocus_setup_binding_table() local
984 if (is_gather && devinfo->ver == 6 && key->gfx6_gather_wa[tex->texture_index]) { in crocus_setup_binding_table()
999 crocus_group_index_to_bti(bt, is_gather ? CROCUS_SURFACE_GROUP_TEXTURE_GATHER : CROCUS_SURFACE_GROUP_TEXTURE, in crocus_setup_binding_table()
/third_party/skia/third_party/externals/spirv-cross/
H A Dspirv_glsl.hpp402 bool is_fetch = false, is_gather = false, is_proj = false; member
H A Dspirv_msl.cpp9288 if (msl_options.swizzle_texture_samples && args.base.is_gather && !is_dynamic_img_sampler &&
9410 else if (args.base.is_gather)
9469 msl_options.swizzle_texture_samples && args.base.is_gather)
9484 msl_options.swizzle_texture_samples && args.base.is_gather)
9963 bool is_gather = (op == OpImageGather || op == OpImageDrefGather);
10021 else if (msl_options.swizzle_texture_samples && !is_gather && is_sampled_image_type(imgtype) &&
10121 if (msl_options.swizzle_texture_samples && !is_gather && is_sampled_image_type(imgtype) &&
H A Dspirv_glsl.cpp6772 base_args.is_gather = gather != 0;
6920 if (args.base.is_gather)
6941 return (is_legacy() && !args.base.is_gather) ? legacy_tex_op(fname, imgtype, tex) : fname;
7052 if (args.base.is_gather ||
/third_party/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_tex_sample.c2786 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()

Completed in 50 milliseconds