Home | History | Annotate | Download | only in dmx

Lines Matching refs:over

52  * maintainability over efficiency.  For the common (non-edge) case, the
53 * dmxCursorOffScreen function does avoid a loop over all the screens.
67 * implementation has erred on the side of readability over efficiency,
230 /** Make one pass over all the screens and return the number updated. */
485 /** Iterate over the screens which overlap with the \a start screen,
494 if (!start->over) return f(start, closure);
496 for (pt = start->over; /* condition at end of loop */; pt = pt->over) {
525 dmxScreens[i].over = NULL;
532 if (b->over)
537 a->index, b->index, a, a->over, b, b->over);
538 b->over = (a->over ? a->over : a);
539 a->over = b;
547 if (!a->over)
551 for (pt = a->over; pt != a; pt = pt->over) {
553 /* The ->over sets contain the transitive set of screens
558 * ->over set. */
573 if (a->over) {
766 if (!start->over || !dmxCursorDoMultiCursors || start->cursorNotShared)
769 for (pt = start->over; /* condition at end of loop */; pt = pt->over) {
784 if (!start->over || !dmxCursorDoMultiCursors || start->cursorNotShared)
787 for (pt = start->over; /* condition at end of loop */; pt = pt->over) {
801 if (!start || !start->over)
803 for (pt = start->over; /* condition at end of loop */; pt = pt->over) {
817 * The coords (x,y) are in global coord space. We'll loop over the
828 if (!start->over || !dmxCursorDoMultiCursors || start->cursorNotShared) {
833 for (pt = start->over; /* condition at end of loop */; pt = pt->over) {
898 if (!start->over || !dmxCursorDoMultiCursors || start->cursorNotShared) {
903 for (pt = start->over; /* condition at end of loop */; pt = pt->over) {