Lines Matching defs:size2
913 u_int sx, sy, xoff, yoff, size1, size2, minimum;
960 * split, size1 is the size of the top/left and size2 the bottom/right.
967 size2 = ((saved_size + 1) / 2) - 1;
969 size2 = saved_size - size - 1;
971 size2 = size;
972 if (size2 < PANE_MINIMUM)
973 size2 = PANE_MINIMUM;
974 else if (size2 > saved_size - 2)
975 size2 = saved_size - 2;
976 size1 = saved_size - 1 - size2;
980 new_size = size2;
1062 * Set new cell sizes. size1 is the size of the top/left and size2 the
1067 layout_set_size(lc2, size2, sy, xoff + lc1->sx + 1, yoff);
1070 layout_set_size(lc2, sx, size2, xoff, yoff + lc1->sy + 1);