Lines Matching defs:big
180 RArea big = RAreaListBigArea(self->monitors), tmp;
191 // So we'll create an RArea that's the y and height of big (a giant
195 // minimally inside big somehow.
198 if((far_area->x >= big.x && far_area->x <= RAreaX2(&big))
199 || (RAreaX2(far_area) >= big.x && RAreaX2(far_area) <= RAreaX2(&big))) {
202 tmp = RAreaNew(far_area->x, big.y,
203 far_area->width, big.height);
205 else if(RAreaX2(far_area) < big.x) {
208 tmp = RAreaNew(big.x - far_area->width + 1, big.y,
209 far_area->width, big.height);
214 tmp = RAreaNew(RAreaX2(&big), big.y,
215 far_area->width, big.height);
265 RArea big = RAreaListBigArea(self->monitors), tmp;
275 // We create an RArea that's the x and width of big, so it always
279 if((far_area->y >= big.y && far_area->y <= RAreaY2(&big))
280 || (RAreaY2(far_area) >= big.y && RAreaY2(far_area) <= RAreaY2(&big))) {
283 tmp = RAreaNew(big.x, far_area->y,
284 big.width, far_area->height);
286 else if(RAreaY2(far_area) < big.y) {
289 tmp = RAreaNew(big.x, big.y - far_area->height + 1,
290 big.width, far_area->height);
295 tmp = RAreaNew(big.x, RAreaY2(&big),
296 big.width, far_area->height);