HomeSort by relevance Sort by last modified time
    Searched defs:count (Results 1 - 25 of 1379) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /onnv/onnv-gate/usr/src/cmd/fs.d/pcfs/fsck/
inject.c 44 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 >= 1888 && count <= 1892))
    [all...]
  /onnv/onnv-gate/usr/src/lib/libbc/libc/stdio/sys5/
vprintf.c 46 int count; local
58 count = _doprnt(format, ap, stdout);
59 return (ferror(stdout)? EOF: count);
fprintf.c 42 int count; local
60 count = _doprnt(format, ap, iop);
67 count = _doprnt(format, ap, iop);
69 return (ferror(iop)? EOF: count);
printf.c 41 int count; local
55 count = _doprnt(format, ap, stdout);
57 return (ferror(stdout)? EOF: count);
sprintf.c 42 int count; local
50 count = _doprnt(format, ap, &siop);
53 return(count);
vfprintf.c 42 int count; local
58 count = _doprnt(format, ap, iop);
65 count = _doprnt(format, ap, iop);
67 return (ferror(iop)? EOF: count);
vsprintf.c 48 int count; local
54 count = _doprnt(format, ap, &siop);
56 return (count);
  /onnv/onnv-gate/usr/src/ucblib/libucb/port/stdio/
vfprintf.c 53 int count; local
65 count = _doprnt((char *) format, ap, iop);
66 return (count);
fprintf.c 53 int count; local
68 count = _doprnt((char *) format, ap, iop);
70 return (count);
printf.c 44 int count; local
58 count = _doprnt((char *) format, ap, stdout);
60 return (count);
  /onnv/onnv-gate/usr/src/lib/libparted/common/lib/
strcspn.c 32 size_t count = 0; local
36 ++count;
38 return count;
40 return count;
  /onnv/onnv-gate/usr/src/cmd/lp/filter/postscript/postio/
slowsend.c 135 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);
  /onnv/onnv-gate/usr/src/lib/libbc/libc/stdio/4.2/
fprintf.c 42 int count; local
60 count = _doprnt(format, ap, iop);
67 count = _doprnt(format, ap, iop);
70 return (count);
printf.c 41 int count; local
55 count = _doprnt(format, ap, stdout);
57 return (count);
vfprintf.c 42 int count; local
58 count = _doprnt(format, ap, iop);
65 count = _doprnt(format, ap, iop);
67 return (count);
  /onnv/onnv-gate/usr/src/lib/libc/port/print/
vfprintf.c 62 ssize_t count; local
83 count = _ndoprnt(format, ap, iop, _F_INTMAX32);
85 count = _ndoprnt(format, ap, iop, 0);
89 if (FERROR(iop) || count == EOF) {
97 if ((size_t)count > MAXINT) {
101 return ((int)count);
vprintf.c 63 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);
vsprintf.c 61 ssize_t count; local
68 count = _ndoprnt(format, ap, &siop, _F_INTMAX32);
70 count = _ndoprnt(format, ap, &siop, 0);
74 if (count == EOF) {
78 if ((size_t)count > MAXINT) {
82 return ((int)count);
printf.c 48 ssize_t count; local
71 count = _ndoprnt(format, ap, stdout, 0);
75 if (FERROR(stdout) || count == EOF) {
83 if ((size_t)count > MAXINT) {
87 return ((int)count);
106 ssize_t count; local
110 count = _vprintf_c89(format, ap);
112 return ((int)count);
sprintf.c 47 ssize_t count; local
56 count = _ndoprnt(format, ap, &siop, 0);
59 if (count == EOF) {
64 if ((size_t)count > MAXINT) {
68 return ((int)count);
87 ssize_t count; local
91 count = _vsprintf_c89(string, format, ap);
93 return ((int)count);
  /onnv/onnv-gate/usr/src/psm/stand/old/bootblks/common/
process.c 35 int c, count = 0; local
40 (count = ++count % 8) ? ' ' : '\n');
  /onnv/onnv-gate/usr/src/uts/common/syscall/
profil.c 76 long count = 0; local
86 count = p->p_prof.pr_samples;
94 return (count);
  /onnv/onnv-gate/usr/src/cmd/svr4pkg/pkginstall/
backup.c 42 static int count = 0; local
46 if (count++ == 0) {
  /onnv/onnv-gate/usr/src/lib/sun_sas/common/
Sun_sasGetNumberOfAdapters.c 35 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);
  /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/ustack/
tst.spin.c 31 volatile long long count = 0; variable
37 while (count != -1) {
38 count++;

Completed in 3889 milliseconds

1 2 3 4 5 6 7 8 91011>>