Searched refs:count (Results 51 - 75 of 878) sorted by relevance

1234567891011>>

/osnet-11/usr/src/cmd/dtrace_toolkit/DTT/Shell/
H A Dsh_calls.d3 * sh_calls.d - count Bourne calls (func/builtin/cmd/subsh) using DTrace.
49 @calls[basename(copyinstr(arg0)), "func", copyinstr(arg1)] = count();
54 @calls[basename(copyinstr(arg0)), "builtin", copyinstr(arg1)] = count();
59 @calls[basename(copyinstr(arg0)), "cmd", copyinstr(arg1)] = count();
65 @calls[basename(copyinstr(arg0)), "subsh", "-"] = count();
/osnet-11/usr/src/cmd/dtrace_toolkit/DTT/System/
H A Dtopsyscall12 # USAGE: topsyscall [-Cs] [interval [count]]
52 count=-1; interval=1; opt_persec=0; opt_clear=1
61 USAGE: topsyscall [-s] [interval [count]]
78 count=$1; shift
99 inline int COUNTER = '$count';
114 @Name[probefunc] = count();
115 @Total = count();
148 /* print syscall count */
/osnet-11/usr/src/lib/libc/port/print/
H A Dfprintf.c52 ssize_t count; local
75 count = _ndoprnt(format, ap, iop, 0);
78 if (FERROR(iop) || count == EOF) {
86 if ((size_t)count > MAXINT) {
90 return ((int)count);
108 ssize_t count; local
112 count = _vfprintf_c89(iop, format, ap);
114 return ((int)count);
H A Dprintf.c46 ssize_t count; local
69 count = _ndoprnt(format, ap, stdout, 0);
73 if (FERROR(stdout) || count == EOF) {
81 if ((size_t)count > MAXINT) {
85 return ((int)count);
104 ssize_t count; local
108 count = _vprintf_c89(format, ap);
110 return ((int)count);
H A Dsnprintf.c47 ssize_t count; local
82 count = _ndoprnt(format, ap, &siop, 0);
87 if (count == EOF)
91 if ((size_t)count > max) {
95 return ((int)count);
114 ssize_t count; local
118 count = _vsnprintf_c89(string, n, format, ap);
120 return ((int)count);
/osnet-11/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);
/osnet-11/usr/src/lib/sun_fc/common/
H A DSun_fcGetFcpTargetMapping.cc71 int count; local
116 for (count = current; count < limit; count++) {
117 memcpy(&mapping->entry[count].ScsiId,
118 &mappingV2->entry[count-current].ScsiId,
119 sizeof (mapping->entry[count].ScsiId));
120 memcpy(&mapping->entry[count].FcpId,
121 &mappingV2->entry[count-current].FcpId,
122 sizeof (mapping->entry[count]
[all...]
/osnet-11/usr/src/lib/libntfs/common/libntfs/
H A Dbitmap.c51 * @count: number of bits to set
54 * Set @count bits starting at bit @start_bit in the bitmap described by the
60 s64 count, int value)
63 s64 bufsize, br, left = count;
67 if (!na || start_bit < 0 || count < 0) {
79 bufsize = ((count - (bit ? 8 - bit : 0) + 7) >> 3) + firstbyte;
183 ntfs_log_trace("Last buffer but count is not zero (= "
194 vol->nr_free_mft_records -= count;
196 vol->nr_free_mft_records += count;
200 vol->nr_free_clusters -= count;
59 ntfs_bitmap_set_bits_in_run(ntfs_attr *na, s64 start_bit, s64 count, int value) argument
226 ntfs_bitmap_set_run(ntfs_attr *na, s64 start_bit, s64 count) argument
242 ntfs_bitmap_clear_run(ntfs_attr *na, s64 start_bit, s64 count) argument
[all...]
/osnet-11/usr/src/lib/libresolv2/common/bsd/
H A Dwritev.c44 int i, rcode = 0, count = 0; local
52 count += rcode;
55 if (count == 0)
58 return (count);
70 int count = 0; local
77 count += written;
82 return (count);
/osnet-11/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DAvgValue.java47 private final long count; field in class:AvgValue
54 new String[] {"value", "total", "count"});
69 * @throws IllegalArgumentException if the given count is negative
71 * total and count
78 count = averagedValueCount;
85 if (count < 0) {
86 throw new IllegalArgumentException("count is negative");
89 if (count == 0) {
92 "count of values is zero, average is non-zero (" +
96 if (average != (total / count)) {
[all...]
/osnet-11/usr/src/lib/libadm/common/
H A Dpkgnmchk.c58 int count, i, n; local
86 count = 0;
88 count++;
94 if (!count || (count > 4))
100 count = 0;
107 count++, pkg++;
112 if (count > ABI_NAMELNGTH)
114 } else if (count > NON_ABI_NAMELNGTH)
/osnet-11/usr/src/lib/libgen/common/
H A Dstrccpy.c60 int count; local
93 count = 0;
97 if (++count > 1) { /* 3 digits max */
/osnet-11/usr/src/cmd/dtrace_toolkit/DTT/Bin/
H A Drb_calls.d3 * rb_calls.d - count Ruby calls using DTrace.
50 @calls[basename(copyinstr(arg2)), "method", this->name] = count();
58 @calls[this->filename, "obj-new", this->name] = count();
64 @calls[".", "obj-free", this->name] = count();
69 @calls[".", "gc", "begin"] = count();
75 @calls[basename(copyinstr(arg1)), "raise", this->name] = count();
80 @calls[basename(copyinstr(arg0)), "rescue", "-"] = count();
H A Dpl_syscalls.d3 * pl_syscalls.d - count Perl subroutine calls and syscalls using DTrace.
51 @calls[basename(copyinstr(arg1)), "sub", copyinstr(arg0)] = count();
57 @calls[basename(execname), "syscall", probefunc] = count();
H A Dpy_syscalls.d3 * py_syscalls.d - count Python function calls and syscalls using DTrace.
49 @calls[basename(copyinstr(arg0)), "func", copyinstr(arg1)] = count();
55 @calls[basename(execname), "syscall", probefunc] = count();
H A Dtcl_calls.d3 * tcl_calls.d - count Tcl calls (proc/cmd) using DTrace.
51 @calls[pid, "proc", copyinstr(arg0)] = count();
56 @calls[pid, "cmd", copyinstr(arg0)] = count();
/osnet-11/usr/src/cmd/dtrace_toolkit/DTT/Ruby/
H A Drb_calls.d3 * rb_calls.d - count Ruby calls using DTrace.
50 @calls[basename(copyinstr(arg2)), "method", this->name] = count();
58 @calls[this->filename, "obj-new", this->name] = count();
64 @calls[".", "obj-free", this->name] = count();
69 @calls[".", "gc", "begin"] = count();
75 @calls[basename(copyinstr(arg1)), "raise", this->name] = count();
80 @calls[basename(copyinstr(arg0)), "rescue", "-"] = count();
/osnet-11/usr/src/lib/libc/port/threads/
H A Dsema.c41 return (sp->count == 0);
47 sema_init(sema_t *sp, unsigned int count, int type, void *arg) argument
52 (count > _semvaluemax))
55 sp->count = count;
90 uint_t count; local
109 if (ssp && lsp->count == 0) {
111 if (lsp->count == 0) /* still looks like sleep */
126 lsp->count != 0) { /* and non-blocking */
130 * to block signals while modifying the count
236 uint_t count; local
303 uint_t count; local
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt/cipher/
H A Drmd.h30 int count; member in struct:__anon536
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/comp/
H A Dmultiline.t32 $count = 0;
36 $count = $count + 1;
41 is($count, 7, ' line count');
/osnet-11/usr/src/cmd/dtrace_toolkit/DTT/Perl/
H A Dpl_syscalls.d3 * pl_syscalls.d - count Perl subroutine calls and syscalls using DTrace.
51 @calls[basename(copyinstr(arg1)), "sub", copyinstr(arg0)] = count();
57 @calls[basename(execname), "syscall", probefunc] = count();
/osnet-11/usr/src/cmd/dtrace_toolkit/DTT/Python/
H A Dpy_syscalls.d3 * py_syscalls.d - count Python function calls and syscalls using DTrace.
49 @calls[basename(copyinstr(arg0)), "func", copyinstr(arg1)] = count();
55 @calls[basename(execname), "syscall", probefunc] = count();
/osnet-11/usr/src/cmd/dtrace_toolkit/DTT/Tcl/
H A Dtcl_calls.d3 * tcl_calls.d - count Tcl calls (proc/cmd) using DTrace.
51 @calls[pid, "proc", copyinstr(arg0)] = count();
56 @calls[pid, "cmd", copyinstr(arg0)] = count();
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Net/demos/
H A Dpop316 $count = $pop->login($user);
18 if($count)
/osnet-11/usr/src/lib/sun_sas/common/
H A DSun_sasGetNumberOfPorts.c38 int count, index; local
69 for (count = 0, hba_port_ptr = hba_ptr->first_port;
70 hba_port_ptr != NULL; hba_port_ptr = hba_port_ptr->next, count++) {}
72 *numberofports = count;

Completed in 94 milliseconds

1234567891011>>