Lines Matching refs:notWritten
842 long notWritten;
849 notWritten = oco->count + extraCount + padsize;
850 if (!notWritten)
856 todo = notWritten;
857 while (notWritten) {
859 long remain = todo; /* amount to try this time, <= notWritten */
897 notWritten -= len;
898 todo = notWritten;
926 if (notWritten > oco->size) {
929 if (notWritten + BUFSIZE <= INT_MAX) {
930 obuf = realloc(oco->buf, notWritten + BUFSIZE);
938 oco->size = notWritten + BUFSIZE;
948 oco->count = notWritten; /* this will include the pad */