P_TOPRIGHT        611 libavcodec/motion_est.c             P_TOPRIGHT[0] = s->current_picture.motion_val[0][mot_xy - mot_stride + off[block]][0];
P_TOPRIGHT        612 libavcodec/motion_est.c             P_TOPRIGHT[1] = s->current_picture.motion_val[0][mot_xy - mot_stride + off[block]][1];
P_TOPRIGHT        614 libavcodec/motion_est.c             if(P_TOPRIGHT[0] < (c->xmin<<shift)) P_TOPRIGHT[0]= (c->xmin<<shift);
P_TOPRIGHT        615 libavcodec/motion_est.c             if(P_TOPRIGHT[0] > (c->xmax<<shift)) P_TOPRIGHT[0]= (c->xmax<<shift);
P_TOPRIGHT        616 libavcodec/motion_est.c             if(P_TOPRIGHT[1] > (c->ymax<<shift)) P_TOPRIGHT[1]= (c->ymax<<shift);
P_TOPRIGHT        618 libavcodec/motion_est.c             P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
P_TOPRIGHT        619 libavcodec/motion_est.c             P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
P_TOPRIGHT        785 libavcodec/motion_est.c                 P_TOPRIGHT[0] = mv_table[xy - mot_stride + 1][0];
P_TOPRIGHT        786 libavcodec/motion_est.c                 P_TOPRIGHT[1] = mv_table[xy - mot_stride + 1][1];
P_TOPRIGHT        788 libavcodec/motion_est.c                 if(P_TOPRIGHT[0] < (c->xmin<<1)) P_TOPRIGHT[0]= (c->xmin<<1);
P_TOPRIGHT        789 libavcodec/motion_est.c                 if(P_TOPRIGHT[0] > (c->xmax<<1)) P_TOPRIGHT[0]= (c->xmax<<1);
P_TOPRIGHT        790 libavcodec/motion_est.c                 if(P_TOPRIGHT[1] > (c->ymax<<1)) P_TOPRIGHT[1]= (c->ymax<<1);
P_TOPRIGHT        792 libavcodec/motion_est.c                 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
P_TOPRIGHT        793 libavcodec/motion_est.c                 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
P_TOPRIGHT        935 libavcodec/motion_est.c             P_TOPRIGHT[0] = s->current_picture.motion_val[0][mot_xy - mot_stride + 2][0];
P_TOPRIGHT        936 libavcodec/motion_est.c             P_TOPRIGHT[1] = s->current_picture.motion_val[0][mot_xy - mot_stride + 2][1];
P_TOPRIGHT        939 libavcodec/motion_est.c             if (P_TOPRIGHT[0] < (c->xmin * (1 << shift)))
P_TOPRIGHT        940 libavcodec/motion_est.c                 P_TOPRIGHT[0] =  c->xmin * (1 << shift);
P_TOPRIGHT        941 libavcodec/motion_est.c             if (P_TOPRIGHT[1] > (c->ymax * (1 << shift)))
P_TOPRIGHT        942 libavcodec/motion_est.c                 P_TOPRIGHT[1] =  c->ymax * (1 << shift);
P_TOPRIGHT        944 libavcodec/motion_est.c             P_MEDIAN[0] = mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
P_TOPRIGHT        945 libavcodec/motion_est.c             P_MEDIAN[1] = mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
P_TOPRIGHT       1088 libavcodec/motion_est.c         P_TOP[0]= P_TOPRIGHT[0]= P_MEDIAN[0]=
P_TOPRIGHT       1089 libavcodec/motion_est.c         P_TOP[1]= P_TOPRIGHT[1]= P_MEDIAN[1]= 0; //FIXME
P_TOPRIGHT       1093 libavcodec/motion_est.c         P_TOPRIGHT[0] = s->p_mv_table[xy + s->mb_stride - 1][0];
P_TOPRIGHT       1094 libavcodec/motion_est.c         P_TOPRIGHT[1] = s->p_mv_table[xy + s->mb_stride - 1][1];
P_TOPRIGHT       1096 libavcodec/motion_est.c         if(P_TOPRIGHT[0] > (c->xmax<<shift)) P_TOPRIGHT[0]= (c->xmax<<shift);
P_TOPRIGHT       1097 libavcodec/motion_est.c         if(P_TOPRIGHT[1] < (c->ymin<<shift)) P_TOPRIGHT[1]= (c->ymin<<shift);
P_TOPRIGHT       1099 libavcodec/motion_est.c         P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
P_TOPRIGHT       1100 libavcodec/motion_est.c         P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
P_TOPRIGHT       1143 libavcodec/motion_est.c             P_TOPRIGHT[0] = mv_table[mot_xy - mot_stride + 1][0];
P_TOPRIGHT       1144 libavcodec/motion_est.c             P_TOPRIGHT[1] = mv_table[mot_xy - mot_stride + 1][1];
P_TOPRIGHT       1146 libavcodec/motion_est.c             if (P_TOPRIGHT[0] < (c->xmin << shift)) P_TOPRIGHT[0] = (c->xmin << shift);
P_TOPRIGHT       1147 libavcodec/motion_est.c             if (P_TOPRIGHT[1] > (c->ymax << shift)) P_TOPRIGHT[1] = (c->ymax << shift);
P_TOPRIGHT       1149 libavcodec/motion_est.c             P_MEDIAN[0] = mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
P_TOPRIGHT       1150 libavcodec/motion_est.c             P_MEDIAN[1] = mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
P_TOPRIGHT       1464 libavcodec/motion_est.c         P_TOPRIGHT[0] = av_clip(mv_table[mot_xy - mot_stride + 1         ][0], xmin<<shift, xmax<<shift);
P_TOPRIGHT       1465 libavcodec/motion_est.c         P_TOPRIGHT[1] = av_clip(mv_table[mot_xy - mot_stride + 1         ][1], ymin<<shift, ymax<<shift);
P_TOPRIGHT       1467 libavcodec/motion_est.c         P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
P_TOPRIGHT       1468 libavcodec/motion_est.c         P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
P_TOPRIGHT        911 libavcodec/motion_est_template.c                         |P_TOPRIGHT[0]|P_TOPRIGHT[1])==0){
P_TOPRIGHT        926 libavcodec/motion_est_template.c         CHECK_MV(P_TOPRIGHT[0]>>shift, P_TOPRIGHT[1]>>shift)
P_TOPRIGHT       1029 libavcodec/motion_est_template.c         CHECK_MV(P_TOPRIGHT[0]>>shift, P_TOPRIGHT[1]>>shift)
P_TOPRIGHT        285 libavcodec/snowenc.c     P_TOPRIGHT[0]= tr->mx;
P_TOPRIGHT        286 libavcodec/snowenc.c     P_TOPRIGHT[1]= tr->my;
P_TOPRIGHT        317 libavcodec/snowenc.c     if(P_TOPRIGHT[0] < (c->xmin * (1<<shift))) P_TOPRIGHT[0]= (c->xmin * (1<<shift));
P_TOPRIGHT        318 libavcodec/snowenc.c     if(P_TOPRIGHT[0] > (c->xmax<<shift)) P_TOPRIGHT[0]= (c->xmax<<shift); //due to pmx no clip
P_TOPRIGHT        319 libavcodec/snowenc.c     if(P_TOPRIGHT[1] > (c->ymax<<shift)) P_TOPRIGHT[1]= (c->ymax<<shift);
P_TOPRIGHT        321 libavcodec/snowenc.c     P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
P_TOPRIGHT        322 libavcodec/snowenc.c     P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);