max                91 java/org/gnu/emacs/EmacsDialogButtonLayout.java 	height = Math.max (height, view.getMeasuredHeight ());
max               148 java/org/gnu/emacs/EmacsDialogButtonLayout.java 	height = Math.max (height, view.getMeasuredHeight ());
max                44 java/org/gnu/emacs/EmacsDrawLine.java     x1 = Math.max (x, x2 + 1);
max                46 java/org/gnu/emacs/EmacsDrawLine.java     y1 = Math.max (y, y2 + 1);
max              1081 lib-src/ebrowse.c       int size = max (10, 2 * namespace_stack_size);
max              1143 lib-src/ebrowse.c       int new_size = max (2 * scope_buffer_size, scope_buffer_len + len);
max              2894 lib-src/ebrowse.c 	  size_t new_size = max (len, 2 * id_size);
max              2920 lib-src/ebrowse.c 	  int new_size = max (len, 2 * id_size);
max              2937 lib-src/ebrowse.c 	      size_t new_size = max (len, 2 * id_size);
max              3571 lib-src/ebrowse.c 	  buffer_size = max (len + 1, 2 * buffer_size);
max              3709 lib-src/ebrowse.c 	  buffer_size = max (100, buffer_size * 2);
max              3721 lib-src/ebrowse.c       buffer_size = max (100, buffer_size * 2);
max              3769 lib-src/ebrowse.c 	      input_filenames_size = max (10, 2 * input_filenames_size);
max               948 lib-src/emacsclient.c   ptrdiff_t homesuffixsizemax = max (sizeof "/.config/emacs/server/",
max               951 lib-src/emacsclient.c   char *configname = xmalloc (max (xdgsubdirsize, homesubdirsizemax)
max                66 lib/canonicalize-lgpl.c #   define __getcwd(buf, max) getcwd (buf, max, 0)
max                71 lib/canonicalize-lgpl.c #  define __getcwd(buf, max) getwd (buf)
max               121 lib/ftoastr.h  #define _GL_FLOAT_EXPONENT_STRLEN_BOUND(min, max)  \
max               122 lib/ftoastr.h    (      -100 < (min) && (max) <     100 ? 3       \
max               123 lib/ftoastr.h     :    -1000 < (min) && (max) <    1000 ? 4       \
max               124 lib/ftoastr.h     :   -10000 < (min) && (max) <   10000 ? 5       \
max               125 lib/ftoastr.h     :  -100000 < (min) && (max) <  100000 ? 6       \
max               126 lib/ftoastr.h     : -1000000 < (min) && (max) < 1000000 ? 7       \
max                97 lib/intprops-internal.h #define _GL_INT_NEGATE_RANGE_OVERFLOW(a, min, max) \
max                98 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/limits.in.h #define _GL_INTEGER_WIDTH(min, max) (((min) < 0) + _GL_COB128 (max))
max                 4 lib/min-max.h  #ifndef max
max               161 lib/regex_internal.h # define REGEX_UINTEGER_WIDTH(max) REGEX_COB128 (max)
max              2331 lib/regexec.c        Idx max = mctx->state_log_top;
max              2336 lib/regexec.c  	  if (++cur_str_idx > max)
max                56 lwlib/lwlib.c  #ifndef max
max               376 lwlib/lwlib.c        change = max (change, STRUCTURAL_CHANGE);
max               383 lwlib/lwlib.c        change = max (change, VISIBLE_CHANGE);
max               390 lwlib/lwlib.c        change = max (change, VISIBLE_CHANGE);
max               397 lwlib/lwlib.c        change = max (change, VISIBLE_CHANGE);
max               404 lwlib/lwlib.c        change = max (change, VISIBLE_CHANGE);
max               411 lwlib/lwlib.c        change = max (change, VISIBLE_CHANGE);
max               418 lwlib/lwlib.c        change = max (change, VISIBLE_CHANGE);
max               425 lwlib/lwlib.c        change = max (change, INVISIBLE_CHANGE);
max               444 lwlib/lwlib.c  	  change = max (change, STRUCTURAL_CHANGE);
max               450 lwlib/lwlib.c  	  change = max (change, INVISIBLE_CHANGE);
max               453 lwlib/lwlib.c  	  change = max (merged_contents->change, change);
max               469 lwlib/lwlib.c        change = max (change, STRUCTURAL_CHANGE);
max               476 lwlib/lwlib.c        change = max (change, merged_next->change);
max                82 nt/runemacs.c  			   ? max (sizeof (iconic_opt), sizeof (maximized_opt))
max               462 oldXMenu/Internal.c 	max_p_label = max(max_p_label, p_ptr->label_width);
max               467 oldXMenu/Internal.c 	s_count = max(s_count, p_ptr->s_count);
max               481 oldXMenu/Internal.c 	    max_s_label = max(max_s_label, s_ptr->label_width);
max               200 src/alloc.c      (ROUNDUP (max (n, sizeof (size_t)), MALLOC_ALIGNMENT) - sizeof (size_t))
max               204 src/alloc.c    enum { MALLOC_ALIGNMENT = max (2 * sizeof (size_t), alignof (long double)) };
max              1733 src/alloc.c      ptrdiff_t unaligned_size = max (SDATA_DATA_OFFSET + n + 1,
max              1735 src/alloc.c      int sdata_align = max (FLEXALIGNOF (struct sdata), alignof (sdata));
max              6343 src/alloc.c          threshold = max (threshold, GC_DEFAULT_THRESHOLD / 10);
max              2451 src/androidterm.c   clip_rect.y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, row->y));
max              2452 src/androidterm.c   clip_rect.y = max (clip_rect.y, window_y);
max              2766 src/androidterm.c       int box_line_width = max (s->face->box_horizontal_line_width, 0);
max              3047 src/androidterm.c 	  new.red =   max (0, new.red -   min_delta);
max              3048 src/androidterm.c 	  new.green = max (0, new.green - min_delta);
max              3049 src/androidterm.c 	  new.blue =  max (0, new.blue -  min_delta);
max              3251 src/androidterm.c     x += max (s->face->box_vertical_line_width, 0);
max              3337 src/androidterm.c     x += max (s->face->box_vertical_line_width, 0);
max              3399 src/androidterm.c   int box_line_hwidth = max (s->face->box_vertical_line_width, 0);
max              3400 src/androidterm.c   int box_line_vwidth = max (s->face->box_horizontal_line_width, 0);
max              3656 src/androidterm.c     x = s->x + max (s->face->box_vertical_line_width, 0);
max              3704 src/androidterm.c     x = s->x + max (s->face->box_vertical_line_width, 0);
max              3794 src/androidterm.c     x = s->x + max (s->face->box_vertical_line_width, 0);
max              4028 src/androidterm.c 		    minimum_offset = max (0, XFIXNUM (val));
max              4075 src/androidterm.c 		    position = max (position, minimum_offset);
max              5208 src/androidterm.c   contents[1] = (unsigned int) max (context.point,
max              6000 src/androidterm.c 		     max (point, mark) - 1, start, end);
max               991 src/androidvfs.c   char *token, *saveptr, *copy, *copy1, *start, *max, *limit;
max              1071 src/androidvfs.c 	  max = memchr (start, 0, limit - start);
max              1073 src/androidvfs.c 	  if (max != start + token_length
max              1074 src/androidvfs.c 	      && !(max == start + token_length + 1
max              1075 src/androidvfs.c 		   && *(max - 1) == '/'))
max              1082 src/androidvfs.c 	  if (max && max + 5 <= limit)
max              1086 src/androidvfs.c 		  start = max + 5;
max              1088 src/androidvfs.c 			   + android_extract_long (max + 1));
max              1100 src/androidvfs.c 	      if (*(max - 1) != '/' && file[strlen (file) - 1] == '/')
max              1101 src/androidvfs.c 		max = NULL;
max              1106 src/androidvfs.c 		    *limit_return = android_extract_long (max + 1);
max              1109 src/androidvfs.c 		  max += 5;
max              1113 src/androidvfs.c 	      return max;
max               354 src/atimer.c   	  alarm (max (interval.tv_sec, 1));
max               768 src/bidi.c           if (max (idx + 1,
max               774 src/bidi.c     	    = max (BUF_BYTES_MAX, STRING_BYTES_BOUND);
max               786 src/bidi.c     				max (chunk_size, idx - bidi_cache_size + 1),
max              2521 src/bidi.c     enum { MAX_BPA_STACK = max (1, ((MAX_ALLOCA - 2 * sizeof (struct bidi_it))
max                99 src/bignum.c     if (integer_width < bits && 2 * max (INTMAX_WIDTH, UINTMAX_WIDTH) < bits)
max              3099 src/buffer.c           prev = max (prev, node->begin);
max              3696 src/buffer.c   	modify_overlay (b, min (o_beg, n_beg), max (o_end, n_end));
max                97 src/casefiddle.c   unsigned char data[max (6, MAX_MULTIBYTE_LENGTH)];
max              8407 src/coding.c         ptrdiff_t dst_bytes = max (1, coding->src_chars);
max              4206 src/comp.c           EMACS_INT max_args = XFIXNUM (CALL1I (comp-args-max, args));
max              1351 src/data.c     wrong_range (Lisp_Object min, Lisp_Object max, Lisp_Object wrong)
max              1357 src/data.c     		   to, Fnumber_to_string (max)),
max              1437 src/data.c     		    Lisp_Object min = XCAR (rangeprop), max = XCDR (rangeprop);
max              1439 src/data.c     			|| NILP (CALLN (Fleq, min, newval, max)))
max              1440 src/data.c     		      wrong_range (min, max, newval);
max              2847 src/data.c     cons_to_unsigned (Lisp_Object c, uintmax_t max)
max              2855 src/data.c           if (d >= 0 && d < 1.0 + max)
max              2893 src/data.c       if (! (valid && val <= max))
max              2908 src/data.c     cons_to_signed (Lisp_Object c, intmax_t min, intmax_t max)
max              2916 src/data.c           if (d >= min && d < 1.0 + max)
max              2954 src/data.c       if (! (valid && min <= val && val <= max))
max              2988 src/data.c       char buffer[max (FLOAT_TO_STRING_BUFSIZE, INT_BUFSIZE_BOUND (EMACS_INT))];
max               326 src/dispnew.c        double d = max (0, margin);
max               330 src/dispnew.c        return max (1, (int) ((double) total_glyphs / width * d));
max               974 src/dispnew.c        int max_used = max (a->used[area], b->used[area]);
max              1716 src/dispnew.c        wmax = max (wmax, dim.width);
max              1717 src/dispnew.c        hmax = max (hmax, dim.height);
max              1756 src/dispnew.c        int ch_height = max (FRAME_SMALLEST_FONT_HEIGHT (f), 1);
max              1783 src/dispnew.c        int ch_width = max (FRAME_SMALLEST_CHAR_WIDTH (f), 1);
max              5088 src/dispnew.c  	      x += max (0, w->left_margin_cols);
max              5753 src/dispnew.c    x1 = max (0, it.current_x + it.pixel_width);
max               171 src/doc.c          docdir_sizemax = max (docdir_sizemax, sizeof sibling_etc);
max               206 src/doc.c        int offset = min (position, max (1024, position % (8 * 1024)));
max               223 src/doprnt.c   	    maxmlen = max (max (1, pDlen), max (pIlen, pMlen))
max               292 src/doprnt.c   	  ptrdiff_t size_bound = max (wid, prec) + SIZE_BOUND_EXTRA;
max              3827 src/editfns.c  	      char convspec[sizeof "%FF.*d" + max (sizeof "L" - 1, pMlen)];
max              1441 src/emacs.c          heap_bss_diff = heap_start - max (my_endbss, my_endbss_static);
max              1613 src/emacs.c          emacs_re_safe_alloca = max (max_failures * min_ratio, MAX_ALLOCA);
max              3087 src/emacs.c    	  char buf[max ((sizeof fmt - sizeof "%d"
max               258 src/eval.c       *m = max (*m, sum);
max              2632 src/eval.c         return Ffuncall (max (1, nargs - 1), args);
max               206 src/floatfns.c   int e = min (max (INT_MIN, XFIXNUM (exponent)), INT_MAX);
max              4344 src/fns.c        incr = max (incr_min, min (old_size >> 1, incr_max));
max              1358 src/font.c     			   + max (INT_STRLEN_BOUND (EMACS_INT),
max               706 src/frame.c    		      : max (FRAME_TEXT_TO_PIXEL_WIDTH (f, new_text_width),
max               715 src/frame.c    		       : max (FRAME_TEXT_TO_PIXEL_HEIGHT (f, new_text_height),
max               657 src/fringe.c     p.by = WINDOW_TO_FRAME_PIXEL_Y (w, max (header_line_height, row->y));
max              1578 src/fringe.c         fb.height = max (0, min (XFIXNUM (height), 255));
max              1591 src/fringe.c         fb.width = max (1, min (XFIXNUM (width), 16));
max                64 src/gnutls.h   #define GNUTLS_LOG(level, max, string)				\
max                66 src/gnutls.h       if ((level) <= (max))					\
max                70 src/gnutls.h   #define GNUTLS_LOG2(level, max, string, extra)			\
max                72 src/gnutls.h       if ((level) <= (max))					\
max                76 src/gnutls.h   #define GNUTLS_LOG2i(level, max, string, extra)			\
max                78 src/gnutls.h       if ((level) <= (max))					\
max              4966 src/gtkutil.c        new_step = size / max (1, FRAME_LINES (f));
max              5021 src/gtkutil.c        int upper = max (whole - 1, 0);
max              5022 src/gtkutil.c        int pagesize = min (upper, max (portion, 0));
max              5023 src/gtkutil.c        int value = max (0, min (position, upper - pagesize));
max              5384 src/gtkutil.c    event->area.x = max (0, event->area.x);
max              5385 src/gtkutil.c    event->area.y = max (0, event->area.y);
max              5387 src/gtkutil.c    event->area.width = max (width, event->area.width);
max              5388 src/gtkutil.c    event->area.height = max (height, event->area.height);
max              5825 src/gtkutil.c    hmargin = max (0, hmargin - DEFAULT_TOOL_BAR_BUTTON_MARGIN);
max              5826 src/gtkutil.c    vmargin = max (0, vmargin - DEFAULT_TOOL_BAR_BUTTON_MARGIN);
max              6357 src/gtkutil.c  					  max (0, cursor))),
max              6359 src/gtkutil.c  					  max (0, cursor) + 1)),
max               112 src/haiku.c      int64 max = (int64) sinfo.max_pages * B_PAGE_SIZE;
max               115 src/haiku.c    					   (double) max) * 100)),
max               220 src/haiku_draw_support.cc   double max = std::fmax (std::fmax (red, blue), green);
max               222 src/haiku_draw_support.cc   double delta = max - min;
max               223 src/haiku_draw_support.cc   *l = (max + min) / 2.0;
max               232 src/haiku_draw_support.cc   *s = (*l < 0.5) ? delta / (max + min) :
max               233 src/haiku_draw_support.cc     delta / (20 - max - min);
max               234 src/haiku_draw_support.cc   double rc = (max - red) / delta;
max               235 src/haiku_draw_support.cc   double gc = (max - green) / delta;
max               236 src/haiku_draw_support.cc   double bc = (max - blue) / delta;
max               238 src/haiku_draw_support.cc   if (red == max)
max               240 src/haiku_draw_support.cc   else if (green == max)
max               195 src/haiku_font_support.cc   int max = 0;
max               210 src/haiku_font_support.cc 	  if (max < w)
max               211 src/haiku_font_support.cc 	    max = w;
max               216 src/haiku_font_support.cc   *max_width = max;
max              2743 src/haiku_support.cc     return BSize (std::max (size_1.width,
max              2744 src/haiku_support.cc 			    std::max (width_1, width)),
max              2745 src/haiku_support.cc 		  std::max (size_1.height, height + height_1));
max              3144 src/haiku_support.cc     max_height = std::max (std::max (ok_height, cancel_height),
max              3166 src/haiku_support.cc     size_entry.ResizeTo (std::max (size_width,
max               858 src/haikuterm.c 		minimum_offset = max (0, XFIXNUM (val));
max               901 src/haikuterm.c 	      position = max (position, minimum_offset);
max              1126 src/haikuterm.c       int box_line_width = max (face->box_horizontal_line_width, 0);
max              1127 src/haikuterm.c       int box_vline_width = max (face->box_vertical_line_width, 0);
max              1177 src/haikuterm.c     x = s->x + max (face->box_vertical_line_width, 0);
max              1231 src/haikuterm.c     x = s->x + max (face->box_vertical_line_width, 0);
max              1433 src/haikuterm.c   y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, row->y));
max              1434 src/haikuterm.c   y = max (y, window_y);
max              1468 src/haikuterm.c     x = s->x + max (face->box_vertical_line_width, 0);
max              1568 src/haikuterm.c     x += max (face->box_vertical_line_width, 0);
max              1656 src/haikuterm.c   int box_line_hwidth = max (face->box_vertical_line_width, 0);
max              1657 src/haikuterm.c   int box_line_vwidth = max (face->box_horizontal_line_width, 0);
max              1711 src/haikuterm.c 	x += max (face->box_vertical_line_width, 0);
max              2004 src/haikuterm.c       int y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, desired_row->y));
max              3630 src/haikuterm.c 		    XSETINT (inev.x, min (max (0, b->x - bar->left),
max              3636 src/haikuterm.c 		    XSETINT (inev.x, min (max (0, b->y - bar->top),
max              2266 src/image.c    	  delay = max (delay, 1);
max              3416 src/image.c    	  relief_bound = INT_MAX - max (img->hmargin, img->vmargin);
max              9197 src/image.c    	      make_string (buf, max (0, min (len, sizeof buf - 1))));
max              10811 src/image.c      for (i = max (1, cache->index + 1); i <= ino; i++)
max              2400 src/indent.c   	    move_it_by_lines (&it, max (PTRDIFF_MIN, nlines));
max               589 src/insdel.c       make_gap_larger (max (nbytes_added, (Z - BEG) / 64));
max               148 src/itree.c      stack->size = max (0, initial_size);
max               262 src/itree.c      eassert (limit == max (end, max (left_result.limit, right_result.limit)));
max               328 src/itree.c      return max (node->end,
max               329 src/itree.c    	      max (node->left == NULL
max               697 src/itree.c          child->limit = max (child->limit, node->end);
max               753 src/itree.c          node->end = max (node->begin, end);
max               758 src/itree.c          node->end = max (node->begin, end);
max              1174 src/itree.c    	node->begin = max (pos, node->begin - length);
max              1177 src/itree.c    	  node->end = max (pos , node->end - length);
max              1424 src/itree.c      g->begin = max (begin, g->begin);
max               526 src/keyboard.c 	  size = max (2 * size, size + nbytes);
max              1746 src/keyboard.c 		     ? max (beg - 1, BEGV)
max              2846 src/keyboard.c       && num_nonmacro_input_events - last_auto_save > max (auto_save_interval, 20)
max              9609 src/keyboard.c 	2 * max (0, min (tool_bar_max_label_size, STRING_BYTES_BOUND / 2)) + 1;
max              10917 src/keyboard.c 	first_unbound = max (t + 1, first_unbound);
max              11085 src/keyboard.c 	  done = keyremap_step (keybuf, &indec, max (t, mock_input),
max              11089 src/keyboard.c 	      mock_input = diff + max (t, mock_input);
max              11117 src/keyboard.c 				  max (t, mock_input),
max              11126 src/keyboard.c 		mock_input = diff + max (t, mock_input);
max              11142 src/keyboard.c 	  done = keyremap_step (keybuf, &keytran, max (t, mock_input),
max              11146 src/keyboard.c 	      mock_input = diff + max (t, mock_input);
max              11188 src/keyboard.c 	  mock_input = max (t, mock_input);
max              11238 src/keyboard.c 	      mock_input = max (t, mock_input);
max              5595 src/lisp.h       intptr_t max, n;
max              5619 src/lisp.h     	  || (li.q = li.n = li.max <<= 1, li.n >>= USHRT_WIDTH,		\
max              2050 src/lread.c          max_suffix_len = max (max_suffix_len,
max              4009 src/msdos.c      ft.ft_year = max (0, tm->tm_year - 80);
max              1279 src/nsterm.h   #define IN_BOUND(min, x, max) (((x) < (min)) \
max              1280 src/nsterm.h                                   ? (min) : (((x)>(max)) ? (max) : (x)))
max               273 src/pdumper.c     DUMP_ALIGNMENT = max (GCALIGNMENT, DUMP_RELOCATION_ALIGNMENT),
max              3894 src/pdumper.c    dump_align_output (ctx, max (alignof (struct dump_reloc),
max              2069 src/pgtkfns.c  	height_mm_at_0 = max (height_mm_at_0, mm);
max              2110 src/pgtkfns.c  	width_mm_at_0 = max (width_mm_at_0, mm);
max              2403 src/pgtkfns.c        width = max (width, rec.x + rec.width);
max              2448 src/pgtkfns.c        height = max (height, rec.y + rec.height);
max               937 src/pgtkselect.c       intmax_t timeout = max (0, pgtk_selection_timeout);
max              1053 src/pgtkselect.c   intmax_t timeout = max (0, pgtk_selection_timeout);
max              1374 src/pgtkterm.c       int box_line_width = max (s->face->box_horizontal_line_width, 0);
max              1425 src/pgtkterm.c     x = s->x + max (s->face->box_vertical_line_width, 0);
max              1473 src/pgtkterm.c     x = s->x + max (s->face->box_vertical_line_width, 0);
max              1564 src/pgtkterm.c     x = s->x + max (s->face->box_vertical_line_width, 0);
max              1694 src/pgtkterm.c 	  new.red = max (0, new.red - min_delta);
max              1695 src/pgtkterm.c 	  new.green = max (0, new.green - min_delta);
max              1696 src/pgtkterm.c 	  new.blue = max (0, new.blue - min_delta);
max              2094 src/pgtkterm.c     x += max (s->face->box_vertical_line_width, 0);
max              2231 src/pgtkterm.c     x += max (s->face->box_vertical_line_width, 0);
max              2288 src/pgtkterm.c   int box_line_hwidth = max (s->face->box_vertical_line_width, 0);
max              2289 src/pgtkterm.c   int box_line_vwidth = max (s->face->box_horizontal_line_width, 0);
max              2605 src/pgtkterm.c 		    position = max (position, underline_minimum_offset);
max              2760 src/pgtkterm.c       int y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, desired_row->y));
max              3524 src/pgtkterm.c   rect.y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, row->y));
max              3525 src/pgtkterm.c   rect.y = max (rect.y, window_y);
max              4073 src/pgtkterm.c 					  left, width, max (height, 1));
max              4076 src/pgtkterm.c 			       left, width, max (height, 1));
max              4135 src/pgtkterm.c       bar = pgtk_scroll_bar_create (w, top, left, width, max (height, 1), false);
max              4163 src/pgtkterm.c 				   left, width, max (height, 1));
max              2206 src/print.c      char buf[max (sizeof "from..to..in " + 2 * INT_STRLEN_BOUND (EMACS_INT),
max              2207 src/print.c    		max (sizeof " . #" + INT_STRLEN_BOUND (intmax_t),
max              2208 src/print.c    		     max ((sizeof " with data 0x"
max              4171 src/regex-emacs.c 		  ptrdiff_t n = max (RE_NREGS, num_regs);
max              4184 src/regex-emacs.c 		      n = max (n + (n >> 1), num_regs);
max               855 src/search.c   		  lim1 = max (next_change, end);
max               886 src/search.c               ceiling_byte = max (CHAR_TO_BYTE (next_change), ceiling_byte);
max               893 src/search.c   	ceiling_byte = max (tem, ceiling_byte);
max              1950 src/search.c   	  limit = max (limit, pos_byte - 20000);
max              1951 src/search.c   	  limit = max (limit, lim_byte);
max              2083 src/search.c   		   : max (limit - len_byte, lim_byte));
max              2625 src/search.c     opoint = PT <= sub_start ? PT : max (PT, sub_end) - ZV;
max              3090 src/search.c             search_regs.start[i] = max (0, search_regs.start[i] + delta);
max              3091 src/search.c             search_regs.end[i] = max (0, search_regs.end[i] + delta);
max               104 src/sfntfont-android.c 	    = max (_size, max_scanline_buffer_size);		\
max               136 src/sfntfont-android.c       = max (_size, max_scanline_buffer_size);			\
max               281 src/sfntfont-android.c 			    unsigned int *max, unsigned int *x)
max               288 src/sfntfont-android.c   how_much = (max - src) & ~7;
max               394 src/sfntfont-android.c   result->x2 = max (a.x2, b.x2);
max               395 src/sfntfont-android.c   result->y2 = max (a.y2, b.y2);
max               175 src/sound.c         max (sizeof (struct wav_header), sizeof (struct au_header))
max              3787 src/sysdep.c   	  nread += max (0, nread_incr);
max              1209 src/term.c           max_frame_cols = max (max_frame_cols, FRAME_COLS (frame));
max              1886 src/term.c       char buf[sizeof "\\x" + max (6, (INT_WIDTH + 3) / 4)];
max              3666 src/term.c               maxlines = max (maxlines, lines);
max              3748 src/term.c       maxlines = max (maxlines, lines);
max              3755 src/term.c       x = max (x, 1);
max              3756 src/term.c       y = max (y, 1);
max               213 src/textconv.c 	     : max (w->ephemeral_last_point, mark));
max               247 src/textconv.c 	      pos = max (BEGV, start - 1);
max               615 src/textconv.c 	  end = max (mark, PT);
max               816 src/textconv.c 	  end  = max (PT, wanted);
max               948 src/textconv.c   if (max (0, start) == max (0, end))
max              1019 src/textconv.c     lstart = rstart = max (a, PT);
max              1033 src/textconv.c       b1 = max (a, b);
max              1036 src/textconv.c       rstart = max (rstart, max (PT, b1));
max              1041 src/textconv.c       start = max (BEGV, lstart - left);
max              1059 src/textconv.c       start = max (BEGV, lstart - left);
max              1725 src/textconv.c       n = max (4, n);
max              1752 src/textconv.c   start = max (start, BEGV);
max              1783 src/textconv.c   *end_offset = max (mark - start, PT - start);
max              1857 src/textconv.c   start = max (start, BEGV);
max              2126 src/textprop.c   ptrdiff_t max = XFIXNUM (new_end);
max              2137 src/textprop.c       if (XFIXNUM (beg) >= max)
max              2146 src/textprop.c       else if ((end == XFIXNUM (old_end) && end != max)
max              2147 src/textprop.c 	       || end > max)
max               824 src/treesit.c  					 max (visible_beg, start_byte))
max               827 src/treesit.c  					   max (visible_beg, old_end_byte))
max               834 src/treesit.c  	  ptrdiff_t new_end_offset = (max (visible_beg, new_end_byte)
max              3835 src/treesit.c  	  max_width = max (max_width, width_count);
max              3840 src/treesit.c        max_depth = max (max_depth, current_depth);
max               347 src/unexw32.c        bss_size = max (my_endbss, my_endbss_static) - bss_start;
max               349 src/unexw32.c        extra_bss_size = max (extra_bss_size, extra_bss_size_static);
max               491 src/unexw32.c  	  dst = max (dst, dst_save + dst_section->SizeOfRawData);
max               507 src/unexw32.c  	  dst = max (dst, dst_save + dst_section->SizeOfRawData);
max              1623 src/w32fns.c     int border = max (argval, 0);
max              7634 src/w32fns.c   	       ? max (0, XFIXNUM (Vw32_tooltip_extra_pixels))
max              1694 src/w32proc.c        DWORD_PTR real_size = max (section->SizeOfRawData,
max               821 src/w32term.c        int y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, desired_row->y));
max              1238 src/w32term.c        real_x = max (real_x, s->gc->clip_rectangle.left);
max              1239 src/w32term.c        real_y = max (real_y, s->gc->clip_rectangle.top);
max              1264 src/w32term.c        int box_line_width = max (s->face->box_horizontal_line_width, 0);
max              1310 src/w32term.c      x = s->x + max (s->face->box_vertical_line_width, 0);
max              1368 src/w32term.c      x = s->x + max (s->face->box_vertical_line_width, 0);
max              1465 src/w32term.c      x = s->x + max (s->face->box_vertical_line_width, 0);
max              1590 src/w32term.c          new = PALETTERGB (max (0, min (0xff, min_delta - GetRValue (*color))),
max              1591 src/w32term.c                            max (0, min (0xff, min_delta - GetGValue (*color))),
max              1592 src/w32term.c                            max (0, min (0xff, min_delta - GetBValue (*color))));
max              1594 src/w32term.c          new = PALETTERGB (max (0, min (0xff, min_delta + GetRValue (*color))),
max              1595 src/w32term.c                            max (0, min (0xff, min_delta + GetGValue (*color))),
max              1596 src/w32term.c                            max (0, min (0xff, min_delta + GetBValue (*color))));
max              1600 src/w32term.c      new = PALETTERGB (max (0, min (0xff, delta + GetRValue (*color))),
max              1601 src/w32term.c                        max (0, min (0xff, delta + GetGValue (*color))),
max              1602 src/w32term.c                        max (0, min (0xff, delta + GetBValue (*color))));
max              1918 src/w32term.c      x += max (s->face->box_vertical_line_width, 0);
max              2116 src/w32term.c      x += max (s->face->box_vertical_line_width, 0);
max              2207 src/w32term.c      x += max (s->face->box_vertical_line_width, 0);
max              2320 src/w32term.c    int box_line_hwidth = max (s->face->box_vertical_line_width, 0);
max              2321 src/w32term.c    int box_line_vwidth = max (s->face->box_horizontal_line_width, 0);
max              2680 src/w32term.c  		    minimum_offset = max (0, XFIXNUM (val));
max              2727 src/w32term.c  		    position = max (position, minimum_offset);
max              3370 src/w32term.c        int scroll_unit = max (w32_wheel_scroll_lines, 1), nlines;
max              3997 src/w32term.c    sb_page = max (sb_page, VERTICAL_SCROLL_BAR_MIN_HANDLE);
max              4283 src/w32term.c  	  SetWindowPos (hwnd, HWND_BOTTOM, left, top, width, max (height, 1),
max              4385 src/w32term.c  	  SetWindowPos (hwnd, HWND_BOTTOM, left, top, max (width, 1), height,
max              6110 src/w32term.c    clip_rect.top = max (clip_rect.top, window_y);
max              7072 src/w32term.c  		f->top_pos = max (window_rect.top
max              1083 src/window.c     return max (height / denom, 0);
max              1133 src/window.c     return max (width / denom, 0);
max              2128 src/window.c     crop = max (0, (row->y + row->height) - max_y);
max              4852 src/window.c     new_pixel_size = max (horflag ? size : size - mini_height, unit);
max              5642 src/window.c             ratio = max (0.0, ratio);
max              5673 src/window.c     n *= max (1, ht - nscls);
max              5799 src/window.c   	      dy = max (dy, (ht / dy - nscls) * dy);
max              5808 src/window.c   		  px = max (0, -w->vscroll - min (rtop, -dy));
max              5819 src/window.c   		  px = max (0, -w->vscroll + min (rbot, dy));
max              5891 src/window.c         int dy = n * max (flh, (ht / flh - nscls) * flh);
max              6233 src/window.c         n *= max (1, ht - nscls);
max              6970 src/window.c         iarg = max (iarg, this_scroll_margin);
max              1289 src/xdisp.c      return max (0, width);
max              1367 src/xdisp.c      return max (0, height);
max              2053 src/xdisp.c    	    *y = max (top_y, window_top_y);
max              2055 src/xdisp.c    	    *y = max (top_y + max (0, it.max_ascent - it.ascent), window_top_y);
max              2056 src/xdisp.c    	  *rtop = max (0, window_top_y - top_y);
max              2057 src/xdisp.c    	  *rbot = max (0, bottom_y - it.last_visible_y);
max              2058 src/xdisp.c    	  *rowh = max (0, (min (bottom_y, it.last_visible_y)
max              2059 src/xdisp.c    			   - max (top_y, window_top_y)));
max              2090 src/xdisp.c    	  *rtop = max (0, -it2.current_y);
max              2091 src/xdisp.c    	  *rbot = max (0, ((it2.current_y + it2.max_ascent + it2.max_descent)
max              2093 src/xdisp.c    	  *rowh = max (0, (min (it2.current_y + it2.max_ascent + it2.max_descent,
max              2095 src/xdisp.c    			   - max (max (it2.current_y,
max              2553 src/xdisp.c    	r.y = max (0, s->row->y);
max              2588 src/xdisp.c    	  height = max (FRAME_LINE_HEIGHT (s->f), glyph->ascent + glyph->descent);
max              2592 src/xdisp.c    	      r.y = min (max_y, max (r.y, s->ybase + glyph->descent - height));
max              2722 src/xdisp.c      h = max (h0, ascent + glyph->descent);
max              2731 src/xdisp.c          h = max (h - (y0 - y) + 1, h0);
max              2876 src/xdisp.c    			    max (0, WINDOW_BOX_HEIGHT_NO_MODE_LINE (w) - gy));
max              2889 src/xdisp.c    			  max (0, WINDOW_BOX_HEIGHT_NO_MODE_LINE (w) - gy));
max              3640 src/xdisp.c      return fact * max (1, width);
max              3647 src/xdisp.c      return get_narrowed_width (w) * max (1, height);
max              3654 src/xdisp.c      return max ((pos / len - 1) * len, BEGV);
max              3701 src/xdisp.c      ptrdiff_t bol_pos = max (get_nearby_bol_pos (pos), BEGV);
max              3702 src/xdisp.c      return max (bol_pos + ((pos - bol_pos) / len - 1) * len, BEGV);
max              3711 src/xdisp.c      int begv = max (pos - len, BEGV);
max              6422 src/xdisp.c      pos = make_fixnum (max (from, BEGV));
max              6439 src/xdisp.c          limit = make_fixnum (max (to, BEGV));
max              6473 src/xdisp.c          ptrdiff_t backward_limit = max (around_charpos - MAX_DISTANCE, BEGV);
max              9369 src/xdisp.c          charpos = max (charpos - SCAN_BACK_LIMIT, BEGV);
max              10424 src/xdisp.c    	  int prev_x = max (it->current_x - 1, 0);
max              10613 src/xdisp.c    		    max_current_x = max (it->current_x, max_current_x);
max              10622 src/xdisp.c    		      int prev_x = max (it->current_x - 1, 0);
max              10634 src/xdisp.c    	      max_current_x = max (it->current_x, max_current_x);
max              10656 src/xdisp.c    	  max_current_x = max (it->current_x, max_current_x);
max              10661 src/xdisp.c    	  max_current_x = max (it->current_x, max_current_x);
max              10829 src/xdisp.c      nlines = max (1, dy / default_line_pixel_height (it->w));
max              10833 src/xdisp.c        pos_limit = max (start_pos - nlines * nchars_per_row, BEGV);
max              11102 src/xdisp.c    	pos_limit = max (start_charpos + dvpos * nchars_per_row, BEGV);
max              11503 src/xdisp.c    	    doff = (max (it.max_ascent, it.ascent)
max              11504 src/xdisp.c    		    + max (it.max_descent, it.descent));
max              11507 src/xdisp.c    	      it.max_ascent = max (it.max_ascent, it.ascent);
max              11508 src/xdisp.c    	      it.max_descent = max (it.max_descent, it.descent);
max              14532 src/xdisp.c          height = max (1, (it.last_visible_y - border) / rows);
max              14633 src/xdisp.c      charpos = max (0, charpos);
max              15158 src/xdisp.c    			   INT_MAX - max (hmargin, vmargin)))
max              15580 src/xdisp.c    	  height = max (1, (it.last_visible_y - border) / rows);
max              15680 src/xdisp.c      charpos = max (0, charpos);
max              16155 src/xdisp.c    		hscroll = max (0, (it.current_x
max              16172 src/xdisp.c    		    = max (0, it.current_x - wanted_x) / FRAME_COLUMN_WIDTH (it.f);
max              16184 src/xdisp.c    		    = max (0, it.current_x - wanted_x) / FRAME_COLUMN_WIDTH (it.f);
max              16186 src/xdisp.c    	      hscroll = max (hscroll, w->min_hscroll);
max              18273 src/xdisp.c    	      stop = max (glyph_before, glyph_after);
max              18277 src/xdisp.c    	      start = max (glyph_before, glyph_after);
max              18712 src/xdisp.c    	= max (scroll_step, max (arg_scroll_conservatively, temp_scroll_step));
max              18748 src/xdisp.c    	  int slack = max (scroll_max, 10 * frame_line_height);
max              18809 src/xdisp.c    	  = min (max (dy, frame_line_height),
max              18908 src/xdisp.c    	  y_to_move = max (it.last_visible_y,
max              18909 src/xdisp.c    			   max (scroll_max, 10 * frame_line_height));
max              18926 src/xdisp.c    	      = min (max (dy, frame_line_height),
max              19615 src/xdisp.c          whole = max (whole, end);
max              19936 src/xdisp.c          ptrdiff_t cur, next, found, max = 0, threshold;
max              19942 src/xdisp.c    	  if (next - cur > max) max = next - cur;
max              19943 src/xdisp.c    	  if (!found || max > threshold) break;
max              19945 src/xdisp.c          if (max > threshold)
max              22275 src/xdisp.c          run.height = it.last_visible_y - max (run.current_y, run.desired_y);
max              24683 src/xdisp.c          max_lnum = max (1, max_lnum);
max              24684 src/xdisp.c          it->lnum_width = max (it->lnum_width, log10 (max_lnum) + 1);
max              24818 src/xdisp.c    	  it->max_ascent = max (row->ascent, tem_it.max_ascent);
max              24819 src/xdisp.c    	  it->max_descent = max (row->height - row->ascent, tem_it.max_descent);
max              24820 src/xdisp.c    	  it->max_phys_ascent = max (row->phys_ascent, tem_it.max_phys_ascent);
max              24821 src/xdisp.c    	  it->max_phys_descent = max (row->phys_height - row->phys_ascent,
max              24826 src/xdisp.c    	  it->max_ascent = max (it->max_ascent, tem_it.max_ascent);
max              24827 src/xdisp.c    	  it->max_descent = max (it->max_descent, tem_it.max_descent);
max              24828 src/xdisp.c    	  it->max_phys_ascent = max (it->max_phys_ascent,
max              24830 src/xdisp.c    	  it->max_phys_descent = max (it->max_phys_descent,
max              25192 src/xdisp.c    	  row->ascent = max (row->ascent, it->max_ascent);
max              25193 src/xdisp.c    	  row->height = max (row->height, it->max_ascent + it->max_descent);
max              25194 src/xdisp.c    	  row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
max              25195 src/xdisp.c    	  row->phys_height = max (row->phys_height,
max              25197 src/xdisp.c    	  row->extra_line_spacing = max (row->extra_line_spacing,
max              25234 src/xdisp.c    	  row->ascent = max (row->ascent, it->max_ascent);
max              25235 src/xdisp.c    	  row->height = max (row->height, it->max_ascent + it->max_descent);
max              25236 src/xdisp.c    	  row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
max              25237 src/xdisp.c    	  row->phys_height = max (row->phys_height,
max              25239 src/xdisp.c    	  row->extra_line_spacing = max (row->extra_line_spacing,
max              25534 src/xdisp.c    	  row->ascent = max (row->ascent, it->max_ascent);
max              25535 src/xdisp.c    	  row->height = max (row->height, it->max_ascent + it->max_descent);
max              25536 src/xdisp.c    	  row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
max              25537 src/xdisp.c    	  row->phys_height = max (row->phys_height,
max              25539 src/xdisp.c    	  row->extra_line_spacing = max (row->extra_line_spacing,
max              26813 src/xdisp.c    	last->pixel_width += max (0, (box_thickness
max              26957 src/xdisp.c      row->used[TEXT_AREA] = max (saved_used, row->used[TEXT_AREA]);
max              27238 src/xdisp.c    	last->pixel_width += max (0, (box_thickness
max              27727 src/xdisp.c    		field_width = max (lim, field_width);
max              28098 src/xdisp.c      p = psuffix = buf + max (width, length);
max              28761 src/xdisp.c    	  ceiling = max (limit_byte, ceiling);
max              28978 src/xdisp.c    	  row->ascent = max (row->ascent, it->max_ascent);
max              28979 src/xdisp.c    	  row->height = max (row->height, it->max_ascent + it->max_descent);
max              28980 src/xdisp.c    	  row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
max              28981 src/xdisp.c    	  row->phys_height = max (row->phys_height,
max              28983 src/xdisp.c    	  row->extra_line_spacing = max (row->extra_line_spacing,
max              31677 src/xdisp.c          width = max (0, (int)tem + align_to - x);
max              31731 src/xdisp.c    	ascent = min (max (0, (int)tem), height);
max              32167 src/xdisp.c          width = max (metrics_upper.width, metrics_lower.width) + 4;
max              32599 src/xdisp.c    	  it->max_ascent = max (it->max_ascent, font_ascent);
max              32600 src/xdisp.c    	  it->max_descent = max (it->max_descent, font_descent);
max              32973 src/xdisp.c      it->max_ascent = max (it->max_ascent, it->ascent);
max              32974 src/xdisp.c      it->max_descent = max (it->max_descent, it->descent);
max              32975 src/xdisp.c      it->max_phys_ascent = max (it->max_phys_ascent, it->phys_ascent);
max              32976 src/xdisp.c      it->max_phys_descent = max (it->max_phys_descent, it->phys_descent);
max              33139 src/xdisp.c      from_y = WINDOW_TO_FRAME_PIXEL_Y (w, max (min_y, w->output_cursor.y));
max              33352 src/xdisp.c    			  && img->width > max (*width, WINDOW_FRAME_COLUMN_WIDTH (w))
max              33353 src/xdisp.c    			  && img->height > max (*width, WINDOW_FRAME_LINE_HEIGHT (w))))
max              33685 src/xdisp.c          y = WINDOW_TO_FRAME_PIXEL_Y (w, max (tab_line_height, max (header_line_height, cursor_row->y)));
max              36706 src/xdisp.c      result_box.x2 = max (a_box.x2, b_box.x2);
max              36707 src/xdisp.c      result_box.y2 = max (a_box.y2, b_box.y2);
max              38005 src/xdisp.c        sum -= max (0, original_face->box_vertical_line_width);
max              38009 src/xdisp.c        sum -= max (0, original_face->box_vertical_line_width);
max              38012 src/xdisp.c        sum += max (0, mouse_face->box_vertical_line_width);
max              38014 src/xdisp.c        sum += max (0, mouse_face->box_vertical_line_width);
max              1193 src/xfaces.c   		< max (color.red, color.green) / 20)
max              1195 src/xfaces.c   		   < max (color.green, color.blue) / 20)
max              1197 src/xfaces.c   		   < max (color.blue, color.red) / 20)));
max              3376 src/xfns.c     	  call_data->position = max (0, output->preedit_caret--);
max              3391 src/xfns.c     						  max (0, output->preedit_caret))),
max              3392 src/xfns.c     				make_fixnum (max (SCHARS (ie.arg),
max              3393 src/xfns.c     						  max (0, output->preedit_caret) + 1)),
max              3756 src/xfns.c     					      max (0, output->preedit_caret))),
max              3758 src/xfns.c     					      max (0, output->preedit_caret) + 1)),
max              2621 src/xmenu.c              maxlines = max (maxlines, lines);
max              2704 src/xmenu.c      maxlines = max (maxlines, lines);
max              2712 src/xmenu.c      x = max (x, 1);
max              2713 src/xmenu.c      y = max (y, 1);
max               100 src/xselect.c  			 / max (X_LONG_SIZE, sizeof (long)))))
max               843 src/xselect.c    timeout = max (0, x_selection_timeout);
max              1526 src/xselect.c        intmax_t timeout = max (0, x_selection_timeout);
max              1695 src/xselect.c    intmax_t timeout = max (0, x_selection_timeout);
max              7706 src/xterm.c    	int y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, desired_row->y));
max              8467 src/xterm.c          int box_line_width = max (s->face->box_horizontal_line_width, 0);
max              8513 src/xterm.c        x = s->x + max (s->face->box_vertical_line_width, 0);
max              8563 src/xterm.c    	      int box_line_width = max (s->face->box_horizontal_line_width, 0);
max              8608 src/xterm.c        x = s->x + max (s->face->box_vertical_line_width, 0);
max              8719 src/xterm.c        x = s->x + max (s->face->box_vertical_line_width, 0);
max              9522 src/xterm.c    	  new.red =   max (0, new.red -   min_delta);
max              9523 src/xterm.c    	  new.green = max (0, new.green - min_delta);
max              9524 src/xterm.c    	  new.blue =  max (0, new.blue -  min_delta);
max              10074 src/xterm.c        x += max (s->face->box_vertical_line_width, 0);
max              10201 src/xterm.c        x += max (s->face->box_vertical_line_width, 0);
max              10291 src/xterm.c        x += max (s->face->box_vertical_line_width, 0);
max              10396 src/xterm.c      int box_line_hwidth = max (s->face->box_vertical_line_width, 0);
max              10397 src/xterm.c      int box_line_vwidth = max (s->face->box_horizontal_line_width, 0);
max              10907 src/xterm.c    		    minimum_offset = max (0, XFIXNUM (val));
max              10954 src/xterm.c    		    position = max (position, minimum_offset);
max              15762 src/xterm.c          else if (xaw3d_arrow_scroll && eabs (position) <= max (5, width / 20))
max              15786 src/xterm.c          else if (xaw3d_arrow_scroll && eabs (position) <= max (5, height / 20))
max              16345 src/xterm.c          top = max (0, min (1, top));
max              16354 src/xterm.c        shown = max (0, min (1 - top - (2.0f / height), shown));
max              16357 src/xterm.c        shown = max (shown, 0.01f);
max              16424 src/xterm.c          top = max (0, min (1, top));
max              16433 src/xterm.c        shown = max (0, min (1 - top - (2.0f / height), shown));
max              16436 src/xterm.c        shown = max (shown, 0.01f);
max              16569 src/xterm.c    					  left, width, max (height, 1));
max              16572 src/xterm.c    			       left, width, max (height, 1));
max              16575 src/xterm.c        XtConfigureWidget (scroll_bar, left, top, width, max (height, 1), 0);
max              16785 src/xterm.c          bar = x_scroll_bar_create (w, top, left, width, max (height, 1), false);
max              16822 src/xterm.c    				   left, width, max (height, 1));
max              16825 src/xterm.c                                 left, top, width, max (height, 1), 0);
max              21234 src/xterm.c    	      if (configureEvent.xconfigure.width != max (bar->width, 1)
max              21235 src/xterm.c    		  || configureEvent.xconfigure.height != max (bar->height, 1))
max              21238 src/xterm.c    				 max (bar->width, 1), max (bar->height, 1));
max              25428 src/xterm.c      clip_rect.y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, row->y));
max              25429 src/xterm.c      clip_rect.y = max (clip_rect.y, window_y);
max              26052 src/xterm.c      struct x_failable_request *request, *max;
max              26082 src/xterm.c      max = dpyinfo->failable_requests + N_FAILABLE_REQUESTS;
max              26085 src/xterm.c      if (request >= max)
max              26097 src/xterm.c      if (request >= max)
max              2823 src/xwidget.c    clip_left = max (0, text_area_x - x);
max              2824 src/xwidget.c    clip_right = max (clip_left,
max              2826 src/xwidget.c    clip_top = max (0, text_area_y - y);
max              2827 src/xwidget.c    clip_bottom = max (clip_top,
max               467 test/manual/etags/c-src/emacs/src/keyboard.c 	  size = max (2 * size, size + nbytes);
max              1717 test/manual/etags/c-src/emacs/src/keyboard.c 		     ? max (beg - 1, BEGV)
max              1959 test/manual/etags/c-src/emacs/src/keyboard.c 	  time_t period = max (1, min (polling_period, TYPE_MAXIMUM (time_t)));
max              2718 test/manual/etags/c-src/emacs/src/keyboard.c       && num_nonmacro_input_events - last_auto_save > max (auto_save_interval, 20)
max              8319 test/manual/etags/c-src/emacs/src/keyboard.c 	2 * max (0, min (tool_bar_max_label_size, STRING_BYTES_BOUND / 2));
max              9446 test/manual/etags/c-src/emacs/src/keyboard.c 	first_unbound = max (t + 1, first_unbound);
max              9614 test/manual/etags/c-src/emacs/src/keyboard.c 	  done = keyremap_step (keybuf, bufsize, &indec, max (t, mock_input),
max              9619 test/manual/etags/c-src/emacs/src/keyboard.c 	      mock_input = diff + max (t, mock_input);
max              9649 test/manual/etags/c-src/emacs/src/keyboard.c 				  max (t, mock_input),
max              9659 test/manual/etags/c-src/emacs/src/keyboard.c 		mock_input = diff + max (t, mock_input);
max              9677 test/manual/etags/c-src/emacs/src/keyboard.c 	  done = keyremap_step (keybuf, bufsize, &keytran, max (t, mock_input),
max              9682 test/manual/etags/c-src/emacs/src/keyboard.c 	      mock_input = diff + max (t, mock_input);
max              9719 test/manual/etags/c-src/emacs/src/keyboard.c 	  mock_input = max (t, mock_input);
max              9766 test/manual/etags/c-src/emacs/src/keyboard.c 	      mock_input = max (t, mock_input);
max              1547 test/manual/etags/c-src/emacs/src/lisp.h   (max (sizeof ((a) + 0), sizeof ((b) + 0)) <= sizeof (unsigned)	\
max                64 test/manual/etags/cp-src/Range.h   double max (void) const;
max                25 test/manual/etags/cp-src/conway.cpp     imin = max(0, x - 1);
max                27 test/manual/etags/cp-src/conway.cpp     jmin = max(0, y - 1);
max                69 test/manual/noverlay/emacs-compat.h #ifndef max