Lines Matching defs:nbusy
189 int nbusy; /* The number of line segments in buffer[] that are */
281 glh->nbusy = 0;
1662 glh->nbusy = 0;
1683 glh->nbusy = 0;
1690 int nbusy; /* The number of used line segments in the new buffer */
1695 while(glh->list.head && glh->nbusy > nbuff)
1708 nbusy = 0;
1714 hnode->head = buffer + nbusy;
1716 buffer[nbusy] = *seg;
1717 buffer[nbusy].next = seg->next ? &buffer[nbusy+1] : NULL;
1718 nbusy++;
1725 for(i=nbusy; i<nbuff-1; i++)
1738 glh->nbusy = nbusy;
1739 glh->nfree = nbuff - nbusy;
1740 glh->unused = glh->nfree > 0 ? (buffer + nbusy) : NULL;
1843 glh->nbusy = 0;
1846 glh->nbusy = glh->nfree = 0;
2131 *buff_size = (glh->nbusy + glh->nfree) * GLH_SEG_SIZE;
2136 *buff_used = glh->nbusy * GLH_SEG_SIZE;
2199 while(glh->nfree < nseg && glh->nbusy > 0)
2228 glh->nbusy += nseg;
2304 glh->nbusy -= nseg;