Searched refs:maxbits (Results 1 - 3 of 3) sorted by relevance

/bind-9.6-ESV-R11/lib/dns/
H A Dkey.c131 unsigned int maxbits; local
134 RUNTIME_CHECK(dst_key_sigsize(key, &maxbits) == ISC_R_SUCCESS);
135 maxbits *= 8;
136 REQUIRE(bits <= maxbits);
/bind-9.6-ESV-R11/lib/isc/include/isc/
H A Dradix.h109 isc_uint32_t maxbits; /* for IP, 32 bit addresses */ member in struct:isc_radix_tree
160 isc_radix_create(isc_mem_t *mctx, isc_radix_tree_t **target, int maxbits);
162 * Create a radix tree with a maximum depth of 'maxbits';
167 * \li 'maxbits' to be less than or equal to RADIX_MAXBITS.
/bind-9.6-ESV-R11/lib/isc/
H A Dradix.c140 isc_radix_create(isc_mem_t *mctx, isc_radix_tree_t **target, int maxbits) { argument
150 radix->maxbits = maxbits;
154 RUNTIME_CHECK(maxbits <= RADIX_MAXBITS); /* XXX */
250 RUNTIME_CHECK(prefix->bitlen <= radix->maxbits);
314 RUNTIME_CHECK(prefix == NULL || prefix->bitlen <= radix->maxbits);
378 if (node->bit < radix->maxbits &&
549 if (node->bit < radix->maxbits &&
564 if (bitlen < radix->maxbits &&
588 if (differ_bit < radix->maxbits
[all...]

Completed in 389 milliseconds