Home | History | Annotate | Download | only in lib

Lines Matching defs:nbytes_avail

69   size_t nbytes_avail;		/* Allocated but unused bytes in *LINEPTR.  */
86 nbytes_avail = size - offset;
89 if (nbytes_avail == 0 && nmax <= size)
94 /* Here always ptr + size == read_pos + nbytes_avail. */
102 if (nbytes_avail < 2 && size < nmax)
118 nbytes_avail = newsize - (read_pos - ptr);
124 read_pos = size - nbytes_avail + ptr;
137 if (nbytes_avail >= 2)
140 nbytes_avail--;
149 At this point we know that nbytes_avail >= 1. */