Home | History | Annotate | Download | only in llvmpipe

Lines Matching refs:eo

408       __m128i eo, p0, p1, p2;
459 * Note eo cannot overflow even if dcdx/dcdy would already have
460 * 31 bits (which they shouldn't have). This is because eo
463 eo = _mm_sub_epi32(_mm_andnot_si128(dcdy_neg_mask, dcdy),
466 /* ei = _mm_sub_epi32(_mm_sub_epi32(dcdy, dcdx), eo); */
476 * a multiple of 128), and of course storing eo separately...
483 plane[0].eo = (uint32_t)_mm_cvtsi128_si32(eo);
485 eo = _mm_shuffle_epi32(eo, _MM_SHUFFLE(3,2,0,1));
486 plane[1].eo = (uint32_t)_mm_cvtsi128_si32(eo);
488 eo = _mm_shuffle_epi32(eo, _MM_SHUFFLE(0,0,0,2));
489 plane[2].eo = (uint32_t)_mm_cvtsi128_si32(eo);
510 __m128i eo, p0, p1, p2;
564 eo = vec_sub_epi32(vec_andnot_si128(dcdy_neg_mask, dcdy),
567 /* ei = _mm_sub_epi32(_mm_sub_epi32(dcdy, dcdx), eo); */
572 transpose4_epi32(&c, &dcdx, &dcdy, &eo,
580 plane.eo = temp_vec[3]; \
636 plane[i].eo = 0;
637 if (plane[i].dcdx < 0) plane[i].eo -= plane[i].dcdx;
638 if (plane[i].dcdy > 0) plane[i].eo += plane[i].dcdy;
647 plane[0].eo);
653 plane[1].eo);
659 plane[2].eo);
695 plane_s->eo = 1 << 8;
702 plane_s->eo = 0 << 8;
709 plane_s->eo = 1 << 8;
716 plane_s->eo = 0;
864 int64_t eo[MAX_PLANES];
881 (int64_t)plane[i].eo) << TILE_ORDER;
883 eo[i] = (int64_t)plane[i].eo << TILE_ORDER;
909 int64_t planeout = cx[i] + eo[i];