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

123

/freebsd-10.0-release/contrib/xz/src/common/
H A Dsysdefs.h45 // Some pre-C99 systems have SIZE_MAX in limits.h instead of stdint.h. The
106 // Incorrect(?) SIZE_MAX:
108 // but a few lines later define SIZE_MAX to INT32_MAX.
110 // but define SIZE_MAX to INT32_MAX.
112 # undef SIZE_MAX macro
116 #ifndef SIZE_MAX
118 # define SIZE_MAX UINT32_MAX macro
120 # define SIZE_MAX UINT64_MAX macro
125 #if SIZE_MAX != UINT32_MAX && SIZE_MAX !
[all...]
/freebsd-10.0-release/contrib/diff/lib/
H A Dcmpbuf.c67 #ifndef SIZE_MAX
68 # define SIZE_MAX TYPE_MAXIMUM (size_t) macro
78 NBYTES must not be SIZE_MAX.
80 On error, return SIZE_MAX, setting errno.
115 return SIZE_MAX;
H A Dxmalloc.c36 #ifndef SIZE_MAX
37 # define SIZE_MAX ((size_t) -1) macro
196 if (SIZE_MAX / 2 / s < n)
H A Derror.c93 # ifndef SIZE_MAX
94 # define SIZE_MAX ((size_t) -1) macro
152 : len <= SIZE_MAX / sizeof *wbuf
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DCommandHistory.h62 size_t stop_idx = SIZE_MAX) const;
/freebsd-10.0-release/contrib/libarchive/libarchive/
H A Darchive_platform.h109 #define SIZE_MAX (~(size_t)0) macro
112 #define SSIZE_MAX ((ssize_t)(SIZE_MAX >> 1))
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DDataBufferMemoryMap.h90 /// 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
H A DStreamTee.h103 size_t min_bytes_written = SIZE_MAX;
119 if (min_bytes_written == SIZE_MAX)
/freebsd-10.0-release/lib/libc/stdio/
H A Dfwrite.c72 (count > SIZE_MAX / size)) {
H A Dfread.c84 (count > SIZE_MAX / size)) {
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Host/
H A DFileSpec.h488 /// 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;
/freebsd-10.0-release/sys/mips/include/
H A D_stdint.h177 #define SIZE_MAX UINT64_MAX macro
184 #define SIZE_MAX UINT32_MAX macro
/freebsd-10.0-release/sys/powerpc/include/
H A D_stdint.h180 #define SIZE_MAX UINT64_MAX macro
191 #define SIZE_MAX UINT32_MAX macro
/freebsd-10.0-release/sys/x86/include/
H A D_stdint.h174 #define SIZE_MAX UINT64_MAX macro
180 #define SIZE_MAX UINT32_MAX macro
/freebsd-10.0-release/contrib/xz/src/liblzma/common/
H A Dstream_buffer_encoder.c36 if (my_min(SIZE_MAX, LZMA_VLI_MAX) - block_bound < HEADERS_BOUND)
/freebsd-10.0-release/contrib/xz/src/xz/
H A Dcoder.c485 if (strm.avail_in == SIZE_MAX)
534 if (strm.avail_in == SIZE_MAX)
604 if (strm.avail_in == SIZE_MAX)
631 if (strm.avail_in != SIZE_MAX) {
/freebsd-10.0-release/sys/arm/include/
H A D_stdint.h150 #define SIZE_MAX UINT32_MAX macro
/freebsd-10.0-release/sys/fs/tmpfs/
H A Dtmpfs_vfsops.c204 (SIZE_MAX < OFF_MAX && size_max / PAGE_SIZE >= SIZE_MAX))
205 pages = SIZE_MAX;
396 if (tmp->tm_pages_max != SIZE_MAX)
/freebsd-10.0-release/sys/ia64/include/
H A D_stdint.h150 #define SIZE_MAX UINT64_MAX macro
/freebsd-10.0-release/sys/sparc64/include/
H A D_stdint.h150 #define SIZE_MAX UINT64_MAX macro
/freebsd-10.0-release/contrib/atf/atf-c/detail/
H A Ddynstr.c115 const size_t atf_dynstr_npos = SIZE_MAX;
201 if (memlen >= SIZE_MAX - 1) {
228 if (len == SIZE_MAX) {
/freebsd-10.0-release/bin/ps/
H A Dfmt.c69 if (arg_max >= LONG_MAX / 4 || arg_max >= (long)(SIZE_MAX / 4))
/freebsd-10.0-release/tools/regression/lib/libc/stdio/
H A Dtest-printbasic.c56 #define S_SIZEMAX (SIZE_MAX == UINT64_MAX ? S_UINT64MAX : S_UINT32MAX)
/freebsd-10.0-release/usr.bin/m4/
H A Dtrace.c184 return SIZE_MAX;
/freebsd-10.0-release/contrib/diff/src/
H A Dsystem.h168 #ifndef SIZE_MAX
169 # define SIZE_MAX TYPE_MAXIMUM (size_t) macro

Completed in 359 milliseconds

123