Searched defs:ntotal (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/libtecla/common/
H A Dfreelist.c50 long ntotal; /* The total number of nodes in the free list */ member in struct:FreeList
106 fl->ntotal = 0;
321 return fl ? (fl->ntotal - fl->nbusy) : 0;
364 fl->ntotal += fl->blocking_factor;
H A Dchrqueue.c81 int ntotal; /* The total number of characters that have been */ member in struct:GlCharQueue
112 cq->nflush = cq->ntotal = 0;
186 int boff = cq->ntotal % GL_CQ_SIZE;
210 boff = cq->ntotal % GL_CQ_SIZE;
257 cq->ntotal += nnew;
283 cq->nflush = cq->ntotal = 0;
297 return (cq && cq->buffers.head) ? (cq->ntotal - cq->nflush) : 0;
346 int nmodulo = cq->ntotal % GL_CQ_SIZE;
H A Dgetline.c215 int ntotal; /* The number of characters in line[] */ member in struct:__anon4072
417 int ntotal; /* The number of characters in gl->line[] */ member in struct:GetLine
1791 gl->ntotal = 0;
1818 gl->vi.undo.ntotal = 0;
2969 if((gl->insert || buff_curpos >= gl->ntotal) && gl->ntotal >= gl->linelen)
2974 if(gl->insert || buff_curpos >= gl->ntotal) {
2978 if(buff_curpos < gl->ntotal)
3090 if(gl->ntotal + buff_slen > gl->linelen)
3096 if(gl->ntotal > g
[all...]

Completed in 265 milliseconds