Searched refs:limit (Results 1 - 5 of 5) sorted by relevance

/bind-9.6-ESV-R11/lib/isc/include/isc/
H A Dhash.h41 * upper limit of the input length, and may run slow to calculate the
85 isc_hash_ctxcreate(isc_mem_t *mctx, isc_entropy_t *entropy, unsigned int limit,
88 isc_hash_create(isc_mem_t *mctx, isc_entropy_t *entropy, size_t limit);
101 * 'limit' specifies the maximum number of hash keys. If it is too large,
174 * 'keylen' specifies the key length, which must not be larger than the limit
H A Dmem.h306 * Set/get the memory quota of 'mctx'. This is a hard limit
546 isc_mempool_setfreemax(isc_mempool_t *mpctx, unsigned int limit);
564 isc_mempool_setmaxalloc(isc_mempool_t *mpctx, unsigned int limit);
569 *\li limit > 0
586 isc_mempool_setfillcount(isc_mempool_t *mpctx, unsigned int limit);
591 *\li limit > 0
/bind-9.6-ESV-R11/lib/isc/
H A Dhash.c97 unsigned int limit; /*%< upper limit of key length */ member in struct:isc_hash
143 unsigned int limit, isc_hash_t **hctxp)
161 if (overflow_limit < (limit + 1) * 0xff)
168 vlen = sizeof(hash_random_t) * (limit + 1);
193 hctx->limit = limit;
219 isc_hash_create(isc_mem_t *mctx, isc_entropy_t *entropy, size_t limit) { argument
230 result = isc_hash_ctxcreate(mctx, entropy, limit, &hash);
377 REQUIRE(keylen <= hctx->limit);
142 isc_hash_ctxcreate(isc_mem_t *mctx, isc_entropy_t *entropy, unsigned int limit, isc_hash_t **hctxp) argument
[all...]
H A Dmem.c489 * memget() was called on something beyond our upper limit.
569 * memput() called on something beyond our upper limit.
1906 isc_mempool_setfreemax(isc_mempool_t *mpctx, unsigned int limit) { argument
1912 mpctx->freemax = limit;
1953 isc_mempool_setmaxalloc(isc_mempool_t *mpctx, unsigned int limit) { argument
1954 REQUIRE(limit > 0);
1961 mpctx->maxalloc = limit;
2002 isc_mempool_setfillcount(isc_mempool_t *mpctx, unsigned int limit) { argument
2003 REQUIRE(limit > 0);
2009 mpctx->fillcount = limit;
[all...]
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/lib/
H A Dpunycode.c291 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++) {

Completed in 18 milliseconds