HomeSort by relevance Sort by last modified time
    Searched defs:ndone (Results 1 - 13 of 13) sorted by null

  /onnv/onnv-gate/usr/src/lib/libbc/libc/stdio/common/
puts.c 48 register int ndone = 0, n; local
65 ndone += n;
71 return(ndone);
fputs.c 49 int ndone = 0, n; local
84 ndone += n;
97 return(ndone);
112 ndone += n;
115 return(ndone);
  /onnv/onnv-gate/usr/src/lib/libc/port/stdio/
puts.c 47 ssize_t ndone = 0L, n; local
90 ndone += len;
107 if (ndone <= INT_MAX)
108 return ((int)ndone);
fputs.c 53 ssize_t ndone = 0L, n; local
96 ndone += len;
109 if (ndone <= INT_MAX)
110 return ((int)ndone);
  /onnv/onnv-gate/usr/src/lib/libtecla/common/
ioutil.c 105 int ndone; /* The number of characters written from string[] */ local
149 for(ndone=0; string[ndone]; start=0) {
183 for(i=ndone; string[i] && (last+i-ndone < term_width - suffix_len ||
187 nnew = i-ndone;
191 nnew = i-ndone+1;
203 nnew = i-ndone;
207 if(write_fn(data, string+ndone, nnew) != nnew)
209 ndone += nnew
310 int ndone; \/* The total number of characters written *\/ local
    [all...]
chrqueue.c 166 int ndone = 0; /* The number of characters appended so far */ local
178 while(ndone < n) {
208 return ndone; /* Error */
226 return ndone;
248 ntodo = n - ndone;
256 memcpy(cq->buffers.tail->bytes + boff, chars + ndone, nnew);
258 ndone += nnew;
263 return ndone;
getline.c 3881 int ndone = 0; \/* The number of characters written so far *\/ local
6866 int ndone = 0; \/* The number of characters written so far *\/ local
10591 int ndone = _glq_append_chars(gl->cq, s, n, gl->flush_fn, gl); local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/enhance/
enhance.c 672 int ndone = 0; /* The number of characters written so far */ local
676 while(ndone < n) {
677 int nnew = write(fd, string + ndone, n - ndone);
679 ndone += nnew;
  /onnv/onnv-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
str_conv.c 239 size_t ndone;
257 ndone = 0;
259 if ((ndone = strftime(buffer, buflen, sftime_format_table[i], tmp)))
262 if (!ndone) {
268 ndone = strlen(buffer);
271 if (ndone && pad) {
272 for (i=ndone; i<buflen-1; i++)
276 return((ndone) ? 0 : ENOMEM);
238 size_t ndone; local
  /onnv/onnv-gate/usr/src/cmd/cpc/common/
cputrack.c 736 int ndone = 0; local
823 ndone++;
825 if (ndone < noffline)
  /onnv/onnv-gate/usr/src/cmd/troff/
nii.c 114 int ndone; variable
  /onnv/onnv-gate/usr/src/cmd/mdb/common/kmdb/
kmdb_kvm.c 141 size_t n, ndone, chunksz; local
157 ndone = 0;
162 return (ndone > 0 ? ndone : -1); /* errno set for us */
174 return (res < 0 ? res : ndone + res);
178 ndone += n;
184 return (ndone);
    [all...]
  /onnv/onnv-gate/usr/src/uts/sun4v/io/
vnet_gen.c 3604 int ndone = 0; local
    [all...]

Completed in 3180 milliseconds