Searched defs:bits (Results 1 - 15 of 15) sorted by relevance

/bind-9.6-ESV-R11/lib/isc/include/isc/
H A Dlfsr.h32 * modify any state in the LFSR in any way it sees fit OTHER THAN "bits".
47 unsigned int bits; /*%< length */ member in struct:isc_lfsr
58 isc_lfsr_init(isc_lfsr_t *lfsr, isc_uint32_t state, unsigned int bits,
73 *\li 8 <= bits <= 32
/bind-9.6-ESV-R11/lib/isc/unix/
H A Dfsaccess.c40 isc_fsaccess_t bits; local
56 * Done with checking bad bits. Set mode_t.
61 if ((access & bits) != 0) { \
63 access &= ~bits; \
67 bits <<= STEP; \
69 bits <<= STEP; \
72 bits = ISC_FSACCESS_READ | ISC_FSACCESS_LISTDIRECTORY;
76 bits = ISC_FSACCESS_WRITE |
82 bits = ISC_FSACCESS_EXECUTE |
H A Difiter_ioctl.c439 int i, bits, prefixlen; local
558 bits = 0;
561 bits = 8 - prefixlen;
564 iter->current.netmask.type.in6.s6_addr[i] = (~0 << bits) & 0xff;
751 int i, bits; local
755 bits = lifreq.lifr_addrlen - i;
756 bits = (bits < 8) ? (8 - bits) : 0;
758 (~0 << bits)
[all...]
/bind-9.6-ESV-R11/lib/isc/
H A Dfsaccess.c31 * and the number of bits in each function.
70 isc_fsaccess_t bits; local
73 * Check for disallowed user bits.
76 bits = ISC_FSACCESS_READ |
80 bits = ISC_FSACCESS_CREATECHILD |
86 * Set group bad bits.
88 bits |= bits << STEP;
90 * Set other bad bits.
92 bits |
[all...]
H A Dlfsr.c34 isc_lfsr_init(isc_lfsr_t *lfsr, isc_uint32_t state, unsigned int bits, argument
39 REQUIRE(8 <= bits && bits <= 32);
43 lfsr->bits = bits;
52 lfsr->state = 0xffffffffU >> (32 - lfsr->bits);
73 lfsr->state = 0xffffffffU >> (32 - lfsr->bits);
/bind-9.6-ESV-R11/lib/dns/
H A Dkey.c130 dst_key_setbits(dst_key_t *key, isc_uint16_t bits) { argument
133 if (bits != 0) {
136 REQUIRE(bits <= maxbits);
138 key->key_bits = bits;
H A Ddst_api.c88 unsigned int bits,
729 unsigned int bits, unsigned int param,
744 key = get_key_struct(name, alg, flags, protocol, bits, rdclass, mctx);
748 if (bits == 0) { /*%< NULL KEY */
944 unsigned int bits, dns_rdataclass_t rdclass,
982 key->key_size = bits;
728 dst_key_generate(dns_name_t *name, unsigned int alg, unsigned int bits, unsigned int param, unsigned int flags, unsigned int protocol, dns_rdataclass_t rdclass, isc_mem_t *mctx, dst_key_t **keyp) argument
942 get_key_struct(dns_name_t *name, unsigned int alg, unsigned int flags, unsigned int protocol, unsigned int bits, dns_rdataclass_t rdclass, isc_mem_t *mctx) argument
H A Dnsec3.c1381 unsigned int bits, minbits = 4096; local
1408 bits = dst_key_size(key);
1410 if (minbits > bits)
1411 minbits = bits;
H A Dadb.c393 * glue, and compare this to the appropriate bits set in o, to see if
1550 * Copy bits from the entry into the newly allocated addrinfo. The entry
2536 * Run through the name and copy out the bits we are
3446 unsigned int bits, unsigned int mask)
3457 addr->entry->flags = (addr->entry->flags & ~mask) | (bits & mask);
3464 * Note that we do not update the other bits in addr->flags with
3467 addr->flags = (addr->flags & ~mask) | (bits & mask);
3445 dns_adb_changeflags(dns_adb_t *adb, dns_adbaddrinfo_t *addr, unsigned int bits, unsigned int mask) argument
H A Dresolver.c2349 * Return 'bits' bits of random entropy from fctx->rand_buf,
2351 * number of bits is greater than the number in the buffer.
2354 random_bits(fetchctx_t *fctx, isc_uint32_t bits) { argument
2358 REQUIRE(bits <= 32);
2359 if (bits == 0)
2362 if (bits >= fctx->rand_bits) {
2364 bits -= fctx->rand_bits;
2365 ret = fctx->rand_buf << bits;
2372 if (bits >
[all...]
/bind-9.6-ESV-R11/bin/named/
H A Dtsigconf.c52 isc_uint16_t bits; local
93 if (ns_config_getkeyalgorithm(algstr, &alg, &bits)
124 * Set digest bits.
126 dst_key_setbits(tsigkey->key, bits);
H A Dconfig.c768 isc_uint16_t bits; local
781 result = isc_parse_uint16(&bits, str + len + 1, 10);
784 if (bits > algorithms[i].size)
787 bits = 128;
789 bits = algorithms[i].size;
804 *digestbits = bits;
/bind-9.6-ESV-R11/lib/dns/rdata/in_1/
H A Da6_38.c182 sr.base[0] &= mask; /* Ensure pad bits are zero. */
282 isc_uint8_t bits; local
303 bits = a6->prefixlen % 8;
304 if (bits != 0) {
305 mask = 0xffU >> bits;
/bind-9.6-ESV-R11/lib/isc/win32/
H A Dfsaccess.c22 * and ownership bits. The FAT File system only has a readonly flag
116 isc_fsaccess_t bits; local
119 * Done with checking bad bits. Set mode_t.
124 if ((access & bits) != 0) { \
126 access &= ~bits; \
130 bits <<= STEP; \
132 bits <<= STEP; \
135 bits = ISC_FSACCESS_READ | ISC_FSACCESS_LISTDIRECTORY;
139 bits = ISC_FSACCESS_WRITE |
207 /* For directories check the directory-specific bits */
[all...]
/bind-9.6-ESV-R11/contrib/nslint-2.1a3/
H A Dnslint.c373 (void)sprintf(errstr, "host bits set in net \"%s\"",
2051 register int i, bits; local
2058 bits = 0;
2072 bits = o;
2073 if (bits <= 0 || bits > 32)
2109 if (bits != 0)
2110 for (mask = 0, i = 31; bits > 0; --i, --bits)

Completed in 3852 milliseconds