Searched refs:max (Results 1 - 25 of 25) sorted by relevance

/bind-9.6-ESV-R11/lib/isc/
H A Dquota.c30 isc_quota_init(isc_quota_t *quota, int max) { argument
31 quota->max = max;
40 quota->max = 0;
54 isc_quota_max(isc_quota_t *quota, int max) { argument
56 quota->max = max;
64 if (quota->max == 0 || quota->used < quota->max) {
H A Drandom.c103 isc_random_jitter(isc_uint32_t max, isc_uint32_t jitter) { argument
106 REQUIRE(jitter < max || (jitter == 0 && max == 0));
109 return (max);
112 return (max - rnd % jitter);
/bind-9.6-ESV-R11/lib/isc/include/isc/
H A Dquota.h53 int max; member in struct:isc_quota
59 isc_quota_init(isc_quota_t *quota, int max);
81 isc_quota_max(isc_quota_t *quota, int max);
H A Drandom.h54 isc_random_jitter(isc_uint32_t max, isc_uint32_t jitter);
56 * Get a random value between (max - jitter) and (max).
/bind-9.6-ESV-R11/bin/tests/system/checkconf/
H A Dtests.sh49 for field in max-retry-time min-retry-time max-refresh-time min-refresh-time; do
H A Dbad.conf33 host-statistics-max 100;
H A Dgood.conf37 host-statistics-max 100;
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/util/
H A DSparseMap.pm54 # MAX => 0x110000 # actually, max + 1.
191 my $max = 0;
192 $max < $_ and $max = $_ foreach @indirect;
194 if ($max < 256) {
198 } elsif ($max < 65536) {
501 my ($min, $max);
505 $max = $v if !defined($max) or $max <
[all...]
/bind-9.6-ESV-R11/lib/dns/
H A Dportlist.c108 unsigned int max = len - 1; local
115 if (xtry == max)
118 xtry = xtry + (max - xtry + 1) / 2;
119 INSIST(xtry <= max);
126 max = xtry;
131 last = max;
H A Dtime.c140 #define RANGE(min, max, value) \
142 if (value < (min) || value > (max)) \
H A Drcode.c196 unsigned int max, isc_boolean_t hex_allowed)
219 if (n > max)
227 struct tbl *table, unsigned int max)
232 result = maybe_numeric(valuep, source, max, ISC_FALSE);
195 maybe_numeric(unsigned int *valuep, isc_textregion_t *source, unsigned int max, isc_boolean_t hex_allowed) argument
226 dns_mnemonic_fromtext(unsigned int *valuep, isc_textregion_t *source, struct tbl *table, unsigned int max) argument
H A Dresolver.c8594 isc_uint32_t *min, isc_uint32_t *max)
8603 if (max != NULL)
8604 *max = resolver->spillatmax;
8610 isc_uint32_t max)
8616 resolver->spillatmax = max;
8593 dns_resolver_getclientsperquery(dns_resolver_t *resolver, isc_uint32_t *cur, isc_uint32_t *min, isc_uint32_t *max) argument
8609 dns_resolver_setclientsperquery(dns_resolver_t *resolver, isc_uint32_t min, isc_uint32_t max) argument
H A Dzone.c102 * Ensure 'a' is at least 'min' but not more than 'max'.
104 #define RANGE(a, min, max) \
105 (((a) < (min)) ? (min) : ((a) < (max) ? (a) : (max)))
/bind-9.6-ESV-R11/bin/tests/
H A Dnamed.conf56 max-cache-ttl 999;
147 max-transfer-time-in 300;
148 max-transfer-time-out 10;
149 max-transfer-idle-in 100;
150 max-transfer-idle-out 11;
152 max-retry-time 1234;
154 max-refresh-time 888;
157 max-ncache-ttl 333;
176 max-ixfr-log-size 20m;
180 max
[all...]
/bind-9.6-ESV-R11/bin/tests/system/cacheclean/ns2/
H A Dnamed.conf31 max-cache-size 10000;
/bind-9.6-ESV-R11/contrib/zkt/examples/views/
H A Dnamed.conf48 max-udp-size 1460; /* (M5) */
/bind-9.6-ESV-R11/contrib/zkt/
H A Dmisc.h45 # define max(a, b) ((a) > (b) ? (a) : (b)) macro
H A Dzconf.c908 ret = fprintf (stderr, "The max TTL is unknown which results in suboptimal key rollover.\n");
/bind-9.6-ESV-R11/lib/dns/include/dns/
H A Dresolver.h496 isc_uint32_t min, isc_uint32_t max);
500 isc_uint32_t *min, isc_uint32_t *max);
/bind-9.6-ESV-R11/bin/dig/
H A Dnslookup.c545 parse_uint(isc_uint32_t *uip, const char *value, isc_uint32_t max, argument
549 if (result == ISC_R_SUCCESS && n > max)
H A Ddig.c689 parse_uint(char *arg, const char *desc, isc_uint32_t max) { argument
694 if (result == ISC_R_SUCCESS && tmp > max)
/bind-9.6-ESV-R11/bin/named/
H A Dupdate.c3017 unsigned int iterations = 0, max; local
3030 CHECK(dns_nsec3_maxiterations(db, ver, client->mctx, &max));
3031 if (max != 0 && iterations > max) {
3035 "weakest DNSKEY (%u)", iterations, max);
H A Dserver.c833 (void)cfg_map_get(cpeer, "max-udp-size", &obj);
1419 result = ns_config_get(maps, "max-acache-size", &obj);
1431 "'max-acache-size "
1549 result = ns_config_get(maps, "max-cache-ttl", &obj);
1554 result = ns_config_get(maps, "max-ncache-ttl", &obj);
1639 result = ns_config_get(maps, "max-cache-size", &obj);
1650 "'max-cache-size "
1695 * Set the ADB cache size to 1/8th of the max-cache-size.
1733 result = ns_config_get(maps, "max-udp-size", &obj);
2039 result = ns_config_get(maps, "max
[all...]
/bind-9.6-ESV-R11/lib/bind9/
H A Dcheck.c495 unsigned int max; member in struct:__anon80
516 { "max-transfer-idle-in", 60, 28 * 24 * 60 }, /* 28 days */
517 { "max-transfer-idle-out", 60, 28 * 24 * 60 }, /* 28 days */
518 { "max-transfer-time-in", 60, 28 * 24 * 60 }, /* 28 days */
519 { "max-transfer-time-out", 60, 28 * 24 * 60 }, /* 28 days */
534 if (val > intervals[i].max) {
538 intervals[i].max);
1032 static const char *nonzero[] = { "max-retry-time", "min-retry-time",
1033 "max-refresh-time", "min-refresh-time" };
1079 { "max
[all...]
/bind-9.6-ESV-R11/bin/dnssec/
H A Ddnssec-signzone.c3517 unsigned int max; local
3518 result = dns_nsec3_maxiterations(gdb, NULL, mctx, &max);
3520 if (iterations > max)
3522 "strength. Maximum iterations allowed %u.", max);

Completed in 165 milliseconds