Searched refs:nir_ixor (Results 1 – 12 of 12) sorted by relevance
/external/mesa3d/src/compiler/nir/ |
D | nir_lower_idiv.c | 114 r = nir_ixor(bld, numer, denom); in convert_instr() 185 lhs = nir_ixor(bld, lhs, lh_sign); in emit_idiv() 186 rhs = nir_ixor(bld, rhs, rh_sign); in emit_idiv() 189 nir_ssa_def *d_sign = nir_ixor(bld, lh_sign, rh_sign); in emit_idiv() 191 res = nir_ixor(bld, res, d_sign); in emit_idiv() 195 res = nir_ixor(bld, res, lh_sign); in emit_idiv()
|
D | nir_lower_subgroups.c | 271 index = nir_ixor(b, index, intrin->src[1].ssa); in lower_shuffle() 299 index = nir_ixor(b, index, nir_imm_int(b, 0x1)); in lower_shuffle() 302 index = nir_ixor(b, index, nir_imm_int(b, 0x2)); in lower_shuffle() 305 index = nir_ixor(b, index, nir_imm_int(b, 0x3)); in lower_shuffle()
|
D | nir_lower_alu.c | 156 different_signs = nir_ixor(b, in lower_alu_instr()
|
D | nir_builtin_builder.c | 91 nir_bcsel(b, nir_ixor(b, conddir, nir_flt(b, x, zero)), xp, xn); in nir_nextafter()
|
D | nir_lower_int64.c | 162 return nir_pack_64_2x32_split(b, nir_ixor(b, x_lo, y_lo), in lower_ixor64() 163 nir_ixor(b, x_hi, y_hi)); in lower_ixor64()
|
/external/mesa3d/src/gallium/drivers/panfrost/nir/ |
D | nir_lower_blend.c | 189 return nir_ixor(b, src, dst); in nir_logicop_func() 195 return nir_inot(b, nir_ixor(b, src, dst)); in nir_logicop_func()
|
/external/mesa3d/src/broadcom/compiler/ |
D | v3d_nir_lower_logic_ops.c | 74 return nir_ixor(b, src, dst); in v3d_logicop() 80 return nir_inot(b, nir_ixor(b, src, dst)); in v3d_logicop()
|
/external/mesa3d/src/gallium/drivers/vc4/ |
D | vc4_nir_lower_blend.c | 397 return nir_ixor(b, src, dst); in vc4_logicop() 403 return nir_inot(b, nir_ixor(b, src, dst)); in vc4_logicop()
|
D | vc4_nir_lower_io.c | 121 temp = nir_ixor(b, vpm, nir_imm_int(b, 0x80808080)); in vc4_nir_get_vattr_channel_vpm()
|
/external/mesa3d/src/intel/compiler/ |
D | brw_nir_lower_image_load_store.c | 219 nir_ssa_def *bit = nir_iand(b, nir_ixor(b, shift0, shift1), in image_address() 221 addr = nir_ixor(b, addr, bit); in image_address()
|
/external/mesa3d/src/compiler/glsl/ |
D | glsl_to_nir.cpp | 2201 case ir_binop_bit_xor: result = nir_ixor(&b, srcs[0], srcs[1]); break; in visit() 2209 result = nir_ixor(&b, srcs[0], srcs[1]); in visit()
|
/external/mesa3d/prebuilt-intermediates/nir/ |
D | nir_builder_opcodes.h | 1394 nir_ixor(nir_builder *build, nir_ssa_def *src0, nir_ssa_def *src1) in nir_ixor() function
|