HomeSort by relevance Sort by last modified time
    Searched refs:SIZE_MAX (Results 51 - 75 of 209) sorted by null

1 23 4 5 6 7 8 9

  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/machine/
limits.h 41 #ifndef SIZE_MAX
42 #define SIZE_MAX ULONG_MAX /* max value for a size_t */
  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/machine/
limits.h 42 #ifndef SIZE_MAX
43 #define SIZE_MAX UINT_MAX /* max value for a size_t */
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/machine/
limits.h 42 #ifndef SIZE_MAX
43 #define SIZE_MAX UINT_MAX /* max value for a size_t */
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/machine/
limits.h 41 #ifndef SIZE_MAX
42 #define SIZE_MAX ULONG_MAX /* max value for a size_t */
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/machine/
limits.h 42 #ifndef SIZE_MAX
43 #define SIZE_MAX UINT_MAX /* max value for a size_t */
  /prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/machine/
limits.h 42 #ifndef SIZE_MAX
43 #define SIZE_MAX UINT_MAX /* max value for a size_t */
  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/machine/
limits.h 42 #ifndef SIZE_MAX
43 #define SIZE_MAX UINT_MAX /* max value for a size_t */
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/machine/
limits.h 42 #ifndef SIZE_MAX
43 #define SIZE_MAX UINT_MAX /* max value for a size_t */
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/machine/
limits.h 42 #ifndef SIZE_MAX
43 #define SIZE_MAX UINT_MAX /* max value for a size_t */
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/machine/
limits.h 42 #ifndef SIZE_MAX
43 #define SIZE_MAX UINT_MAX /* max value for a size_t */
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/machine/
limits.h 41 #ifndef SIZE_MAX
42 #define SIZE_MAX ULONG_MAX /* max value for a size_t */
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/machine/
limits.h 42 #ifndef SIZE_MAX
43 #define SIZE_MAX UINT_MAX /* max value for a size_t */
  /external/bison/lib/
xsize.h 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. *
    [all...]
sprintf.c 32 #ifndef SIZE_MAX
33 # define SIZE_MAX ((size_t) -1)
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. */
vsprintf.c 32 #ifndef SIZE_MAX
33 # define SIZE_MAX ((size_t) -1)
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. */
getdelim.c 34 # define SSIZE_MAX ((ssize_t) (SIZE_MAX / 2))
98 SSIZE_MAX < SIZE_MAX ? (size_t) SSIZE_MAX + 1 : SIZE_MAX;
  /external/e2fsprogs/intl/
xsize.h 26 /* 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...]
  /external/clang/test/Headers/
cxx11.cpp 22 #ifndef SIZE_MAX
23 #error SIZE_MAX should be defined in C++
  /system/core/libcutils/
strdup16to8.c 18 #include <limits.h> /* for SIZE_MAX */
35 * for len > SIZE_MAX/3.
46 * overflows, and never return more than (SIZE_MAX-1)
48 * SIZE_MAX bytes, which will return NULL which can at least
55 /* Fast path for the usual case where 3*len is < SIZE_MAX-1.
57 if (len < (SIZE_MAX-1)/3) {
84 return SIZE_MAX-1;
87 /* don't return SIZE_MAX to avoid common user bug */
88 if (utf8Len == SIZE_MAX)
89 utf8Len = SIZE_MAX-1
    [all...]
  /external/nanopb-c/examples/network_server/
common.c 32 pb_ostream_t stream = {&write_callback, (void*)(intptr_t)fd, SIZE_MAX, 0};
38 pb_istream_t stream = {&read_callback, (void*)(intptr_t)fd, SIZE_MAX};
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
limits.h 69 #ifndef SIZE_MAX
71 #define SIZE_MAX _UI64_MAX
73 #define SIZE_MAX UINT_MAX
  /ndk/sources/host-tools/sed-4.2.1/lib/
getdelim.c 34 # define SSIZE_MAX ((ssize_t) (SIZE_MAX / 2))
98 SSIZE_MAX < SIZE_MAX ? (size_t) SSIZE_MAX + 1 : SIZE_MAX;
  /external/lldb/include/lldb/Core/
DataBufferMemoryMap.h 90 /// bytes into the file. If \a length is set to \c SIZE_MAX,
102 /// bytes into the file. If \a length is \c SIZE_MAX, map
111 lldb::offset_t length = SIZE_MAX,
119 /// \c SIZE_MAX, then map as many bytes as possible.
131 /// bytes into the file. If \a length is \c SIZE_MAX, map
  /external/lldb/include/lldb/Interpreter/
CommandHistory.h 62 size_t stop_idx = SIZE_MAX) const;
  /external/nanopb-c/tests/basic_stream/
encode_stream.c 26 pb_ostream_t stream = {&streamcallback, NULL, SIZE_MAX, 0};

Completed in 1012 milliseconds

1 23 4 5 6 7 8 9