Lines Matching full:size_max
24 /* Get SIZE_MAX. */
42 The convention is that SIZE_MAX represents overflow.
43 malloc (SIZE_MAX) is not guaranteed to fail -- think of a malloc
53 ((N) <= SIZE_MAX ? (size_t) (N) : SIZE_MAX)
63 return (sum >= size1 ? sum : SIZE_MAX);
94 max (SIZE_MAX, n) == SIZE_MAX and max (n, SIZE_MAX) == SIZE_MAX. */
101 when N is of a wider type and N > SIZE_MAX. */
103 ((N) <= SIZE_MAX / (ELSIZE) ? (size_t) (N) * (ELSIZE) : SIZE_MAX)
107 ((SIZE) == SIZE_MAX)
110 ((SIZE) != SIZE_MAX)