max               102 lib/intprops-internal.h #define _GL_INT_NEGATE_RANGE_OVERFLOW(a, min, max) \
max               103 lib/intprops-internal.h   ((min) < 0 ? (a) < - (max) : 0 < (a))
max               114 lib/intprops.h #define INT_ADD_RANGE_OVERFLOW(a, b, min, max)          \
max               117 lib/intprops.h    : (max) - (b) < (a))
max               121 lib/intprops.h #define INT_SUBTRACT_RANGE_OVERFLOW(a, b, min, max)     \
max               123 lib/intprops.h    ? (max) + (b) < (a)                                  \
max               128 lib/intprops.h #define INT_NEGATE_RANGE_OVERFLOW(a, min, max)          \
max               129 lib/intprops.h   _GL_INT_NEGATE_RANGE_OVERFLOW (a, min, max)
max               135 lib/intprops.h #define INT_MULTIPLY_RANGE_OVERFLOW(a, b, min, max)     \
max               138 lib/intprops.h       ? (a) < (max) / (b)                               \
max               146 lib/intprops.h       : (max) / (b) < (a)))
max               150 lib/intprops.h #define INT_DIVIDE_RANGE_OVERFLOW(a, b, min, max)       \
max               151 lib/intprops.h   ((min) < 0 && (b) == -1 && (a) < - (max))
max               158 lib/intprops.h #define INT_REMAINDER_RANGE_OVERFLOW(a, b, min, max)    \
max               159 lib/intprops.h   INT_DIVIDE_RANGE_OVERFLOW (a, b, min, max)
max               168 lib/intprops.h #define INT_LEFT_SHIFT_RANGE_OVERFLOW(a, b, min, max)   \
max               171 lib/intprops.h    : (max) >> (b) < (a))
max               178 lib/intprops.h # define _GL_ADD_OVERFLOW(a, b, min, max)                               \
max               180 lib/intprops.h # define _GL_SUBTRACT_OVERFLOW(a, b, min, max)                          \
max               182 lib/intprops.h # define _GL_MULTIPLY_OVERFLOW(a, b, min, max)                          \
max               185 lib/intprops.h # define _GL_ADD_OVERFLOW(a, b, min, max)                                \
max               186 lib/intprops.h    ((min) < 0 ? INT_ADD_RANGE_OVERFLOW (a, b, min, max)                  \
max               190 lib/intprops.h # define _GL_SUBTRACT_OVERFLOW(a, b, min, max)                           \
max               191 lib/intprops.h    ((min) < 0 ? INT_SUBTRACT_RANGE_OVERFLOW (a, b, min, max)             \
max               195 lib/intprops.h # define _GL_MULTIPLY_OVERFLOW(a, b, min, max)                           \
max               197 lib/intprops.h     || INT_MULTIPLY_RANGE_OVERFLOW (a, b, min, max))
max               199 lib/intprops.h #define _GL_DIVIDE_OVERFLOW(a, b, min, max)                             \
max               200 lib/intprops.h   ((min) < 0 ? (b) == _GL_INT_NEGATE_CONVERT (min, 1) && (a) < - (max)  \
max               203 lib/intprops.h #define _GL_REMAINDER_OVERFLOW(a, b, min, max)                          \
max               204 lib/intprops.h   ((min) < 0 ? (b) == _GL_INT_NEGATE_CONVERT (min, 1) && (a) < - (max)  \
max               205 lib/intprops.h    : (a) < 0 ? (a) % (b) != ((max) - (b) + 1) % (b)                     \
max               206 lib/intprops.h    : (b) < 0 && ! _GL_UNSIGNED_NEG_MULTIPLE (a, b, max))
max               212 lib/intprops.h #define _GL_UNSIGNED_NEG_MULTIPLE(a, b, max)                            \
max               214 lib/intprops.h     ? (_GL_SIGNED_INT_MAXIMUM (b) == (max)                              \
max                81 lib/widget/gauge.c             int total = g->max;
max               131 lib/widget/gauge.c gauge_new (int y, int x, int cols, gboolean shown, int max, int current)
max               142 lib/widget/gauge.c     if (max == 0)
max               143 lib/widget/gauge.c         max = 1;                /* I do not like division by zero :) */
max               144 lib/widget/gauge.c     g->max = max;
max               154 lib/widget/gauge.c gauge_set_value (WGauge *g, int max, int current)
max               156 lib/widget/gauge.c     if (g->current == current && g->max == max)
max               159 lib/widget/gauge.c     if (max == 0)
max               160 lib/widget/gauge.c         max = 1;                /* I do not like division by zero :) */
max               162 lib/widget/gauge.c     g->max = max;
max                21 lib/widget/gauge.h     int max;
max                30 lib/widget/gauge.h WGauge *gauge_new (int y, int x, int cols, gboolean shown, int max, int current);
max                31 lib/widget/gauge.h void gauge_set_value (WGauge * g, int max, int current);
max               655 src/filemanager/find.c     cw = max (cw, str_term_width1 (file_recurs_label) + 4);
max               656 src/filemanager/find.c     cw = max (cw, str_term_width1 (file_follow_symlinks) + 4);
max               657 src/filemanager/find.c     cw = max (cw, str_term_width1 (file_pattern_label) + 4);
max               659 src/filemanager/find.c     cw = max (cw, str_term_width1 (file_all_charsets_label) + 4);
max               661 src/filemanager/find.c     cw = max (cw, str_term_width1 (file_case_label) + 4);
max               662 src/filemanager/find.c     cw = max (cw, str_term_width1 (file_skip_hidden_label) + 4);
max               664 src/filemanager/find.c     cw = max (cw, str_term_width1 (content_content_label) + 4);
max               665 src/filemanager/find.c     cw = max (cw, str_term_width1 (content_use_label) + 4);
max               666 src/filemanager/find.c     cw = max (cw, str_term_width1 (content_regexp_label) + 4);
max               667 src/filemanager/find.c     cw = max (cw, str_term_width1 (content_case_label) + 4);
max               669 src/filemanager/find.c     cw = max (cw, str_term_width1 (content_all_charsets_label) + 4);
max               671 src/filemanager/find.c     cw = max (cw, str_term_width1 (content_whole_words_label) + 4);
max               672 src/filemanager/find.c     cw = max (cw, str_term_width1 (content_first_hit_label) + 4);
max               680 src/filemanager/find.c     cols = max (cols, max (b12, cw * 2 + 1) + 6);
max               779 src/filemanager/find.c     y1 = max (y1, y2);
max               541 src/filemanager/layout.c         l1 = max (l1, str_term_width1 (s_split_direction[i]) + 7);
max               544 src/filemanager/layout.c         l1 = max (l1, str_term_width1 (check_options[i].text) + 7);
max               546 src/filemanager/layout.c     l1 = max (l1, str_term_width1 (title1) + 4);
max               547 src/filemanager/layout.c     l1 = max (l1, str_term_width1 (title2) + 4);
max               548 src/filemanager/layout.c     l1 = max (l1, str_term_width1 (title3) + 4);
max               551 src/filemanager/layout.c     l1 = max (l1, output_lines_label_len + 12);
max               557 src/filemanager/layout.c     width = max (l1 * 2 + 7, b);