Searched defs:count (Results 1 - 25 of 55) sorted by relevance

123

/bind-9.6-ESV-R11/lib/isc/include/isc/
H A Dsha1.h39 isc_uint32_t count[2]; member in struct:__anon173
H A Dlfsr.h34 * It MUST set "count" to a new value or the lfsr will never reseed again.
49 unsigned int count; /*%< reseed count (in BITS!) */ member in struct:isc_lfsr
59 isc_uint32_t tap, unsigned int count,
79 isc_lfsr_generate(isc_lfsr_t *lfsr, void *data, unsigned int count);
81 * Returns "count" bytes of data from the LFSR.
89 *\li count > 0.
/bind-9.6-ESV-R11/lib/isc/
H A Dmutexblock.c28 isc_mutexblock_init(isc_mutex_t *block, unsigned int count) { argument
32 for (i = 0; i < count; i++) {
47 isc_mutexblock_destroy(isc_mutex_t *block, unsigned int count) { argument
51 for (i = 0; i < count; i++) {
H A Dlfsr.c35 isc_uint32_t tap, unsigned int count,
45 lfsr->count = count;
49 if (count == 0 && reseed != NULL)
86 isc_lfsr_generate(isc_lfsr_t *lfsr, void *data, unsigned int count) argument
94 REQUIRE(count > 0);
97 byte = count;
109 if (lfsr->count != 0 && lfsr->reseed != NULL) {
110 if (lfsr->count <= count *
34 isc_lfsr_init(isc_lfsr_t *lfsr, isc_uint32_t state, unsigned int bits, isc_uint32_t tap, unsigned int count, isc_lfsrreseed_t reseed, void *arg) argument
[all...]
H A Dmd5.c58 * Start MD5 accumulation. Set bit count to 0 and buffer to mysterious
187 /* Update byte count */
220 * 1 0* (64-bit count of bits processed, MSB-first)
224 int count = ctx->bytes[0] & 0x3f; /* Number of bytes in ctx->in */ local
225 unsigned char *p = (unsigned char *)ctx->in + count;
231 count = 56 - 1 - count;
233 if (count < 0) { /* Padding forces an extra block */
234 memset(p, 0, count + 8);
238 count
[all...]
H A Dsymtab.c49 unsigned int count; member in struct:isc_symtab
86 symtab->count = 0;
257 symtab->count++;
276 if (symtab->count > symtab->maxload)
300 symtab->count--;
H A Dprint.c89 int count = 0; local
108 count++;
182 count++;
383 count += strlen(head) + strlen(buf) + pad +
441 count += pad + length;
469 count += width;
484 count++;
502 count += length + pad + zeropad;
594 count += length + pad;
623 return (count);
[all...]
/bind-9.6-ESV-R11/bin/tests/
H A Dkeyboard_test.c42 unsigned int count; local
53 count = 0;
58 count++;
59 if (count % 64 == 0)
/bind-9.6-ESV-R11/unit/atf-src/atf-sh/
H A Datf-sh.cpp90 const int count = 4 + (interpreter_argc - 1) + 1; local
91 const char** argv = new const char*[count];
100 argv[count - 1] = NULL;
/bind-9.6-ESV-R11/lib/dns/include/dns/
H A Dcompress.h47 isc_uint16_t count; member in struct:dns_compressnode
60 isc_uint16_t count; /*%< Number of nodes. */ member in struct:dns_compress
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/
H A Dconfig_test.cpp102 size_t count = 0; local
104 count++;
105 return count;
/bind-9.6-ESV-R11/lib/dns/
H A Dportlist.c248 unsigned int count; local
254 isc_refcount_decrement(&portlist->refcount, &count);
255 if (count == 0) {
H A Drdatalist.c174 unsigned int count; local
180 count = 0;
184 count++;
186 return (count);
H A Dcompress.c57 cctx->count = 0;
74 if (node->count < DNS_COMPRESS_INITIALNODES)
145 if (cctx->count == 0)
202 unsigned int count; local
215 count = dns_name_countlabels(prefix);
217 count--;
220 while (count > 0) {
231 if (cctx->count < DNS_COMPRESS_INITIALNODES)
232 node = &cctx->initialnodes[cctx->count];
239 node->count
[all...]
H A Dncache.c44 * rdata count
45 * rdata length These two occur 'rdata count'
59 unsigned int count; local
64 * Copy the rdataset count to the buffer.
69 count = dns_rdataset_count(rdataset);
70 INSIST(count <= 65535);
71 isc_buffer_putuint16(buffer, (isc_uint16_t)count);
264 * Copy the type and a zero rdata count to the buffer.
288 isc_buffer_putuint16(&buffer, 0); /* count */
336 unsigned int i, rcount, count; local
462 unsigned int count; local
484 unsigned int count; local
528 unsigned int count; local
648 unsigned int count; local
746 unsigned int count; local
[all...]
/bind-9.6-ESV-R11/lib/isc/pthreads/
H A Dmutex.c64 unsigned count; member in struct:__anon187
72 unsigned count; member in struct:isc_mutexstats
119 mp->stats->count = 0;
125 mp->stats->lockers[i].count = 0;
150 mp->stats->count++;
167 locker->count++;
204 stats[i].file, stats[i].line, stats[i].count,
215 locker->file, locker->line, locker->count,
/bind-9.6-ESV-R11/lib/lwres/
H A Dprint.c86 int count = 0; local
105 count++;
180 count++;
320 count += strlen(head) + strlen(buf) + pad +
378 count += pad + length;
406 count += width;
421 count++;
439 count += length + pad + zeropad;
535 count += length + pad;
564 return (count);
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-c/detail/
H A Dlist_test.c275 size_t count, i, size; local
280 count = 0;
282 count++;
283 printf("Item count is now %zd\n", count);
285 ATF_REQUIRE_EQ(count, 0);
295 count = 0;
298 count++;
300 ATF_REQUIRE_EQ(count, size);
314 size_t count, local
[all...]
H A Dmap_test.c288 size_t count, i, size; local
294 count = 0;
296 count++;
297 printf("Item count is now %zd\n", count);
299 ATF_REQUIRE_EQ(count, 0);
310 count = 0;
313 count++;
315 ATF_REQUIRE_EQ(count, size);
329 size_t count, local
[all...]
H A Dtext_test.c55 size_t count; local
58 count = 0;
60 count++;
62 return count;
/bind-9.6-ESV-R11/bin/named/
H A Dlwdgrbn.c76 int used = 0, count; local
110 count = dns_rdataset_count(&set);
111 if (used + count > size) {
/bind-9.6-ESV-R11/contrib/dlz/drivers/
H A Ddlz_postgres_driver.c209 int count = 0; local
215 while (count < dbc_search_limit) {
225 count++;
233 count);
793 /* count how many rows in result set */
844 /* count how many rows in result set */
1113 "Postgres driver database connection count "
H A Ddlz_ldap_driver.c298 int count = 0; local
304 while (count < dbc_search_limit) {
314 count++;
322 count);
1018 "LDAP driver database connection count "
/bind-9.6-ESV-R11/contrib/query-loc-0.4.0/
H A Dloc.c362 int i, count, dup; /* misc variables */ local
413 count = ntohs (response.hdr.ancount) +
415 while ((--count >= 0) /* still more records */
506 int count; /* misc variables */ local
556 count = ntohs (response.hdr.ancount) +
558 while ((--count >= 0) /* still more records */
/bind-9.6-ESV-R11/unit/atf-src/atf-c/
H A Dutils.c84 ssize_t count; local
86 while ((count = read(fd, buffer, sizeof(buffer) - 1)) > 0) {
87 buffer[count] = '\0';
99 if (iter != buffer + count)
104 if (iter < buffer + count) {
109 ATF_REQUIRE(count == 0);
128 ssize_t count; local
129 while ((count = read(fd, buffer, sizeof(buffer))) > 0 &&
130 count <= remaining) {
131 if (memcmp(pos, buffer, count) !
[all...]

Completed in 3640 milliseconds

123