Lines Matching refs:rp_dst
1339 \param rp_dst Pointer to edge padding values for dst.
1342 int brinfo_overlap(const BR_INFO *bri, int dst, int src, RT_PAD *rp_dst, RT_PAD *rp_src){
1346 if(!bri || !rp_dst || !rp_src)return(2);
1353 ((br_dst->xur + rp_dst->right) < (br_src->xll - rp_src->left) ) || /* dst fully to the left */
1354 ((br_dst->xll - rp_dst->left) > (br_src->xur + rp_src->right) ) || /* dst fully to the right */
1355 ((br_dst->yur - rp_dst->up) > (br_src->yll + rp_src->down) ) || /* dst fully below (Y is positive DOWN) */
1356 ((br_dst->yll + rp_dst->down) < (br_src->yur - rp_src->up) ) /* dst fully above (Y is positive DOWN) */
1367 (br_src->xll >= br_dst->xur - rp_dst->right) || /* src overlaps just a little on the right (L->R language) */
1368 (br_src->xur <= br_dst->xll + rp_dst->left) /* src overlaps just a little on the left (R->L language) */
1379 (br_dst->xll - rp_dst->left ),
1380 (br_dst->yll - rp_dst->down ),
1381 (br_dst->xur + rp_dst->right),
1382 (br_dst->yur + rp_dst->up ),
1397 (rp_dst->left),
1398 (rp_dst->down),
1399 (rp_dst->right),
1400 (rp_dst->up),