HomeSort by: relevance | last modified time | path
    Searched defs:odd (Results 1 - 9 of 9) sorted by relevancy

  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/d3d12/
d3d12_gs_variant.cpp 220 nir_ssa_def *odd = nir_build_alu(b, nir_op_imod, local
224 diagonal_vertex = nir_bcsel(b, nir_i2b(b, odd),
409 nir_ssa_def *odd = nir_imod(b, nir_load_primitive_id(b), nir_imm_int(b, 2)); local
410 incr = nir_isub(b, incr, odd);
  /xsrc/external/mit/MesaLib/src/panfrost/lib/genxml/
common_pack.h 56 unsigned odd = v >> (shift + 1); local
61 assert(odd <= 7);
65 return __gen_uint(shift | (odd << 5), start, end);
98 unsigned odd = val >> 5; local
100 return (2*odd + 1) << shift;
v4_pack.h 56 unsigned odd = v >> (shift + 1); local
61 assert(odd <= 7);
65 return __gen_uint(shift | (odd << 5), start, end);
98 unsigned odd = val >> 5; local
100 return (2*odd + 1) << shift;
v5_pack.h 56 unsigned odd = v >> (shift + 1); local
61 assert(odd <= 7);
65 return __gen_uint(shift | (odd << 5), start, end);
98 unsigned odd = val >> 5; local
100 return (2*odd + 1) << shift;
v6_pack.h 56 unsigned odd = v >> (shift + 1); local
61 assert(odd <= 7);
65 return __gen_uint(shift | (odd << 5), start, end);
98 unsigned odd = val >> 5; local
100 return (2*odd + 1) << shift;
v7_pack.h 56 unsigned odd = v >> (shift + 1); local
61 assert(odd <= 7);
65 return __gen_uint(shift | (odd << 5), start, end);
98 unsigned odd = val >> 5; local
100 return (2*odd + 1) << shift;
  /xsrc/external/mit/MesaLib/dist/src/amd/common/
ac_nir_lower_ngg.c 1427 /* gs_max_out_vertices = 2^(write_stride_2exp) * some odd number */
1597 * - bit 1: whether the primitive index is odd (if we are emitting triangle strips, otherwise always 0)
1605 nir_ssa_def *odd = nir_iand_imm(b, current_vtx_per_prim, 1); local
1606 prim_flag = nir_iadd_nuw(b, prim_flag, nir_ishl(b, odd, nir_imm_int(b, 1)));
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/
lp_bld_arit.c 3162 LLVMValueRef even = NULL, odd = NULL; local
3176 * Calculate odd and even terms seperately to decrease data dependency
3194 if (odd)
3195 odd = lp_build_mad(bld, x2, odd, coeff);
3197 odd = coeff;
3201 if (odd)
3202 return lp_build_mad(bld, odd, x, even);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/
lp_bld_arit.c 3247 LLVMValueRef even = NULL, odd = NULL; local
3261 * Calculate odd and even terms seperately to decrease data dependency
3279 if (odd)
3280 odd = lp_build_mad(bld, x2, odd, coeff);
3282 odd = coeff;
3286 if (odd)
3287 return lp_build_mad(bld, odd, x, even);

Completed in 724 milliseconds