Searched defs:limit (Results 1 - 6 of 6) sorted by relevance
/bind-9.11.3/lib/isc/ |
H A D | counter.c | 28 unsigned int limit; member in struct:isc_counter 33 isc_counter_create(isc_mem_t *mctx, int limit, isc_counter_t **counterp) { argument 53 counter->limit = limit; 67 if (counter->limit != 0 && counter->used >= counter->limit) 82 isc_counter_setlimit(isc_counter_t *counter, int limit) { argument 86 counter->limit = limit;
|
H A D | hash.c | 86 size_t limit; /*%< upper limit of key length */ member in struct:isc_hash 133 size_t limit, isc_hash_t **hctxp) 151 if (overflow_limit < (limit + 1) * 0xff) 158 vlen = sizeof(hash_random_t) * (limit + 1); 183 hctx->limit = limit; 209 isc_hash_create(isc_mem_t *mctx, isc_entropy_t *entropy, size_t limit) { argument 220 result = isc_hash_ctxcreate(mctx, entropy, limit, 369 REQUIRE(keylen <= hctx->limit); 132 isc_hash_ctxcreate(isc_mem_t *mctx, isc_entropy_t *entropy, size_t limit, isc_hash_t **hctxp) argument [all...] |
H A D | mem.c | 291 isc__mempool_setfreemax(isc_mempool_t *mpctx, unsigned int limit); 297 isc__mempool_setmaxalloc(isc_mempool_t *mpctx, unsigned int limit); 303 isc__mempool_setfillcount(isc_mempool_t *mpctx, unsigned int limit); 651 * memget() was called on something beyond our upper limit. 733 * memput() called on something beyond our upper limit. 2107 isc__mempool_setfreemax(isc_mempool_t *mpctx0, unsigned int limit) { argument 2115 mpctx->freemax = limit; 2158 isc__mempool_setmaxalloc(isc_mempool_t *mpctx0, unsigned int limit) { argument 2161 REQUIRE(limit > 0); 2168 mpctx->maxalloc = limit; 2211 isc__mempool_setfillcount(isc_mempool_t *mpctx0, unsigned int limit) argument 2862 isc_mempool_setmaxalloc(isc_mempool_t *mpctx, unsigned int limit) argument 2872 isc_mempool_setfreemax(isc_mempool_t *mpctx, unsigned int limit) argument 2902 isc_mempool_setfillcount(isc_mempool_t *mpctx, unsigned int limit) argument [all...] |
/bind-9.11.3/contrib/idn/idnkit-1.0-src/lib/ |
H A D | punycode.c | 291 int limit = -1, rest; local 302 limit = uidx; 306 assert(limit >= 0); 313 * whose code point is 'cur_code'. Use 'limit' to avoid 316 for (uidx = 0, rest = ucsdone; uidx <= limit; uidx++) {
|
/bind-9.11.3/lib/dns/ |
H A D | rrl.c | 12 * Rate limit DNS responses. 624 * The limit for clients that have used TCP is not scaled. 681 * at the limit. 962 log_stops(dns_rrl_t *rrl, isc_stdtime_t now, int limit, argument 985 if (--limit < 0) { 998 * Main rate limit interface. 1072 * Do not try to rate limit TCP responses. 1136 * an all-per-second limit for the IP address. 1137 * The all-per-second limit determines the log message 1179 * Log occassionally in the rate-limit categor [all...] |
H A D | rbtdb.c | 403 * Whether to rate-limit updating the LRU to avoid possible thread contention. 7478 unsigned char *limit = ((unsigned char *) base) + filesize; local 7520 (header->next > (rdatasetheader_t *) limit))
|
Completed in 49 milliseconds