Searched defs:length (Results 1 - 25 of 86) sorted by relevance

1234

/bind-9.6-ESV-R11/lib/isc/
H A Dbufferlist.c33 unsigned int length; local
37 length = 0;
41 length += isc_buffer_usedlength(buffer);
45 return (length);
51 unsigned int length; local
55 length = 0;
59 length += isc_buffer_availablelength(buffer);
63 return (length);
/bind-9.6-ESV-R11/lib/dns/rdata/generic/
H A Dnull_10.h27 isc_uint16_t length; member in struct:dns_rdata_null
H A Dcert_37.h30 isc_uint16_t length; member in struct:dns_rdata_cert
H A Ddlv_32769.h29 isc_uint16_t length; member in struct:dns_rdata_dlv
H A Dds_43.h31 isc_uint16_t length; member in struct:dns_rdata_ds
H A Dsshfp_44.h31 isc_uint16_t length; member in struct:dns_rdata_sshfp
H A Dtlsa_52.h31 isc_uint16_t length; member in struct:dns_rdata_tlsa
H A Dopt_41.h28 isc_uint16_t length; member in struct:dns_rdata_opt_opcode
36 isc_uint16_t length; member in struct:dns_rdata_opt
H A Dspf_99.h24 isc_uint8_t length; member in struct:dns_rdata_spf_string
H A Dtxt_16.h25 isc_uint8_t length; member in struct:dns_rdata_txt_string
/bind-9.6-ESV-R11/lib/dns/rdata/in_1/
H A Ddhcid_49.h27 unsigned int length; member in struct:dns_rdata_in_dhcid
H A Dapl_42.h28 isc_uint8_t length; member in struct:dns_rdata_apl_ent
/bind-9.6-ESV-R11/lib/isc/include/isc/
H A Dbitstring.h87 unsigned int length; member in struct:isc_bitstring
98 unsigned int length, unsigned int size, isc_boolean_t lsb0);
101 * at 'data'. 'length' bits of the bitstring are valid. If 'lsb0'
112 *\li 'length' <= 'size'.
145 *\li 'sbitpos' + 'n' is less than or equal to the length of 'source'.
151 *\li The specified bits have been copied, and the length of 'target'
H A Dregion.h29 unsigned int length; member in struct:isc_region
34 unsigned int length; member in struct:isc_textregion
42 unsigned int length; member in struct:isc_constregion
47 unsigned int length; member in struct:isc_consttextregion
60 INSIST(_r->length >= _l); \
62 _r->length -= _l; \
69 INSIST(_r->length >= _l); \
71 _r->length -= _l; \
78 INSIST(_r->length >= _l); \
80 _r->length
[all...]
H A Dsockaddr.h42 unsigned int length; /* XXXRTH beginning? */ member in struct:isc_sockaddr
/bind-9.6-ESV-R11/lib/isc/unix/include/isc/
H A Ddir.h45 unsigned int length; member in struct:isc_direntry
/bind-9.6-ESV-R11/lib/isc/win32/include/isc/
H A Ddir.h37 unsigned int length; member in struct:__anon200
/bind-9.6-ESV-R11/lib/lwres/include/lwres/
H A Dlwbuffer.h58 * e == length of buffer.
60 * a-e == entire (length) of buffer.
70 * length > 0
72 * base is a valid pointer to length bytes of memory
74 * 0 <= used <= length
127 * Get the length of the used region of buffer "b"
132 * Get the length of the available region of buffer "b"
134 #define LWRES_BUFFER_AVAILABLECOUNT(b) ((b)->length - (b)->used)
152 unsigned int length; member in struct:lwres_buffer
163 lwres_buffer_init(lwres_buffer_t *b, void *base, unsigned int length);
[all...]
H A Dlwpacket.h32 /*! The overall packet length, including the
38 lwres_uint32_t length; member in struct:lwres_lwpacket
105 /*! The length of the authentication data.
114 #define LWRES_LWPACKET_LENGTH (4 * 5 + 2 * 4) /*%< Overall length. */
125 * "authlen" and one of "length - authlen - sizeof(lwres_lwpacket_t)".
/bind-9.6-ESV-R11/bin/tests/
H A Dentropy_test.c33 hex_dump(const char *msg, void *data, unsigned int length) { argument
40 printf("DUMP of %d bytes: %s\n\t", length, msg);
41 for (len = 0; len < length; len++) {
H A Dcompress_test.c72 region.length = sizeof(plain1);
77 region.length = sizeof(plain2);
82 region.length = sizeof(plain3);
95 dns_name_t *name3, unsigned char *result, unsigned int length)
191 RUNTIME_CHECK(target.used == length);
94 test(unsigned int allowed, dns_name_t *name1, dns_name_t *name2, dns_name_t *name3, unsigned char *result, unsigned int length) argument
H A Dentropy2_test.c35 hex_dump(const char *msg, void *data, unsigned int length) { argument
42 printf("DUMP of %d bytes: %s\n\t", length, msg);
43 for (len = 0; len < length; len++) {
H A Dnsec3hash.c77 unsigned int length; local
110 length = isc_iterated_hash(hash, hash_alg, iterations, salt,
111 salt_length, name->ndata, name->length);
112 if (length == 0)
115 region.length = length;
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/lib/
H A Ddebug.c221 idn__debug_hexdata(const char *s, int length, int maxbytes) { argument
231 while (length > 0 && i < maxbytes) {
238 length--;
252 idn__debug_hexdump(const char *s, int length) { argument
257 while (length-- > 0) {
H A Dutil.c129 char *str, size_t length)
151 len = (DWORD)length;
128 idn__util_getregistrystring(idn__util_hkey_t topkey, const char *name, char *str, size_t length) argument

Completed in 2657 milliseconds

1234