Searched refs:buffsize (Results 1 - 4 of 4) sorted by relevance

/openbsd-current/lib/libedit/
H A Dchartype.c208 static size_t buffsize = 0; local
216 buffsize = CT_BUFSIZ;
217 buff = reallocarray(NULL, buffsize, sizeof(*buff));
221 used = ct_visual_char(dst, buffsize - (dst - buff), *s);
224 buffsize += CT_BUFSIZ;
225 p = reallocarray(buff, buffsize, sizeof(*buff));
236 if (dst >= (buff + buffsize)) { /* sigh */
237 buffsize += 1;
238 p = reallocarray(buff, buffsize, sizeof(*buff));
242 dst = buff + buffsize
[all...]
/openbsd-current/usr.sbin/pkg_add/OpenBSD/PackageRepository/
H A DPersistent.pm48 my $buffsize = 10 * 1024;
56 $remaining < $buffsize ? $remaining :$buffsize);
/openbsd-current/usr.sbin/pkg_add/OpenBSD/
H A DUstar.pm57 my $buffsize = 2 * 1024 * 1024;
105 if ($toread >$buffsize) {
106 $toread = $buffsize;
144 my $maxread = $buffsize;
798 my $maxread = $buffsize;
861 my $maxread = $buffsize;
891 my $maxread = $buffsize;
H A DPackageRepository.pm600 my $buffsize = 2 * 1024 * 1024;
633 $n = sysread($in, $buffer, $buffsize);

Completed in 173 milliseconds