Searched refs:nnew (Results 1 - 7 of 7) sorted by relevance

/illumos-gate/usr/src/lib/libtecla/common/
H A Dioutil.c106 int nnew; /* The number of characters to be displayed next */ local
181 nnew = 0;
184 (nnew==0 && last==margin_width)); i++) {
187 nnew = i-ndone;
191 nnew = i-ndone+1;
202 if(nnew==0 && string[i] == '\0')
203 nnew = i-ndone;
207 if(write_fn(data, string+ndone, nnew) != nnew)
209 ndone += nnew;
285 int nnew = n <= FILL_SIZE ? n : FILL_SIZE; local
311 int nnew; /* The number of characters written in the latest write */ local
[all...]
H A Dchrqueue.c181 int nnew; /* The number of characters to append to cq->buffers.tail */ local
252 nnew = nleft < ntodo ? nleft : ntodo;
254 * Append the latest prefix of nnew characters.
256 memcpy(cq->buffers.tail->bytes + boff, chars + ndone, nnew);
257 cq->ntotal += nnew;
258 ndone += nnew;
364 int nnew = write_fn(data, cq->buffers.head->bytes + local
369 if(nnew > 0) {
374 cq->nflush += nnew;
379 if(nnew
[all...]
H A Derrmsg.c132 int nnew = slen < nleft ? slen : nleft; local
133 strncpy(err->msg + msglen, s, nnew);
134 msglen += nnew;
H A Dgetline.c6875 int nnew = write(gl->output_fd, s, n-ndone); local
6880 if(nnew > 0) {
6881 ndone += nnew;
12017 int nnew; /* The number of characters actually recorded */ local
12022 nnew = bufpos + n <= gl->linelen ? n : (gl->linelen - bufpos);
12024 * Record the first nnew characters of s[] in the buffer.
12026 for(i=0; i<nnew; i++)
12031 return nnew < n;
/illumos-gate/usr/src/lib/libnisdb/
H A Dldap_val.h58 void copyIndex(__nis_index_t *old, __nis_index_t *nnew,
85 __nis_obj_spec_t *nnew, int *err);
89 __nis_search_triple_t *nnew, int *err);
95 __nis_triple_or_obj_t *nnew, int *err);
102 __nis_mapping_item_t *nnew, int *err);
/illumos-gate/usr/src/cmd/enhance/
H A Denhance.c590 int nnew = read(fd, rbuff + len, PTY_MAX_READ - len); local
591 if(nnew < 0)
593 len += nnew;
677 int nnew = write(fd, string + ndone, n - ndone); local
678 if(nnew > 0)
679 ndone += nnew;
/illumos-gate/usr/src/uts/common/fs/proc/
H A Dprvnops.c4867 ulong_t nold, nnew; local
4914 nnew = nentries;
4920 nnew--;
4931 if (nold + nnew > as->a_sizedir) {
4937 ulong_t newsize = (nold + nnew + 0xf) & ~0xf;
4951 if (nnew) {

Completed in 123 milliseconds