Searched defs:SIZE_MAX (Results 1 - 13 of 13) sorted by relevance

/external/bison/lib/
H A Dsprintf.c32 #ifndef SIZE_MAX
33 # define SIZE_MAX ((size_t) -1) macro
52 Therefore set lenbuf = min (SIZE_MAX, INT_MAX, - (uintptr_t) str - 1). */
53 lenbuf = (SIZE_MAX < INT_MAX ? SIZE_MAX : INT_MAX);
67 /* len is near SIZE_MAX. */
H A Dvsprintf.c32 #ifndef SIZE_MAX
33 # define SIZE_MAX ((size_t) -1) macro
51 Therefore set lenbuf = min (SIZE_MAX, INT_MAX, - (uintptr_t) str - 1). */
52 lenbuf = (SIZE_MAX < INT_MAX ? SIZE_MAX : INT_MAX);
64 /* len is near SIZE_MAX. */
H A Dquotearg.c49 #ifndef SIZE_MAX
50 # define SIZE_MAX ((size_t) -1) macro
235 If ARGSIZE is SIZE_MAX, use the string length of the argument for ARGSIZE.
343 for (i = 0; ! (argsize == SIZE_MAX ? arg[i] == '\0' : i == argsize); i++)
453 if (! (argsize == SIZE_MAX ? arg[1] == '\0' : argsize == 1))
537 if (argsize == SIZE_MAX)
665 If ARGSIZE is SIZE_MAX, use the string length of the argument for
692 embedded null bytes only if ARGSIZE is not SIZE_MAX, SIZE is not
753 ARG is of size ARGSIZE, but if that is SIZE_MAX, ARG is a
823 return quotearg_n_options (n, arg, SIZE_MAX,
[all...]
H A Dconfig.in.h1959 #ifndef SIZE_MAX
1960 # undef SIZE_MAX macro
/external/flac/include/share/
H A Dalloc.h41 * before #including this file, otherwise SIZE_MAX might not be defined
44 #include <limits.h> /* for SIZE_MAX */
46 #include <stdint.h> /* for SIZE_MAX in case limits.h didn't get it */
51 #ifndef SIZE_MAX
63 # define SIZE_MAX SIZE_T_MAX macro
125 if(size1 > SIZE_MAX / size2)
128 if(size1 > SIZE_MAX / size3)
138 if(size1 > SIZE_MAX / size2)
151 if(size1 > SIZE_MAX / size2)
193 if(size1 > SIZE_MAX / size
[all...]
/external/icu/icu4c/source/tools/tzcode/
H A Dprivate.h208 #ifndef SIZE_MAX
209 #define SIZE_MAX ((size_t) -1) macro
/external/jemalloc/include/msvc_compat/C99/
H A Dstdint.h202 #ifndef SIZE_MAX // [
204 # define SIZE_MAX _UI64_MAX macro
206 # define SIZE_MAX _UI32_MAX macro
208 #endif // SIZE_MAX ]
/external/mesa3d/include/c99/
H A Dstdint.h202 #ifndef SIZE_MAX // [
204 # define SIZE_MAX _UI64_MAX macro
206 # define SIZE_MAX _UI32_MAX macro
208 #endif // SIZE_MAX ]
/external/bison/darwin-lib/
H A Dstdint.h531 #undef SIZE_MAX macro
534 # define SIZE_MAX _STDINT_MAX (0, 64, 0ul)
536 # define SIZE_MAX _STDINT_MAX (0, 32, 0ul)
539 # define SIZE_MAX _STDINT_MAX (0, 64, 0ul) macro
/external/clang/lib/Headers/
H A Dstdint.h667 #define SIZE_MAX __UINTN_MAX(__SIZE_WIDTH__) macro
672 #define RSIZE_MAX (SIZE_MAX >> 1)
/external/llvm/lib/Support/
H A Dregcomp.c57 #define SIZE_MAX UINT_MAX macro
1080 if (nc > SIZE_MAX / sizeof(cset))
1425 if ((uintptr_t)size > SIZE_MAX / sizeof(sop)) {
1446 if ((uintptr_t)p->slen > SIZE_MAX / sizeof(sop)) {
/external/openssh/
H A Ddefines.h317 #ifndef SIZE_MAX
318 #define SIZE_MAX SIZE_T_MAX macro
/external/mksh/src/
H A Dsh.h322 #ifndef SIZE_MAX
324 #define SIZE_MAX SIZE_T_MAX macro
326 #define SIZE_MAX ((size_t)-1) macro
1613 #define notoktomul(val, cnst) notok2mul(SIZE_MAX, (val), (cnst))
1614 #define notoktoadd(val, cnst) notok2add(SIZE_MAX, (val), (cnst))

Completed in 488 milliseconds