Home
last modified time | relevance | path

Searched refs:count (Results 26 – 50 of 2307) sorted by relevance

12345678910>>...93

/illumos-gate/usr/src/cmd/dtrace/test/tst/common/aggs/
H A Dtst.lquantize.d.out3 value ------------- Distribution ------------- count
9 value ------------- Distribution ------------- count
15 value ------------- Distribution ------------- count
21 value ------------- Distribution ------------- count
27 value ------------- Distribution ------------- count
33 value ------------- Distribution ------------- count
39 value ------------- Distribution ------------- count
45 value ------------- Distribution ------------- count
51 value ------------- Distribution ------------- count
57 value ------------- Distribution ------------- count
H A Dtst.quantize.d.out3 value ------------- Distribution ------------- count
9 value ------------- Distribution ------------- count
15 value ------------- Distribution ------------- count
21 value ------------- Distribution ------------- count
27 value ------------- Distribution ------------- count
33 value ------------- Distribution ------------- count
39 value ------------- Distribution ------------- count
45 value ------------- Distribution ------------- count
51 value ------------- Distribution ------------- count
57 value ------------- Distribution ------------- count
H A Dtst.clearlquantize.d.out3 value ------------- Distribution ------------- count
14 value ------------- Distribution ------------- count
23 value ------------- Distribution ------------- count
34 value ------------- Distribution ------------- count
42 value ------------- Distribution ------------- count
53 value ------------- Distribution ------------- count
60 value ------------- Distribution ------------- count
71 value ------------- Distribution ------------- count
78 value ------------- Distribution ------------- count
89 value ------------- Distribution ------------- count
H A Dtst.aggpackbanner.ksh.out3 key min .------------------------------------------. max | count
12 key min .------------------------------------------. max | count
21 key min .------------------------------------------. max | count
30 key min .------------------------------------------. max | count
39 key min .------------------------------------------. max | count
49 key min .------------------------------------------. max | count
58 key min .------------------------------------------. max | count
67 key min .------------------------------------------. max | count
76 key min .------------------------------------------. max | count
86 key min .------------------------------------------. max | count
[all …]
/illumos-gate/usr/src/cmd/tcpd/
H A Dscaffold.c52 int count; local
56 for (count = 0; hp->h_addr_list[count] != 0; count++)
60 + (hp->h_length + sizeof(char *)) * count)) == 0) {
68 hb->host.h_addr_list[count] = 0;
69 data = (char *) (hb->host.h_addr_list + count + 1);
71 for (count = 0; (addr = hp->h_addr_list[count]) != 0; count++) {
72 hb->host.h_addr_list[count] = data + hp->h_length * count;
73 memcpy(hb->host.h_addr_list[count], addr, hp->h_length);
130 int count; local
140 for (count = 0; (addr = hp->h_addr_list[count]) != 0; count++) {
[all …]
/illumos-gate/usr/src/cmd/initpkg/
H A Dnscd.conf47 keep-hot-count auth_attr 20
57 keep-hot-count ethers 20
67 keep-hot-count group 20
72 keep-hot-count hosts 20
77 keep-hot-count ipnodes 20
82 keep-hot-count netmasks 20
87 keep-hot-count networks 20
92 keep-hot-count passwd 20
117 keep-hot-count rpc 20
127 keep-hot-count tnrhdb 20
[all …]
/illumos-gate/usr/src/uts/common/syscall/
H A Dgetdents.c105 count = MAXGETDENTS_SIZE; in getdents32()
107 bufsize = count; in getdents32()
112 aiov.iov_len = count; in getdents32()
117 auio.uio_resid = count; in getdents32()
125 count = count - auio.uio_resid; in getdents32()
133 while (nsize < count) { in getdents32()
167 ASSERT(osize <= count); in getdents32()
219 aiov.iov_len = count; in getdents64()
224 auio.uio_resid = count; in getdents64()
234 count = count - auio.uio_resid; in getdents64()
[all …]
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzfs_sa.c203 int count = 0; in zfs_sa_upgrade() local
247 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_ZNODE_ACL(zfsvfs), NULL, in zfs_sa_upgrade()
250 if (sa_bulk_lookup_locked(hdl, bulk, count) != 0) in zfs_sa_upgrade()
263 count = 0; in zfs_sa_upgrade()
265 SA_ADD_BULK_ATTR(sa_attrs, count, SA_ZPL_SIZE(zfsvfs), NULL, in zfs_sa_upgrade()
267 SA_ADD_BULK_ATTR(sa_attrs, count, SA_ZPL_GEN(zfsvfs), in zfs_sa_upgrade()
271 SA_ADD_BULK_ATTR(sa_attrs, count, SA_ZPL_PARENT(zfsvfs), in zfs_sa_upgrade()
298 SA_ADD_BULK_ATTR(sa_attrs, count, SA_ZPL_DACL_ACES(zfsvfs), in zfs_sa_upgrade()
302 SA_ADD_BULK_ATTR(sa_attrs, count, SA_ZPL_XATTR(zfsvfs), in zfs_sa_upgrade()
310 SA_ADD_BULK_ATTR(sa_attrs, count, SA_ZPL_SCANSTAMP(zfsvfs), in zfs_sa_upgrade()
[all …]
/illumos-gate/usr/src/lib/print/libprint/common/
H A Dlist.c62 int count; in list_append() local
64 for (count = 0; list[count] != NULL; count++) in list_append()
67 if ((count + 1) % _list_increment == 0) { /* increase size */ in list_append()
69 int new_size = (((count + 1) / _list_increment) + 1) * in list_append()
75 for (count = 0; list[count] != NULL; count++) in list_append()
76 new_list[count] = list[count]; in list_append()
80 list[count] = item; in list_append()
144 int count = 0; in list_concatenate() local
147 list[count++] = list1[size1]; in list_concatenate()
149 list[count++] = list2[size2]; in list_concatenate()
/illumos-gate/usr/src/lib/libbsm/common/
H A Dadr.c54 adr_char(adr_t *adr, char *cp, int count) in adr_char() argument
56 while (count-- > 0) in adr_char()
64 adr_short(adr_t *adr, short *sp, int count) in adr_short() argument
67 for (; count-- > 0; sp++) { in adr_short()
80 for (; count-- > 0; sp++) { in adr_ushort()
91 adr_long(adr_t *adr, int32_t *lp, int count);
93 adr_int32(adr_t *adr, int32_t *lp, int count) in adr_int32() argument
98 for (; count-- > 0; lp++) { in adr_int32()
112 adr_uid(adr_t *adr, uid_t *up, int count) in adr_uid() argument
117 for (; count-- > 0; up++) { in adr_uid()
[all …]
/illumos-gate/usr/src/lib/libfsmgt/common/
H A Dfs_shares.c145 *count = 0; in fs_parse_opts_for_sec_modes()
179 if (*count > 0) { in fs_parse_opts_for_sec_modes()
181 secstringarray, *count); in fs_parse_opts_for_sec_modes()
189 (*count)++; in fs_parse_opts_for_sec_modes()
196 if (*count > 0) { in fs_parse_opts_for_sec_modes()
198 secstringarray, *count); in fs_parse_opts_for_sec_modes()
205 (*count)++; in fs_parse_opts_for_sec_modes()
229 *count = 0; in fs_create_array_from_accesslist()
240 list_array, *count); in fs_create_array_from_accesslist()
257 if (list_array[*count] == NULL) { in fs_create_array_from_accesslist()
[all …]
/illumos-gate/usr/src/cmd/tcopy/
H A Dtcopy.c97 count++; in main()
133 if (count - lcount > 1) in main()
136 filen, lcount, count-1, ln); in main()
142 lcount = count; in main()
150 if (count - lcount > 1) in main()
153 filen, lcount, count-1, ln); in main()
168 count = 0; in main()
186 if (count > lcount) in RUBOUT()
187 --count; in RUBOUT()
188 if (count) in RUBOUT()
[all …]
/illumos-gate/usr/src/lib/libcurses/screen/
H A DmemSset.c54 int count; /* %r8 */ in memSset() local
58 count = (n - 1) * sizeof (chtype); in memSset()
59 if (count > 0) { in memSset()
67 } else if (count == 0) in memSset()
75 int count; /* %r8 */
77 count = (n - 1) * sizeof (chtype);
78 if (count > 0) {
91 } else if (count == 0)
108 memcpy(char *to, char *from, int count) in memcpy() argument
110 if (count > 0) { in memcpy()
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/llquantize/
H A Dtst.bases.d.out3 value ------------- Distribution ------------- count
15 value ------------- Distribution ------------- count
28 value ------------- Distribution ------------- count
39 value ------------- Distribution ------------- count
68 value ------------- Distribution ------------- count
92 value ------------- Distribution ------------- count
109 value ------------- Distribution ------------- count
135 value ------------- Distribution ------------- count
156 value ------------- Distribution ------------- count
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/multiaggs/
H A Dtst.zero.d.out5 value ------------- Distribution ------------- count
11 value ------------- Distribution ------------- count
17 value ------------- Distribution ------------- count
23 value ------------- Distribution ------------- count
28 value ------------- Distribution ------------- count
34 value ------------- Distribution ------------- count
39 value ------------- Distribution ------------- count
45 value ------------- Distribution ------------- count
50 value ------------- Distribution ------------- count
/illumos-gate/usr/src/lib/fm/topo/maps/i86pc/
H A Dfan-hc-topology.xmlgen53 count => 2,
58 count => 3,
81 count => 5,
90 count => 2,
115 count => 2,
120 count => 3,
128 count => 2,
152 count => 4,
173 count => 2,
180 count => 4,
[all …]
/illumos-gate/usr/src/cmd/format/
H A Dmenu_defect.c99 work_list.header.count); in d_restore()
151 work_list.header.count); in d_original()
235 work_list.header.count); in d_extract()
342 work_list.header.count = 0; in d_add()
369 int i, count, num; in d_delete() local
378 count = work_list.header.count; in d_delete()
423 work_list.header.count--; in d_delete()
682 work_list.header.count = count; in d_load()
801 work_list.header.count = 0; in commit_list()
825 cur_list.header.count); in commit_list()
[all …]
/illumos-gate/usr/src/stand/lib/sa/
H A Dstrings.c47 bcopy(const void *src, void *dest, size_t count) in bcopy() argument
52 if (count == 0) in bcopy()
55 if (csrc < cdest && (csrc + count) > cdest) { in bcopy()
57 while (count != 0) in bcopy()
58 --count, *(cdest + count) = *(csrc + count); in bcopy()
60 while (count != 0) in bcopy()
61 --count, *cdest++ = *csrc++; in bcopy()
/illumos-gate/usr/src/test/crypto-tests/tests/longhash/
H A Dlonghash.c68 VERIFY3U(0, ==, ctx.count.c32[0]); in test_update_32()
69 VERIFY3U(0, ==, ctx.count.c32[1]); in test_update_32()
78 VERIFY3U(c0, ==, ctx.count.c32[0]); in test_update_32()
79 VERIFY3U(c1, ==, ctx.count.c32[1]); in test_update_32()
92 VERIFY3U(0, ==, ctx.count.c32[0]); in test_update_32()
102 VERIFY3U(c0, ==, ctx.count.c32[0]); in test_update_32()
103 VERIFY3U(c1, ==, ctx.count.c32[1]); in test_update_32()
114 VERIFY3U(0, ==, ctx.count.c64[0]); in test_update_64()
115 VERIFY3U(0, ==, ctx.count.c64[1]); in test_update_64()
124 VERIFY3U(c0, ==, ctx.count.c64[0]); in test_update_64()
[all …]
/illumos-gate/usr/src/common/ucode/
H A Ducode_utils_amd.c46 uint32_t count; in ucode_validate_amd() local
70 count = *ptr++; in ucode_validate_amd()
71 if (count > size || count % 16 != 0) in ucode_validate_amd()
75 ptr = (uint32_t *)(((uint8_t *)ptr) + count); in ucode_validate_amd()
76 size -= count; in ucode_validate_amd()
92 if (((count = *ptr++) > size)) in ucode_validate_amd()
95 ptr = (uint32_t *)(((uint8_t *)ptr) + count); in ucode_validate_amd()
96 size -= count; in ucode_validate_amd()
/illumos-gate/usr/src/uts/common/fs/udfs/
H A Dudf_bmap.c185 #define BASE(count) ((count) & ~lbmask) argument
186 #define CEIL(count) (((count) + lbmask) & ~lbmask) argument
188 #define PBASE(count) ((count) & PAGEMASK) argument
189 #define PCEIL(count) (((count) + PAGEOFFSET) & PAGEMASK) argument
272 count = end_req; in ud_bmap_write()
788 uint64_t count; in ud_last_alloc_ext() local
1138 *count = 0; in ud_create_ext()
1169 *count = 0; in ud_create_ext()
1201 if (*count) { in ud_create_ext()
1217 *count = 0; in ud_create_ext()
[all …]
/illumos-gate/usr/src/uts/sun4v/io/n2rng/
H A Dn2rng_entp_algs.c239 size_t count = 1; in n2rng_renyi_entropy() local
250 if (count > largestcount) { in n2rng_renyi_entropy()
251 largestcount = count; in n2rng_renyi_entropy()
254 shannonsum -= (count * (lg2(count) + in n2rng_renyi_entropy()
258 sqsum += count * count; in n2rng_renyi_entropy()
259 count = 1; in n2rng_renyi_entropy()
262 count++; in n2rng_renyi_entropy()
267 if (count > largestcount) { in n2rng_renyi_entropy()
268 largestcount = count; in n2rng_renyi_entropy()
271 shannonsum -= (count * (lg2(count) + in n2rng_renyi_entropy()
[all …]
/illumos-gate/usr/src/uts/common/fs/hsfs/
H A Dhsfs_vnops.c664 uint_t count; in hsfs_ra_task() local
669 for (count = 0; count < info->bufsused; count++) { in hsfs_ra_task()
683 for (count = 0; count < info->bufsused; count++) { in hsfs_ra_task()
728 uint_t count; in hsfs_getpage_ra() local
910 bufs[count].b_bufsize = bufs[count].b_bcount; in hsfs_getpage_ra()
1180 for (count = 0; count < bufcnt; count++) { in hsfs_getapage()
1285 bufs[count].b_bufsize = bufs[count].b_bcount; in hsfs_getapage()
1334 for (count = 0; count < bufsused; count++) { in hsfs_getapage()
1341 for (count = 0; count < bufsused; count++) { in hsfs_getapage()
1376 for (count = 0; count < bufcnt; count++) { in hsfs_getapage()
[all …]
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/telnet/
H A Dring.c106 ring->size = count; in ring_init()
157 ring_supplied(Ring *ring, int count) in ring_supplied() argument
167 ring_consumed(Ring *ring, int count) in ring_consumed() argument
169 if (count == 0) /* don't update anything */ in ring_consumed()
178 ring->clearto <= ring->consume + count) in ring_consumed()
180 else if (ring->consume + count > ring->top && in ring_consumed()
279 while (count) { in ring_supply_data()
283 count -= i; in ring_supply_data()
298 while (count) { in ring_consume_data()
299 i = MIN(count, ring_full_consecutive(ring)); in ring_consume_data()
[all …]
/illumos-gate/usr/src/lib/smbclnt/libfksmbfs/common/
H A Dfake_getdents.c57 fake_getdents(vnode_t *vp, offset_t *offp, void *buf, size_t count) in fake_getdents() argument
64 if (count < sizeof (struct dirent64)) in fake_getdents()
70 if (count > MAXGETDENTS_SIZE) in fake_getdents()
71 count = MAXGETDENTS_SIZE; in fake_getdents()
78 aiov.iov_len = count; in fake_getdents()
83 auio.uio_resid = count; in fake_getdents()
92 count = count - auio.uio_resid; in fake_getdents()
95 return (count); in fake_getdents()

12345678910>>...93