Lines Matching defs:temp

62             const int temp = src[i];
63 dst[i] = temp - left;
64 left = temp;
74 const int temp = src16[i];
75 dst16[i] = temp - left;
76 left = temp;
412 const uint8_t *y = s->temp[0] + offset;
413 const uint8_t *u = s->temp[1] + offset / 2;
414 const uint8_t *v = s->temp[2] + offset / 2;
474 int y0 = s->temp[0][width-1];
490 int y0 = s->temp[0][2 * i];\
491 int y1 = s->temp[0][2 * i + 1];
636 int y0 = s->temp[0][2 * i];\
637 int y1 = s->temp[0][2 * i + 1];
681 int g = s->temp[0][planes == 3 ? 3 * i + 1 : 4 * i + G]; \
682 int b =(s->temp[0][planes == 3 ? 3 * i + 2 : 4 * i + B] - g) & 0xFF;\
683 int r =(s->temp[0][planes == 3 ? 3 * i + 0 : 4 * i + R] - g) & 0xFF;\
684 int a = s->temp[0][planes * i + A];
758 lefty = sub_left_prediction(s, s->temp[0], p->data[0], width , 0);
759 leftu = sub_left_prediction(s, s->temp[1], p->data[1], width2, 0);
760 leftv = sub_left_prediction(s, s->temp[2], p->data[2], width2, 0);
768 lefty = sub_left_prediction(s, s->temp[0], p->data[0] + p->linesize[0], width , lefty);
769 leftu = sub_left_prediction(s, s->temp[1], p->data[1] + p->linesize[1], width2, leftu);
770 leftv = sub_left_prediction(s, s->temp[2], p->data[2] + p->linesize[2], width2, leftv);
776 lefty = sub_left_prediction(s, s->temp[0], p->data[0] + fake_ystride, 4, lefty);
777 leftu = sub_left_prediction(s, s->temp[1], p->data[1] + fake_ustride, 2, leftu);
778 leftv = sub_left_prediction(s, s->temp[2], p->data[2] + fake_vstride, 2, leftv);
785 s->llvidencdsp.sub_median_pred(s->temp[0], p->data[0] + 4, p->data[0] + fake_ystride + 4, width - 4, &lefty, &lefttopy);
786 s->llvidencdsp.sub_median_pred(s->temp[1], p->data[1] + 2, p->data[1] + fake_ustride + 2, width2 - 2, &leftu, &lefttopu);
787 s->llvidencdsp.sub_median_pred(s->temp[2], p->data[2] + 2, p->data[2] + fake_vstride + 2, width2 - 2, &leftv, &lefttopv);
797 s->llvidencdsp.sub_median_pred(s->temp[0], ydst - fake_ystride, ydst, width, &lefty, &lefttopy);
807 s->llvidencdsp.sub_median_pred(s->temp[0], ydst - fake_ystride, ydst, width, &lefty, &lefttopy);
808 s->llvidencdsp.sub_median_pred(s->temp[1], udst - fake_ustride, udst, width2, &leftu, &lefttopu);
809 s->llvidencdsp.sub_median_pred(s->temp[2], vdst - fake_vstride, vdst, width2, &leftv, &lefttopv);
822 s->llvidencdsp.diff_bytes(s->temp[1], ydst, ydst - fake_ystride, width);
824 lefty = sub_left_prediction(s, s->temp[0], s->temp[1], width , lefty);
826 lefty = sub_left_prediction(s, s->temp[0], ydst, width , lefty);
838 s->llvidencdsp.diff_bytes(s->temp[1], ydst, ydst - fake_ystride, width);
839 s->llvidencdsp.diff_bytes(s->temp[2], udst, udst - fake_ustride, width2);
840 s->llvidencdsp.diff_bytes(s->temp[2] + width2, vdst, vdst - fake_vstride, width2);
842 lefty = sub_left_prediction(s, s->temp[0], s->temp[1], width , lefty);
843 leftu = sub_left_prediction(s, s->temp[1], s->temp[2], width2, leftu);
844 leftv = sub_left_prediction(s, s->temp[2], s->temp[2] + width2, width2, leftv);
846 lefty = sub_left_prediction(s, s->temp[0], ydst, width , lefty);
847 leftu = sub_left_prediction(s, s->temp[1], udst, width2, leftu);
848 leftv = sub_left_prediction(s, s->temp[2], vdst, width2, leftv);
866 sub_left_prediction_bgr32(s, s->temp[0], data + 4, width - 1,
873 s->llvidencdsp.diff_bytes(s->temp[1], dst, dst - fake_stride, width * 4);
874 sub_left_prediction_bgr32(s, s->temp[0], s->temp[1], width,
877 sub_left_prediction_bgr32(s, s->temp[0], dst, width,
894 sub_left_prediction_rgb24(s, s->temp[0], data + 3, width - 1,
901 s->llvidencdsp.diff_bytes(s->temp[1], dst, dst - fake_stride,
903 sub_left_prediction_rgb24(s, s->temp[0], s->temp[1], width,
906 sub_left_prediction_rgb24(s, s->temp[0], dst, width,
925 left = sub_left_prediction(s, s->temp[0], p->data[plane], w , 0);
933 left = sub_left_prediction(s, s->temp[0], p->data[plane] + p->linesize[plane], w , left);
944 sub_median_prediction(s, s->temp[0], dst - fake_stride, dst, w , &left, &lefttop);
953 diff_bytes(s, s->temp[1], dst, dst - fake_stride, w);
955 left = sub_left_prediction(s, s->temp[0], s->temp[1], w , left);
957 left = sub_left_prediction(s, s->temp[0], dst, w , left);