/bind-9.6-ESV-R11/bin/tests/system/formerr/ |
H A D | formerr.pl | 21 # the standard input, in the form of a series of bytes in hexidecimal. 93 my $bytes; 94 $bytes = $sock->syswrite(pack("n", $len), 2); 95 $bytes = $sock->syswrite($data, $len); 96 $bytes = $sock->sysread($data, 2); 98 $bytes = $sock->sysread($data, $len);
|
/bind-9.6-ESV-R11/bin/tests/ |
H A D | genrandom.c | 30 unsigned int bytes; local 44 bytes = k << 10; 55 while (bytes > 0) { 71 bytes -= 2;
|
/bind-9.6-ESV-R11/bin/tests/system/ |
H A D | packet.pl | 21 # the standard input, in the form of a series of bytes in hexidecimal. 97 my $bytes; 99 $bytes = $sock->send($data); 101 $bytes = $sock->syswrite(pack("n", $len), 2); 102 $bytes += $sock->syswrite($data, $len); 105 print ("sent $bytes bytes to $addr:$port\n");
|
/bind-9.6-ESV-R11/lib/isc/include/isc/ |
H A D | md5.h | 32 * To compute the message digest of a chunk of bytes, declare an 34 * needed on buffers full of bytes, and then call MD5Final, which 53 isc_uint32_t bytes[2]; member in struct:__anon169
|
/bind-9.6-ESV-R11/lib/dns/ |
H A D | hmac_link.c | 156 int bytes; local 159 bytes = (key->key_size + 7) / 8; 160 if (bytes > HMAC_LEN) { 161 bytes = HMAC_LEN; 166 ret = dst__entropy_getdata(data, bytes, ISC_TF(pseudorandom_ok != 0)); 171 isc_buffer_init(&b, data, bytes); 172 isc_buffer_add(&b, bytes); 196 unsigned int bytes; local 202 bytes = (key->key_size + 7) / 8; 203 if (isc_buffer_availablelength(data) < bytes) 248 int bytes = (key->key_size + 7) / 8; local 424 int bytes; local 464 unsigned int bytes; local 516 int bytes = (key->key_size + 7) / 8; local 693 int bytes; local 733 unsigned int bytes; local 785 int bytes = (key->key_size + 7) / 8; local 962 int bytes; local 1002 unsigned int bytes; local 1054 int bytes = (key->key_size + 7) / 8; local 1231 int bytes; local 1271 unsigned int bytes; local 1323 int bytes = (key->key_size + 7) / 8; local 1500 int bytes; local 1540 unsigned int bytes; local 1592 int bytes = (key->key_size + 7) / 8; local [all...] |
H A D | byaddr.c | 88 unsigned char *bytes; local 102 bytes = (unsigned char *)(&address->type); 106 (bytes[3] & 0xff), 107 (bytes[2] & 0xff), 108 (bytes[1] & 0xff), 109 (bytes[0] & 0xff)); 113 *cp++ = hex_digits[bytes[i] & 0x0f]; 115 *cp++ = hex_digits[(bytes[i] >> 4) & 0x0f];
|
H A D | openssl_link.c | 181 rm->bytes = entropy_get;
|
H A D | tsig.c | 887 unsigned int bytes = (digestbits + 1) / 8; local 888 if (response && bytes < querytsig.siglen) 889 bytes = querytsig.siglen; 890 if (bytes > isc_buffer_usedlength(&sigbuf)) 891 bytes = isc_buffer_usedlength(&sigbuf); 892 tsig.siglen = bytes;
|
H A D | openssldsa_link.c | 127 int bytes = size - BN_num_bytes(bn); local 128 while (bytes-- > 0)
|
H A D | rbt.c | 1504 unsigned int bytes; local 1507 bytes = rbt->hashsize * sizeof(dns_rbtnode_t *); 1508 rbt->hashtable = isc_mem_get(rbt->mctx, bytes); 1513 memset(rbt->hashtable, 0, bytes);
|
/bind-9.6-ESV-R11/lib/isc/ |
H A D | md5.c | 31 * To compute the message digest of a chunk of bytes, declare an 33 * needed on buffers full of bytes, and then call MD5Final, which 68 ctx->bytes[0] = 0; 69 ctx->bytes[1] = 0; 94 * the data and converts bytes into longwords for this routine. 181 * of bytes. 189 t = ctx->bytes[0]; 190 if ((ctx->bytes[0] = t + len) < t) 191 ctx->bytes[1]++; /* Carry from low to high */ 214 /* Handle any remaining bytes o [all...] |
H A D | log.c | 1107 unsigned int bytes; local 1120 bytes = lctx->category_count * sizeof(ISC_LIST(isc_logchannellist_t)); 1122 lists = isc_mem_get(lctx->mctx, bytes); 1127 memset(lists, 0, bytes); 1130 bytes = lcfg->channellist_count * 1132 memmove(lists, lcfg->channellists, bytes); 1133 isc_mem_put(lctx->mctx, lcfg->channellists, bytes);
|
H A D | mem.c | 88 * This structure must be ALIGNMENT_SIZE bytes. 93 char bytes[ALIGNMENT_SIZE]; member in union:__anon184::__anon185 506 * ISC_MEM_FILL code might write over bytes we
|
/bind-9.6-ESV-R11/bin/dig/include/dig/ |
H A D | dig.h | 388 received(int bytes, isc_sockaddr_t *from, dig_query_t *query);
|
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/util/ |
H A D | generate_nameprep_data.pl | 46 use bytes;
|
/bind-9.6-ESV-R11/bin/dig/ |
H A D | dig.c | 238 received(int bytes, isc_sockaddr_t *from, dig_query_t *query) { argument 261 "bytes %" ISC_PRINT_QUADFORMAT "u)\n", 265 printf(";; MSG SIZE rcvd: %u\n", bytes); 278 printf(";; Received %" ISC_PRINT_QUADFORMAT "u bytes " 281 query->byte_count : (isc_uint64_t)bytes,
|
H A D | host.c | 179 received(int bytes, isc_sockaddr_t *from, dig_query_t *query) { argument 188 printf("Received %u bytes from %s in %d ms\n", 189 bytes, fromtext, diff/1000);
|
H A D | nslookup.c | 392 received(int bytes, isc_sockaddr_t *from, dig_query_t *query) argument 394 UNUSED(bytes);
|