Home | History | Annotate | Download | only in stdio

Lines Matching full:size

43 setvbuf(FILE *fp, char *buf, int mode, size_t size)
50 * Verify arguments. The `int' limit on `size' is due to this
51 * particular implementation. Note, buf and size are ignored
55 if ((mode != _IOFBF && mode != _IOLBF) || (int)size < 0)
80 * Find optimal I/O size for seek optimization. This also returns
85 if (size == 0) {
87 size = iosize;
92 if ((buf = malloc(size)) == NULL) {
95 * failure, but try again with file system size.
98 if (size != iosize) {
99 size = iosize;
100 buf = malloc(size);
117 * right size.
119 * SHOULD WE ALLOW MULTIPLES HERE (i.e., ok iff (size % iosize) == 0)?
121 if (size != iosize)
132 fp->_bf._size = size;
143 fp->_w = size;