Searched defs:SIZE_MAX (Results 1 - 14 of 14) 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/pixman/pixman/
H A Dpixman-compiler.h65 #ifndef SIZE_MAX
66 # define SIZE_MAX ((size_t)-1) macro
/external/chromium_org/third_party/libusb/src/msvc/
H A Dstdint.h203 #ifndef SIZE_MAX
205 #define SIZE_MAX UINT64_MAX macro
207 #define SIZE_MAX UINT32_MAX macro
/external/chromium_org/third_party/mesa/src/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/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/oprofile/libpopt/
H A Dconfig.h281 #undef SIZE_MAX macro
/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/chromium_org/third_party/smhasher/src/
H A Dpstdint.h293 #ifndef SIZE_MAX
294 # define SIZE_MAX (~(size_t)0) 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/mksh/src/
H A Dsh.h318 #ifndef SIZE_MAX
320 #define SIZE_MAX SIZE_T_MAX macro
322 #define SIZE_MAX ((size_t)-1) macro
1608 #define notoktomul(val, cnst) notok2mul(SIZE_MAX, (val), (cnst))
1609 #define notoktoadd(val, cnst) notok2add(SIZE_MAX, (val), (cnst))

Completed in 268 milliseconds