Searched refs:count (Results 301 - 325 of 878) sorted by relevance

<<11121314151617181920>>

/osnet-11/usr/src/lib/libast/common/disc/
H A Dsfdcdos.c120 register int n, count, m; local
161 if((count = cpmax+1-cp) <=0)
167 count=0;
183 if(count>dp->bsize)
186 dp->buff = malloc(count);
188 dp->buff = realloc(dp->buff,count);
189 dp->bsize = count;
193 memcpy(dp->buff, cp, count);
194 count=1;
205 memcpy(first-count, firs
[all...]
/osnet-11/usr/src/lib/libast/common/cdt/
H A Ddtstat.c50 static void dthstat(reg Dtdata_t* data, Dtstat_t* ds, reg int* count) argument
52 static void dthstat(data, ds, count)
55 reg int* count;
65 if(count)
66 count[n] += 1;
/osnet-11/usr/src/common/mpi/
H A Dmpi-priv.h157 void s_mp_setz(mp_digit *dp, mp_size count); /* zero digits */
158 void s_mp_copy(const mp_digit *sp, mp_digit *dp, mp_size count); /* copy */
170 #define s_mp_setz(dp, count) \
171 {int ix;for(ix=0;ix<(count);ix++)(dp)[ix]=0;}
173 #define s_mp_setz(dp, count) memset(dp, 0, (count) * sizeof(mp_digit))
177 #define s_mp_copy(sp, dp, count) \
178 {int ix;for(ix=0;ix<(count);ix++)(dp)[ix]=(sp)[ix];}
180 #define s_mp_copy(sp, dp, count) memcpy(dp, sp, (count) * sizeo
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Filter/Util/Call/
H A DCall.xs114 int count ;
133 count = perl_call_sv((SV*)PERL_OBJECT(my_sv), G_SCALAR);
140 count = perl_call_method("filter", G_SCALAR);
145 if (count != 1)
147 PERL_MODULE(my_sv), count ) ;
/osnet-11/usr/src/lib/libsasl/lib/
H A Dcheckpw.c533 * count authid count password count service count realm
630 unsigned short count = 0; local
635 * count result
637 if (retry_read(s, &count, sizeof(count)) < (int) sizeof(count)) {
642 count
[all...]
/osnet-11/usr/src/cmd/sendmail/db/lock/
H A Dlock_deadlock.c202 u_int32_t *bitmap, count, *entryp, i, id, nentries, *tmpmap; local
214 retry: count = lt->region->nlockers;
218 if (count == 0) {
224 __db_err(dbenv, "%lu lockers", (u_long)count);
226 count += 10;
227 nentries = ALIGN(count, 32) / 32;
229 * Allocate enough space for a count by count bitmap matrix.
233 * reallocing if necessary because count grew by too much.
235 if ((ret = __os_calloc((size_t)count,
[all...]
/osnet-11/usr/src/lib/libshell/common/edit/
H A Demacs.c184 register int count; local
314 oadjust = count = adjust;
315 if(count<0)
316 count = 1;
331 xcommands(ep,count);
398 if (count > i)
399 count = i;
401 kptr = &kstack[count]; /* move old contents here */
411 i -= count;
412 eol -= count;
769 escape(register Emacs_t* ep,register genchar *out,int count) argument
1140 xcommands(register Emacs_t *ep,int count) argument
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt/cipher/
H A Dsha1.c63 int count; member in struct:__anon541
79 hd->count = 0;
244 if (hd->count == 64) /* Flush the buffer. */
248 hd->count = 0;
254 if (hd->count)
256 for (; inlen && hd->count < 64; inlen--)
257 hd->buf[hd->count++] = *inbuf++;
267 hd->count = 0;
275 for (; inlen && hd->count < 64; inlen--)
276 hd->buf[hd->count
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt-grub/cipher/
H A Dsha1.c62 int count; member in struct:__anon585
78 hd->count = 0;
243 if (hd->count == 64) /* Flush the buffer. */
247 hd->count = 0;
253 if (hd->count)
255 for (; inlen && hd->count < 64; inlen--)
256 hd->buf[hd->count++] = *inbuf++;
266 hd->count = 0;
274 for (; inlen && hd->count < 64; inlen--)
275 hd->buf[hd->count
[all...]
/osnet-11/usr/src/lib/libnisdb/
H A Ddb_index_entry.cc81 int count = 0; local
118 ++count;
122 *newsize = count;
192 long count = 0; local
196 ++count;
211 ++count;
218 *how_many = count;
H A Ddb.cc506 * 'count' is incremented and the database's verison is updated to that of 'j'.
510 apply_log_entry(db_log_entry * j, char * dbchar, int *count) argument
518 ++ *count;
556 int count = 0; local
557 apply_log_entry (j, (char *) &internal_db, &count);
578 if (count == 1) {
595 return (count == 1);
623 int count; local
646 if ((count = incorporate_log(logfilename)) < 0)
649 changed = (count >
746 entry_since(db_log_entry * j, char * tichar, int *count) argument
769 int count; local
[all...]
/osnet-11/usr/src/lib/libfru/libfruraw/
H A Draw_access.c41 int count; local
43 for (count = 0; count < TABLE_SIZE; count++) {
44 hash_table[count] = NULL;
513 int count; local
537 for (count = 0; count < sec_obj->num_of_segment; count++) {
597 int count; local
701 int count; local
1036 int count; local
1097 int count; local
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/support/
H A Dutf8_conv.c72 size_t count,
87 while (*utf8str && ucs2len < count) {
122 assert(ucs2len < count);
250 No more than 'count' bytes will be written to the output buffer.
258 size_t count, ssize_t ucs2len, int little_endian)
305 count -= n; /* Space left in output buffer */
309 so that return value = original count, indicating buffer full. */
311 while (count--)
315 else if (count)
70 k5_utf8s_to_ucs2s(krb5_ucs2 *ucs2str, const char *utf8str, size_t count, int little_endian) argument
257 k5_ucs2s_to_utf8s(char *utf8str, const krb5_ucs2 *ucs2str, size_t count, ssize_t ucs2len, int little_endian) argument
/osnet-11/usr/src/lib/krb5/kadm5/srv/
H A Dsvr_iters.c205 int *count)
216 *count = 0;
273 *count = data.n_names;
280 int *count)
282 return kadm5_get_either(1, server_handle, exp, princs, count);
288 int *count)
290 return kadm5_get_either(0, server_handle, exp, pols, count);
201 kadm5_get_either(int princ, void *server_handle, char *exp, char ***princs, int *count) argument
277 kadm5_get_principals(void *server_handle, char *exp, char ***princs, int *count) argument
285 kadm5_get_policies(void *server_handle, char *exp, char ***pols, int *count) argument
/osnet-11/usr/src/grub/grub2/grub-core/disk/arc/
H A Darcdisk.c198 long unsigned count = 0; local
204 0x200, &count))
206 if (count == 0)
233 unsigned long count; local
251 totl, &count))
253 totl -= count;
254 buf += count;
/osnet-11/usr/src/lib/libcmd/common/
H A Dcmp.c67 "[n:count|bytes?Compare at most \acount\a bytes.]#[count]"
149 cmp(const char* file1, Sfio_t* f1, const char* file2, Sfio_t* f2, int flags, Sfoff_t count, Sfoff_t differences) argument
167 if (count > 0 && !(count -= n1))
187 if (count > 0 && c1 > count)
188 c1 = (int)count;
278 Sfoff_t count = -1; local
314 count
[all...]
/osnet-11/usr/src/lib/libntfs/common/libntfs/
H A Dlogfile.c107 "inconsistent update sequence array count.\n");
702 s64 len, pos, count; local
729 while ((count = ntfs_attr_pread(na, pos, NTFS_BUF_SIZE, buf)) > 0)
730 pos += count;
732 if (count == -1 || pos != len) {
736 if (count != -1)
746 while ((count = len - pos) > 0) {
747 if (count > NTFS_BUF_SIZE)
748 count = NTFS_BUF_SIZE;
750 if ((count
[all...]
/osnet-11/usr/src/lib/krb5/plugins/kdb/db2/
H A Dlockout.c75 int count = 0; local
78 &policy, &count);
79 if (code == 0 && count == 1) {
/osnet-11/usr/src/lib/libadm/common/
H A Dckgid.c56 int count; local
69 count = 0;
76 if (count++)
H A Dckuid.c56 int count; local
69 count = 0;
76 if (count++)
/osnet-11/usr/src/lib/libadr/common/
H A Dadr_name.c168 int count = strlcpy(loc, domain, end - loc); local
169 if (count >= end - loc)
171 loc += count + 1;
174 count = strlcpy(loc, name->an_keys[i], end - loc);
175 if (count >= end - loc)
178 loc += count + 1;
180 count = strlcpy(loc, name->an_values[i], end - loc);
181 if (count >= end - loc)
184 loc += count + 1;
418 int count local
[all...]
/osnet-11/usr/src/lib/nsswitch/dns/common/
H A Ddns_common.c50 dns_netdb_aliases(from_list, to_list, aliaspp, type, count, af_type)
52 int type, *count, af_type;
58 *count = 0;
89 *count = cnt;
105 int ret, count; local
134 (char **)&addrp, DNS_ADDRLIST, &count, af_type);
138 host->h_aliases = host->h_addr_list + count + 1;
140 (char **)&addrp, DNS_ALIASES, &count, af_type);
149 DNS_MAPDLIST, &count, af_type);
153 DNS_ADDRLIST, &count, af_typ
[all...]
/osnet-11/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/
H A Dldap_realm.c81 size_t i, count; local
85 for (i = 0, count = 0; i < len; i++)
92 count ++;
95 out = (char *)malloc((len + (count * 2) + 1) * sizeof (char));
97 memset(out, 0, len + (count * 2) + 1);
137 /* ptr[count - 1] = '\0'; */
170 int count = 0; local
200 count = ldap_count_entries (ld, result);
201 if (count == -1) {
207 *realms = calloc((unsigned int) count
400 int count=0; local
1196 unsigned int count=0; local
[all...]
/osnet-11/usr/src/lib/libldap4/include/
H A Dhsearch.h37 unsigned int count; /* nb entries in the hash table */ member in struct:hash_table
/osnet-11/usr/src/lib/libpkg/common/
H A Dtputcfent.c47 int count, status; local
164 status = count = 0;
178 if ((++count % 5) == 0) {
181 count = 0;

Completed in 75 milliseconds

<<11121314151617181920>>