Symbol: SSIZE_MAX
bin/dd/args.c
184
if (res < 1 || res > SSIZE_MAX)
bin/dd/args.c
185
errx(1, "bs must be between 1 and %zd", SSIZE_MAX);
bin/dd/args.c
195
if (res < 1 || res > SSIZE_MAX)
bin/dd/args.c
196
errx(1, "cbs must be between 1 and %zd", SSIZE_MAX);
bin/dd/args.c
238
if (res < 1 || res > SSIZE_MAX)
bin/dd/args.c
239
errx(1, "ibs must be between 1 and %zd", SSIZE_MAX);
bin/dd/args.c
257
if (res < 1 || res > SSIZE_MAX)
bin/dd/args.c
258
errx(1, "obs must be between 1 and %zd", SSIZE_MAX);
lib/libc/stdio/getdelim.c
69
if (len > (size_t)SSIZE_MAX + 1) {
lib/libc/stdio/getdelim.c
74
if (len == (size_t)SSIZE_MAX + 1) /* avoid overflow */
lib/libc/stdio/getdelim.c
75
newcap = (size_t)SSIZE_MAX + 1;
lib/libc/stdio/open_memstream.c
56
if (newoff < 0 || newoff >= SSIZE_MAX)
lib/libc/stdio/open_memstream.c
57
newsize = SSIZE_MAX - 1;
lib/libc/stdio/open_wmemstream.c
57
if (newoff < 0 || newoff >= SSIZE_MAX / sizeof(wchar_t))
lib/libc/stdio/open_wmemstream.c
58
newsize = SSIZE_MAX / sizeof(wchar_t) - 1;
lib/libc/stdlib/dmalloc.c
148
#if SSIZE_MAX == 0x7FFFFFFF
lib/libssh/openbsd-compat/glob.c
205
if (pglob->gl_offs >= SSIZE_MAX || pglob->gl_pathc >= SSIZE_MAX ||
lib/libssh/openbsd-compat/glob.c
206
pglob->gl_pathc >= SSIZE_MAX - pglob->gl_offs - 1)
lib/libssh/openbsd-compat/glob.c
810
if (pglob->gl_offs >= SSIZE_MAX ||
lib/libssh/openbsd-compat/glob.c
811
pglob->gl_pathc >= SSIZE_MAX ||
lib/libssh/openbsd-compat/glob.c
812
newn >= SSIZE_MAX ||
sys/libprop/prop_object.c
853
if (len > SSIZE_MAX) {
test/stress/fsx/fsx.c
311
if (bufferlength > SSIZE_MAX) {
usr.bin/gzip/gzip.c
2042
size_t left = MIN(sz, (size_t) SSIZE_MAX);