Lines Matching refs:fR
436 clip.fR = (t * next_ccw(v.fR) + (1.f - t) * v.fR);
463 v.fR = if_then_else(validW, v.fR,
464 if_then_else((!ccwValid) & (!cwValid), next_ccw(clip.fR),
465 if_then_else(ccwValid, clip.fR, /* cwValid */ next_cw(clip.fR))));
482 mid.fR = 0.5f * (v.fR + next_ccw(v.fR));
499 v2.fR = if_then_else((!validW) | (!ccwValid), clip.fR,
500 if_then_else(cwValid, next_cw(mid.fR), v.fR));
521 v.fR = if_then_else(!validW, next_cw(clip.fR),
522 if_then_else(!cwValid, mid.fR, v.fR));
941 fR = localQuad->w4f();
964 fR.store(localOut->ws());
998 V4f dr = next_ccw(fR) - fR;
999 fR += signedOutsetsCW * next_cw(dr) + signedOutsets * dr;
1092 V4f e1r = skvx::shuffle<2, 3, 2, 3>(fR) - skvx::shuffle<0, 1, 0, 1>(fR);
1097 V4f e2r = skvx::shuffle<1, 1, 3, 3>(fR) - skvx::shuffle<0, 0, 2, 2>(fR);
1103 fR += a * e1r + b * e2r;
1104 correct_bad_coords(abs(denom) < kTolerance, &fU, &fV, &fR);