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               647 src/filemanager/find.c     cw = max (cw, str_term_width1 (file_recurs_label) + 4);
max               648 src/filemanager/find.c     cw = max (cw, str_term_width1 (file_follow_symlinks) + 4);
max               649 src/filemanager/find.c     cw = max (cw, str_term_width1 (file_pattern_label) + 4);
max               651 src/filemanager/find.c     cw = max (cw, str_term_width1 (file_all_charsets_label) + 4);
max               653 src/filemanager/find.c     cw = max (cw, str_term_width1 (file_case_label) + 4);
max               654 src/filemanager/find.c     cw = max (cw, str_term_width1 (file_skip_hidden_label) + 4);
max               656 src/filemanager/find.c     cw = max (cw, str_term_width1 (content_content_label) + 4);
max               657 src/filemanager/find.c     cw = max (cw, str_term_width1 (content_use_label) + 4);
max               658 src/filemanager/find.c     cw = max (cw, str_term_width1 (content_regexp_label) + 4);
max               659 src/filemanager/find.c     cw = max (cw, str_term_width1 (content_case_label) + 4);
max               661 src/filemanager/find.c     cw = max (cw, str_term_width1 (content_all_charsets_label) + 4);
max               663 src/filemanager/find.c     cw = max (cw, str_term_width1 (content_whole_words_label) + 4);
max               664 src/filemanager/find.c     cw = max (cw, str_term_width1 (content_first_hit_label) + 4);
max               672 src/filemanager/find.c     cols = max (cols, max (b12, cw * 2 + 1) + 6);
max               771 src/filemanager/find.c     y1 = max (y1, y2);
max               543 src/filemanager/layout.c         l1 = max (l1, str_term_width1 (s_split_direction[i]) + 7);
max               546 src/filemanager/layout.c         l1 = max (l1, str_term_width1 (check_options[i].text) + 7);
max               548 src/filemanager/layout.c     l1 = max (l1, str_term_width1 (title1) + 4);
max               549 src/filemanager/layout.c     l1 = max (l1, str_term_width1 (title2) + 4);
max               550 src/filemanager/layout.c     l1 = max (l1, str_term_width1 (title3) + 4);
max               553 src/filemanager/layout.c     l1 = max (l1, output_lines_label_len + 12);
max               559 src/filemanager/layout.c     width = max (l1 * 2 + 7, b);
max               138 src/vfs/tar/tar-sparse.c #define INT_ADD_RANGE_OVERFLOW(a, b, min, max)                          \
max               141 src/vfs/tar/tar-sparse.c         : (max) - (b) < (a))
max               163 src/vfs/tar/tar-sparse.c #define _GL_ADD_OVERFLOW(a, b, min, max)                                \
max               166 src/vfs/tar/tar-sparse.c #define _GL_ADD_OVERFLOW(a, b, min, max)                                \
max               167 src/vfs/tar/tar-sparse.c    ((min) < 0 ? INT_ADD_RANGE_OVERFLOW (a, b, min, max)                 \