Searched refs:count (Results 476 - 500 of 878) sorted by relevance

<<11121314151617181920>>

/osnet-11/usr/src/lib/libshadowtest/common/
H A Dlibshadowtest.c65 st_read_fidlist(const char *root, int idx, size_t *count) argument
120 *count = retlen / fidlen;
122 if ((ret = malloc(*count * sizeof (fid_t))) == NULL) {
128 for (i = 0; i < *count; i++) {
/osnet-11/usr/src/lib/fm/topo/modules/i86pc/x86pi/common/
H A Dx86pi.c308 ch_count = stypes[SMB_TYPE_CHASSIS].count;
312 stypes[SMB_TYPE_CHASSIS].count);
349 bb_count = notvisited = stypes[SMB_TYPE_BASEBOARD].count;
476 for (i = 0; i < smbc->count; i++) {
/osnet-11/usr/src/grub/grub2/include/grub/
H A Dnormal.h63 void (*hook) (const char *item, grub_completion_type_t type, int count));
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dsv.h107 Returns the value of the object's reference count.
110 Increments the reference count of the given SV.
113 Decrements the reference count of the given SV.
132 # define ATOMIC_INC(count) __ATOMIC_INCREMENT_LONG(&count)
133 # define ATOMIC_DEC_AND_TEST(res,count) res=(1==__ATOMIC_DECREMENT_LONG(&count))
136 # define ATOMIC_INC(count) STMT_START { \
138 ++count; \
141 # define ATOMIC_DEC_AND_TEST(res,count) STMT_STAR
[all...]
/osnet-11/usr/src/lib/libast/common/misc/
H A Dfindlib.h60 int count; member in struct:__anon1154
/osnet-11/usr/src/lib/libbsm/common/
H A Daudit_plugin.c104 * count - used with various options: how many times auditwarn has
108 __audit_dowarn(char *option, char *text, int count) argument
125 (void) snprintf(countstr, 5, "%d", count);
172 * count - used with various options: how many times auditwarn has
176 __audit_dowarn2(char *option, char *name, char *error, char *text, int count) argument
193 (void) snprintf(countstr, 5, "%d", count);
/osnet-11/usr/src/lib/libc/capabilities/sun4v/common/
H A Dmemset.s57 * if (count > 64) {
96 add %o2, %o3, %o2 ! update o2 with new count
216 andn %o2, 3, %o3 ! create word sized count in %o3
218 dec %o2 ! decrement count
229 and %o2, 3, %o2 ! leftover count, if any
/osnet-11/usr/src/lib/libc/i386_hwcap1/gen/
H A Dmemset.s69 movl %ecx, %ebx / save byte count
72 neg %esi / compute count of bytes
113 dec %ecx / dec count of blocks
139 dec %ecx / dec count of blocks
/osnet-11/usr/src/lib/pam_modules/authtok_check/
H A Dpacker.h67 uint32_t count; member in struct:__anon2793
/osnet-11/usr/src/lib/pybootmgmt/i386/
H A Dbootmgmt-helper-chain.ksh74 sig=`dd if=${rdev} bs=512 count=1 2>/dev/null |strings 2>/dev/null | head -1 | awk '{ print $1 }'`
/osnet-11/usr/src/lib/sun_fc/common/
H A DFCSyseventBridge.cc513 uint64_t count = 0; local
514 count = adapterAddEventListeners.size() +
518 if (count == 1) {
543 } else if (count == 0 && handle != NULL) {
/osnet-11/usr/src/lib/libresolv2/common/nameser/
H A Dns_newmsg.c69 int i, count; local
71 count = ns_msg_count(*msg, sect);
72 for (i = 0; i < count; i++) {
H A Dns_parse.c80 ns_skiprr(const u_char *ptr, const u_char *eom, ns_sect section, int count) { argument
83 for ((void)NULL; count > 0; count--) {
/osnet-11/usr/src/lib/libldap4/common/
H A Dcontrols.c170 int i = 0, count = 0; local
177 count ++;
182 if ((ctrls = (LDAPControl **)calloc(count + 1, sizeof(LDAPControl *))) == NULL){
/osnet-11/usr/src/lib/libndr/common/
H A Dndr_heap.c288 int count; local
290 count = (heap->iovcnt == 0) ? 0 : (heap->iovcnt - 1);
292 avail = count * NDR_HEAP_BLKSZ;
/osnet-11/usr/src/lib/libntfs/common/libntfs/
H A Dmft.c59 * @count: number of mft records to read
62 * Read @count mft records starting at @mref from volume @vol into buffer
74 * NOTE: @b has to be at least of size @count * vol->mft_record_size.
77 const s64 count, MFT_RECORD *b)
83 if (!vol || !vol->mft_na || !b || count < 0) {
89 if (m + count > vol->mft_na->initialized_size >>
95 count, vol->mft_record_size, b);
96 if (br != count) {
113 * @count: number of mft records to write
116 * Write @count mf
76 ntfs_mft_records_read(const ntfs_volume *vol, const MFT_REF mref, const s64 count, MFT_RECORD *b) argument
133 ntfs_mft_records_write(const ntfs_volume *vol, const MFT_REF mref, const s64 count, MFT_RECORD *b) argument
[all...]
/osnet-11/usr/src/lib/libparted/common/libparted/fs/ext2/
H A Dext2.c368 blk_t count = 0; local
414 count += i512perblock;
417 count += EXT2_INODE_BLOCK(*inode, EXT2_IND_BLOCK) ? i512perblock : 0;
418 count += EXT2_INODE_BLOCK(*inode, EXT2_DIND_BLOCK) ? i512perblock : 0;
419 count += EXT2_INODE_BLOCK(*inode, EXT2_TIND_BLOCK) ? i512perblock : 0;
422 (count >= EXT2_INODE_BLOCKS(*inode) && action != EXT2_ACTION_ADD))
450 count += i512perblock;
451 if (count >= EXT2_INODE_BLOCKS(*inode) &&
460 (count >= EXT2_INODE_BLOCKS(*inode) && action != EXT2_ACTION_ADD))
477 count
[all...]
/osnet-11/usr/src/lib/libcmd/common/
H A Dgrep.c48 "[C:context?Set the matched line context \abefore\a and \aafter\a count."
52 "[c:count?Only print a matching line count for each file.]"
68 " count output will be prefixed by the corresponding \alabel\a:.]"
80 "[t:total?Only print a single matching line count for all files.]"
166 Sfulong_t hits; /* total matched pattern count */
169 unsigned char count; /* count number of hits */ member in struct:State_s
338 if (!state->count)
405 if (!state->count)
[all...]
/osnet-11/usr/src/lib/libadm/common/
H A Dckpath.c79 static int count; local
82 count = 0;
85 if (!count++)
97 addhlp(msg, NULL); /* initialize count */
/osnet-11/usr/src/grub/grub2/grub-core/fs/
H A Djfs.c88 grub_uint16_t count; member in struct:grub_jfs_treehead
117 grub_uint8_t count; member in struct:grub_jfs_tree_dir
196 grub_uint8_t count; member in struct:grub_jfs_inode::__anon404::__anon406::__anon407
235 int count; member in struct:grub_jfs_diropen
269 for (i = 0; i < grub_le_to_cpu16 (treehead->count) - 2; i++)
423 diro->count = inode->dir.header.count;
461 diro->count = diro->dirpage->header.count;
498 if (diro->index == diro->count)
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dmbrtowc.c345 size_t count = 0; local
353 count++;
359 return (wc == 0 ? 0 : count);
/osnet-11/usr/src/grub/grub2/grub-core/loader/
H A Dmultiboot.c73 grub_size_t count = 0; local
80 count++;
86 return count;
/osnet-11/usr/src/grub/grub2/grub-core/partmap/
H A Dbsdlabel.c156 int count = 0;
173 count++;
195 if (!count)
155 int count = 0; local
/osnet-11/usr/src/grub/grub2/grub-core/video/
H A Dieee1275.c47 grub_video_ieee1275_set_palette (unsigned int start, unsigned int count,
214 grub_video_ieee1275_set_palette (unsigned int start, unsigned int count, argument
220 err = grub_video_fb_set_palette (start, count, palette_data);
/osnet-11/usr/src/lib/cfgadm_plugins/fp/common/
H A Dcfga_utils.c1116 int count = 0; local
1122 count++ < HBA_MAX_RETRIES) {
1139 int count = 0; local
1145 count++ < HBA_MAX_RETRIES) {
1173 int count = 0; local
1179 count++ < HBA_MAX_RETRIES) {
1207 int count = 0; local
1213 count++ < HBA_MAX_RETRIES) {
1248 int count, retry = 0, l_errno = 0; local
1259 count
[all...]

Completed in 69 milliseconds

<<11121314151617181920>>