Home | History | Annotate | Download | only in effects

Lines Matching defs:tp

548         uint8_t*                tp = tmpBuffer.get();
556 w = boxBlur(sp, src.fRowBytes, tp, loRadius, hiRadius, w, h, false);
557 w = boxBlur(tp, w, dp, hiRadius, loRadius, w, h, false);
558 w = boxBlur(dp, w, tp, hiRadius, hiRadius, w, h, true);
560 h = boxBlur(tp, h, dp, loRadius, hiRadius, h, w, false);
561 h = boxBlur(dp, h, tp, hiRadius, loRadius, h, w, false);
562 h = boxBlur(tp, h, dp, hiRadius, hiRadius, h, w, true);
564 w = boxBlur(sp, src.fRowBytes, tp, rx, rx, w, h, true);
565 h = boxBlur(tp, h, dp, ry, ry, h, w, true);
570 w = boxBlurInterp(sp, src.fRowBytes, tp, rx, w, h, false, outerWeight);
571 w = boxBlurInterp(tp, w, dp, rx, w, h, false, outerWeight);
572 w = boxBlurInterp(dp, w, tp, rx, w, h, true, outerWeight);
574 h = boxBlurInterp(tp, h, dp, ry, h, w, false, outerWeight);
575 h = boxBlurInterp(dp, h, tp, ry, h, w, false, outerWeight);
576 h = boxBlurInterp(tp, h, dp, ry, h, w, true, outerWeight);
578 w = boxBlurInterp(sp, src.fRowBytes, tp, rx, w, h, true, outerWeight);
579 h = boxBlurInterp(tp, h, dp, ry, h, w, true, outerWeight);