Searched defs:count (Results 1 - 25 of 1550) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/mpapi/libmpscsi_vhci/common/
H A DMP_SetProprietaryProperties.c32 MP_SetProprietaryProperties(MP_OID oid, MP_UINT32 count, argument
43 " - count: %d",
44 count);
/illumos-gate/usr/src/lib/libbc/libc/stdio/4.2/
H A Dprintf.c41 int count; local
55 count = _doprnt(format, ap, stdout);
57 return (count);
H A Dfprintf.c42 int count; local
60 count = _doprnt(format, ap, iop);
67 count = _doprnt(format, ap, iop);
70 return (count);
H A Dvfprintf.c42 int count; local
58 count = _doprnt(format, ap, iop);
65 count = _doprnt(format, ap, iop);
67 return (count);
/illumos-gate/usr/src/lib/libbc/libc/stdio/sys5/
H A Dprintf.c41 int count; local
55 count = _doprnt(format, ap, stdout);
57 return (ferror(stdout)? EOF: count);
H A Dvprintf.c46 int count; local
58 count = _doprnt(format, ap, stdout);
59 return (ferror(stdout)? EOF: count);
H A Dfprintf.c42 int count; local
60 count = _doprnt(format, ap, iop);
67 count = _doprnt(format, ap, iop);
69 return (ferror(iop)? EOF: count);
H A Dsprintf.c42 int count; local
50 count = _doprnt(format, ap, &siop);
53 return(count);
H A Dvfprintf.c42 int count; local
58 count = _doprnt(format, ap, iop);
65 count = _doprnt(format, ap, iop);
67 return (ferror(iop)? EOF: count);
/illumos-gate/usr/src/cmd/sgs/tools/common/
H A Dfindprime.c36 findprime(uint_t count) argument
40 if (count <= 3)
48 if ((count & 0x1) == 0)
49 count++;
51 for (h = count, f = 2; f * f <= h; f++)
/illumos-gate/usr/src/ucblib/libucb/port/stdio/
H A Dprintf.c44 int count; local
58 count = _doprnt((char *) format, ap, stdout);
60 return (count);
H A Dfprintf.c53 int count; local
68 count = _doprnt((char *) format, ap, iop);
70 return (count);
H A Dvfprintf.c53 int count; local
65 count = _doprnt((char *) format, ap, iop);
66 return (count);
/illumos-gate/usr/src/lib/sun_fc/common/
H A DSun_fcGetEventBuffer.cc39 PHBA_EVENTINFO buffer, HBA_UINT32 *count) {
38 Sun_fcGetEventBuffer(HBA_HANDLE handle, PHBA_EVENTINFO buffer, HBA_UINT32 *count) argument
/illumos-gate/usr/src/lib/sun_sas/common/
H A DSun_sasGetNumberOfAdapters.c35 int count; local
40 for (count = 0, hba_ptr = global_hba_head;
41 hba_ptr != NULL; hba_ptr = hba_ptr->next, count++) {}
45 return (count);
/illumos-gate/usr/src/lib/libxcurses/src/libc/wide/
H A Dwio_put.c60 int count, mb_len; local
85 for (ptr = wio->_mb, count = 0; count < mb_len; ++ptr, ++count)
91 wio->_next = count;
93 return count;
/illumos-gate/usr/src/lib/libresolv2/common/bsd/
H A Dreadv.c24 int count = 0; local
31 count += bytes;
36 return (count);
/illumos-gate/usr/src/lib/libc/port/print/
H A Dvprintf.c63 ssize_t count; local
84 count = _ndoprnt(format, ap, stdout, _F_INTMAX32);
86 count = _ndoprnt(format, ap, stdout, 0);
89 if (FERROR(stdout) || count == EOF) {
97 if ((size_t)count > MAXINT) {
101 return ((int)count);
/illumos-gate/usr/src/common/net/dhcp/
H A Dipv4_sum.c36 ipv4cksum(uint16_t *cp, uint16_t count) argument
41 if (count == 0)
44 count >>= 1;
45 while (count--) {
/illumos-gate/usr/src/cmd/fs.d/pcfs/fsck/
H A Dinject.c44 static int count = 0; local
46 if ((count++ >= 263 && count <= 267) ||
47 (count >= 381 && count <= 385) ||
48 (count >= 1014 && count <= 1019) ||
49 (count >= 1119 && count <= 1123) ||
50 (count >
[all...]
/illumos-gate/usr/src/cmd/svr4pkg/pkginstall/
H A Dbackup.c42 static int count = 0; local
46 if (count++ == 0) {
/illumos-gate/usr/src/cmd/lp/filter/postscript/postio/
H A Dslowsend.c135 int count; /* bytes successfully written */ local
149 if ( (count = write(ttyo, &block[head], num)) == -1 )
151 else if ( count == 0 )
154 head += count;
155 return(count);
/illumos-gate/usr/src/lib/lvm/libsvm/common/hdrs/
H A Dlibsvm.h47 int count; /* number of components in the metadevice */ member in struct:__anon4241
/illumos-gate/usr/src/lib/libgen/common/
H A Dstrccpy.c60 int count; local
93 count = 0;
97 if (++count > 1) { /* 3 digits max */
/illumos-gate/usr/src/lib/libxcurses2/src/libc/wide/
H A Dwio_put.c61 int count, mb_len; local
87 for (ptr = wio->_mb, count = 0; count < mb_len; ++ptr, ++count)
93 wio->_next = count;
95 return (count);

Completed in 129 milliseconds

1234567891011>>