Home | History | Annotate | Download | only in gallivm

Lines Matching refs:tmp_type

343       struct lp_type tmp_type = src_type;
345 tmp_type.width *= 2;
346 tmp_type.length /= 2;
349 lp_build_unpack2(gallivm, src_type, tmp_type, dst[i], &dst[2*i + 0], &dst[2*i + 1]);
352 src_type = tmp_type;
572 struct lp_type tmp_type = src_type;
574 tmp_type.width /= 2;
575 tmp_type.length *= 2;
578 if(tmp_type.width == dst_type.width)
579 tmp_type.sign = dst_type.sign;
584 tmp[i] = pack2(gallivm, src_type, tmp_type,
587 src_type = tmp_type;