Searched refs:SIZE_MAX (Results 1 - 25 of 78) sorted by relevance

1234

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/unistdio/
H A Du-vsprintf.h17 #ifndef SIZE_MAX
18 # define SIZE_MAX ((size_t) -1) macro
32 /* Set length = min (SIZE_MAX, INT_MAX, - (uintptr_t) buf - 1). */
33 length = (SIZE_MAX < INT_MAX ? SIZE_MAX : INT_MAX);
44 /* length is near SIZE_MAX. */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-runtime/intl/
H A Dxsize.h26 /* Get SIZE_MAX. */
39 The convention is that SIZE_MAX represents overflow.
40 malloc (SIZE_MAX) is not guaranteed to fail -- think of a malloc
50 ((N) <= SIZE_MAX ? (size_t) (N) : SIZE_MAX)
60 return (sum >= size1 ? sum : SIZE_MAX);
91 max (SIZE_MAX, n) == SIZE_MAX and max (n, SIZE_MAX) == SIZE_MAX
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-runtime/libasprintf/
H A Dxsize.h26 /* Get SIZE_MAX. */
39 The convention is that SIZE_MAX represents overflow.
40 malloc (SIZE_MAX) is not guaranteed to fail -- think of a malloc
50 ((N) <= SIZE_MAX ? (size_t) (N) : SIZE_MAX)
60 return (sum >= size1 ? sum : SIZE_MAX);
91 max (SIZE_MAX, n) == SIZE_MAX and max (n, SIZE_MAX) == SIZE_MAX
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgettextpo/
H A Dxsize.h25 /* Get SIZE_MAX. */
38 The convention is that SIZE_MAX represents overflow.
39 malloc (SIZE_MAX) is not guaranteed to fail -- think of a malloc
49 ((N) <= SIZE_MAX ? (size_t) (N) : SIZE_MAX)
59 return (sum >= size1 ? sum : SIZE_MAX);
90 max (SIZE_MAX, n) == SIZE_MAX and max (n, SIZE_MAX) == SIZE_MAX
[all...]
H A Dgetdelim.c30 #ifndef SIZE_MAX
31 # define SIZE_MAX ((size_t) -1) macro
34 # define SSIZE_MAX ((ssize_t) (SIZE_MAX / 2))
96 SSIZE_MAX < SIZE_MAX ? (size_t) SSIZE_MAX + 1 : SIZE_MAX;
H A Dxvasprintf.c59 if (totalsize == SIZE_MAX || totalsize > INT_MAX)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/
H A Dxsize.h25 /* Get SIZE_MAX. */
38 The convention is that SIZE_MAX represents overflow.
39 malloc (SIZE_MAX) is not guaranteed to fail -- think of a malloc
49 ((N) <= SIZE_MAX ? (size_t) (N) : SIZE_MAX)
59 return (sum >= size1 ? sum : SIZE_MAX);
90 max (SIZE_MAX, n) == SIZE_MAX and max (n, SIZE_MAX) == SIZE_MAX
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dxsize.h25 /* Get SIZE_MAX. */
38 The convention is that SIZE_MAX represents overflow.
39 malloc (SIZE_MAX) is not guaranteed to fail -- think of a malloc
49 ((N) <= SIZE_MAX ? (size_t) (N) : SIZE_MAX)
59 return (sum >= size1 ? sum : SIZE_MAX);
90 max (SIZE_MAX, n) == SIZE_MAX and max (n, SIZE_MAX) == SIZE_MAX
[all...]
H A Dgetdelim.c30 #ifndef SIZE_MAX
31 # define SIZE_MAX ((size_t) -1) macro
34 # define SSIZE_MAX ((ssize_t) (SIZE_MAX / 2))
96 SSIZE_MAX < SIZE_MAX ? (size_t) SSIZE_MAX + 1 : SIZE_MAX;
H A Dareadlink.c34 #ifndef SIZE_MAX
35 # define SIZE_MAX ((size_t) -1) macro
38 # define SSIZE_MAX ((ssize_t) (SIZE_MAX / 2))
44 If realloc fails, or if the link value is longer than SIZE_MAX :-),
110 if (SSIZE_MAX < buf_size || (SIZE_MAX / 2 < SSIZE_MAX && buf_size == 0))
H A Dgl_anyhash_list2.h40 #if SIZE_MAX > 4294967295UL
77 SIZE_MAX /* sentinel, to ensure the search terminates */
89 return SIZE_MAX; /* not a prime, but better than nothing */
H A Dquotearg.c57 #ifndef SIZE_MAX
58 # define SIZE_MAX ((size_t) -1) macro
164 If ARGSIZE is SIZE_MAX, use the string length of the argument for ARGSIZE.
248 for (i = 0; ! (argsize == SIZE_MAX ? arg[i] == '\0' : i == argsize); i++)
325 if (! (argsize == SIZE_MAX ? arg[1] == '\0' : argsize == 1))
406 if (argsize == SIZE_MAX)
517 If ARGSIZE is SIZE_MAX, use the string length of the argument for
582 ARG is of size ARGSIZE, but if that is SIZE_MAX, ARG is a
643 return quotearg_n_options (n, arg, SIZE_MAX, &default_quoting_options);
666 return quotearg_n_options (n, arg, SIZE_MAX,
[all...]
H A Dxvasprintf.c59 if (totalsize == SIZE_MAX || totalsize > INT_MAX)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/xz/src/common/
H A Dsysdefs.h45 // Some pre-C99 systems have SIZE_MAX in limits.h instead of stdint.h. The
107 // but a few lines later define SIZE_MAX to INT32_MAX.
109 # undef SIZE_MAX macro
113 #ifndef SIZE_MAX
115 # define SIZE_MAX UINT32_MAX macro
117 # define SIZE_MAX UINT64_MAX macro
122 #if SIZE_MAX != UINT32_MAX && SIZE_MAX != UINT64_MAX
/netgear-R7000-V1.0.7.12_1.2.5/src/tools/misc/xz/src/common/
H A Dsysdefs.h45 // Some pre-C99 systems have SIZE_MAX in limits.h instead of stdint.h. The
107 // but a few lines later define SIZE_MAX to INT32_MAX.
109 # undef SIZE_MAX macro
113 #ifndef SIZE_MAX
115 # define SIZE_MAX UINT32_MAX macro
117 # define SIZE_MAX UINT64_MAX macro
122 #if SIZE_MAX != UINT32_MAX && SIZE_MAX != UINT64_MAX
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-runtime/gnulib-lib/
H A Dareadlink.c34 #ifndef SIZE_MAX
35 # define SIZE_MAX ((size_t) -1) macro
38 # define SSIZE_MAX ((ssize_t) (SIZE_MAX / 2))
44 If realloc fails, or if the link value is longer than SIZE_MAX :-),
110 if (SSIZE_MAX < buf_size || (SIZE_MAX / 2 < SSIZE_MAX && buf_size == 0))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libiconv-1.10/srclib/
H A Dxreadlink.c46 #ifndef SIZE_MAX
47 # define SIZE_MAX ((size_t) -1) macro
50 # define SSIZE_MAX ((ssize_t) (SIZE_MAX / 2))
62 If realloc fails, or if the link value is longer than SIZE_MAX :-),
127 if (SSIZE_MAX < buf_size || (SIZE_MAX / 2 < SSIZE_MAX && buf_size == 0))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libiconv-1.11/srclib/
H A Dxreadlink.c42 #ifndef SIZE_MAX
43 # define SIZE_MAX ((size_t) -1) macro
46 # define SSIZE_MAX ((ssize_t) (SIZE_MAX / 2))
58 If realloc fails, or if the link value is longer than SIZE_MAX :-),
123 if (SSIZE_MAX < buf_size || (SIZE_MAX / 2 < SSIZE_MAX && buf_size == 0))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/include/share/
H A Dalloc.h27 * before #including this file, otherwise SIZE_MAX might not be defined
30 #include <limits.h> /* for SIZE_MAX */
32 #include <stdint.h> /* for SIZE_MAX in case limits.h didn't get it */
36 #ifndef SIZE_MAX
44 # define SIZE_MAX SIZE_T_MAX macro
120 if(size1 > SIZE_MAX / size2)
130 if(size1 > SIZE_MAX / size2)
133 if(size1 > SIZE_MAX / size3)
143 if(size1 > SIZE_MAX / size2)
196 if(size1 > SIZE_MAX / size
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/wget-1.12/lib/
H A Dgetdelim.c32 # define SSIZE_MAX ((ssize_t) (SIZE_MAX / 2))
96 SSIZE_MAX < SIZE_MAX ? (size_t) SSIZE_MAX + 1 : SIZE_MAX;
H A Dstr-two-way.h67 # define LONG_NEEDLE_THRESHOLD SIZE_MAX
108 /* Index of last byte of left half, or SIZE_MAX. */
117 -1 <= max_suffix{,_rev} < j (treating SIZE_MAX as if it were signed)
125 max_suffix = SIZE_MAX;
160 max_suffix_rev = SIZE_MAX;
279 while (i != SIZE_MAX && (CANON_ELEMENT (needle[i])
282 if (i == SIZE_MAX)
411 while (i != SIZE_MAX && (CANON_ELEMENT (needle[i])
414 if (i == SIZE_MAX)
H A Dquotearg.c40 #ifndef SIZE_MAX
41 # define SIZE_MAX ((size_t) -1) macro
197 If ARGSIZE is SIZE_MAX, use the string length of the argument for ARGSIZE.
303 for (i = 0; ! (argsize == SIZE_MAX ? arg[i] == '\0' : i == argsize); i++)
413 if (! (argsize == SIZE_MAX ? arg[1] == '\0' : argsize == 1))
497 if (argsize == SIZE_MAX)
625 If ARGSIZE is SIZE_MAX, use the string length of the argument for
652 embedded null bytes only if ARGSIZE is not SIZE_MAX, SIZE is not
713 ARG is of size ARGSIZE, but if that is SIZE_MAX, ARG is a
783 return quotearg_n_options (n, arg, SIZE_MAX,
[all...]
H A Dstdint.in.h464 #undef SIZE_MAX macro
467 # define SIZE_MAX _STDINT_MAX (0, 64, 0ul) macro
469 # define SIZE_MAX _STDINT_MAX (0, 32, 0ul) macro
472 # define SIZE_MAX _STDINT_MAX (0, @BITSIZEOF_SIZE_T@, 0@SIZE_T_SUFFIX@) macro
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/
H A Dmemory.c87 if((size_t)elements > SIZE_MAX / sizeof(*pu)) /* overflow check */
116 if((size_t)elements > SIZE_MAX / sizeof(*pu)) /* overflow check */
145 if((size_t)elements > SIZE_MAX / sizeof(*pu)) /* overflow check */
174 if((size_t)elements > SIZE_MAX / sizeof(*pu)) /* overflow check */
205 if((size_t)elements > SIZE_MAX / sizeof(*pu)) /* overflow check */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/wget-1.12/md5/
H A Dstdint.in.h464 #undef SIZE_MAX macro
467 # define SIZE_MAX _STDINT_MAX (0, 64, 0ul) macro
469 # define SIZE_MAX _STDINT_MAX (0, 32, 0ul) macro
472 # define SIZE_MAX _STDINT_MAX (0, @BITSIZEOF_SIZE_T@, 0@SIZE_T_SUFFIX@) macro

Completed in 134 milliseconds

1234