Searched defs:limit (Results 1 - 3 of 3) sorted by relevance

/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++) {
/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...]

Completed in 23 milliseconds