HomeSort by relevance Sort by last modified time
    Searched refs:SIZE_MAX (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /development/ndk/platforms/android-3/arch-arm/include/machine/
limits.h 42 #ifndef SIZE_MAX
43 #define SIZE_MAX UINT_MAX /* max value for a size_t */
  /development/ndk/platforms/android-9/arch-mips/include/machine/
limits.h 41 #ifndef SIZE_MAX
42 #define SIZE_MAX ULONG_MAX /* max value for a size_t */
  /development/ndk/platforms/android-9/arch-x86/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;
bitrotate.h 75 return ((x << n) | (x >> ((CHAR_BIT * sizeof x) - n))) & SIZE_MAX;
84 return ((x >> n) | (x << ((CHAR_BIT * sizeof x) - n))) & SIZE_MAX;
quotearg.c 49 #ifndef SIZE_MAX
50 # define SIZE_MAX ((size_t) -1)
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, &default_quoting_options)
    [all...]
  /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++
  /external/chromium_org/content/browser/renderer_host/p2p/
socket_host_unittest.cc 155 size_t start_pos = SIZE_MAX, rtp_length = SIZE_MAX;
160 EXPECT_EQ(SIZE_MAX, start_pos);
161 EXPECT_EQ(SIZE_MAX, rtp_length);
167 EXPECT_EQ(SIZE_MAX, start_pos);
168 EXPECT_EQ(SIZE_MAX, rtp_length);
175 size_t start_pos = SIZE_MAX, rtp_length = SIZE_MAX;
180 EXPECT_EQ(SIZE_MAX, start_pos);
181 EXPECT_EQ(SIZE_MAX, rtp_length)
    [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};
  /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};
  /external/flac/libFLAC/
memory.c 87 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 */
  /bionic/tests/
malloc_test.cpp 37 ASSERT_EQ(NULL, malloc(SIZE_MAX));
61 ASSERT_EQ(NULL, calloc(1, SIZE_MAX));
64 ASSERT_EQ(NULL, calloc(SIZE_MAX, SIZE_MAX));
67 ASSERT_EQ(NULL, calloc(2, SIZE_MAX));
70 ASSERT_EQ(NULL, calloc(SIZE_MAX, 2));
89 ASSERT_EQ(NULL, memalign(4096, SIZE_MAX));
108 ASSERT_NE(0, posix_memalign(&ptr, 16, SIZE_MAX));
286 ASSERT_EQ(NULL, realloc(NULL, SIZE_MAX));
291 ASSERT_EQ(NULL, realloc(ptr, SIZE_MAX));
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
fwrite.c 59 size > 0 && SIZE_MAX / size < count) {
  /external/chromium_org/chromecast/media/cma/ipc/
media_message_fifo.h 173 #if SIZE_MAX == UINT32_MAX
175 #elif SIZE_MAX == UINT64_MAX
  /external/chromium_org/third_party/libusb/src/msvc/
stdint.h 203 #ifndef SIZE_MAX
205 #define SIZE_MAX UINT64_MAX
207 #define SIZE_MAX UINT32_MAX
  /external/chromium_org/third_party/mesa/src/include/c99/
stdint.h 202 #ifndef SIZE_MAX // [
204 # define SIZE_MAX _UI64_MAX
206 # define SIZE_MAX _UI32_MAX
208 #endif // SIZE_MAX ]
  /external/jemalloc/include/msvc_compat/C99/
stdint.h 202 #ifndef SIZE_MAX // [
204 # define SIZE_MAX _UI64_MAX
206 # define SIZE_MAX _UI32_MAX
208 #endif // SIZE_MAX ]
  /external/mesa3d/include/c99/
stdint.h 202 #ifndef SIZE_MAX // [
204 # define SIZE_MAX _UI64_MAX
206 # define SIZE_MAX _UI32_MAX
208 #endif // SIZE_MAX ]
  /external/lldb/include/lldb/Host/
FileSpec.h 488 /// bytes into the file. If \a length is \c SIZE_MAX, map
497 MemoryMapFileContents (off_t offset = 0, size_t length = SIZE_MAX) const;
518 /// bytes into the file. If \a length is \c SIZE_MAX, map
527 ReadFileContents (off_t offset = 0, size_t length = SIZE_MAX, Error *error_ptr = NULL) const;

Completed in 2223 milliseconds

1 2 3 4