key_length        105 source3/lib/memcache.c static size_t memcache_element_size(size_t key_length, size_t value_length)
key_length        107 source3/lib/memcache.c 	return sizeof(struct memcache_element) - 1 + key_length + value_length;
key_length        360 source3/libaddns/dns.h 	uint16 key_length;
key_length        436 source3/libaddns/dns.h 				 uint16 key_length, const uint8 *key,
key_length        187 source3/libaddns/dnsgss.c 			input_desc.length = tkey->key_length;
key_length        181 source3/libaddns/dnsrecord.c 				 uint16 key_length, const uint8 *key,
key_length        200 source3/libaddns/dnsrecord.c 	dns_marshall_uint16(buf, key_length);
key_length        201 source3/libaddns/dnsrecord.c 	dns_marshall_buffer(buf, key, key_length);
key_length        238 source3/libaddns/dnsrecord.c 	dns_unmarshall_uint16(&buf, &tkey->key_length);
key_length        242 source3/libaddns/dnsrecord.c 	if (tkey->key_length) {
key_length        243 source3/libaddns/dnsrecord.c 		if (!(tkey->key = TALLOC_ARRAY(tkey, uint8, tkey->key_length))) {
key_length        251 source3/libaddns/dnsrecord.c 	dns_unmarshall_buffer(&buf, tkey->key, tkey->key_length);
key_length         50 source4/heimdal/lib/hcrypto/hmac.c 	memset(ctx->buf, 0, ctx->key_length);
key_length         55 source4/heimdal/lib/hcrypto/hmac.c 	memset(ctx->ipad, 0, ctx->key_length);
key_length         60 source4/heimdal/lib/hcrypto/hmac.c 	memset(ctx->ipad, 0, ctx->key_length);
key_length         89 source4/heimdal/lib/hcrypto/hmac.c 	    memset(ctx->buf, 0, ctx->key_length);
key_length         92 source4/heimdal/lib/hcrypto/hmac.c 	ctx->key_length = EVP_MD_size(ctx->md);
key_length         93 source4/heimdal/lib/hcrypto/hmac.c 	ctx->buf = malloc(ctx->key_length);
key_length        106 source4/heimdal/lib/hcrypto/hmac.c 	memset(ctx->opad, 0, ctx->key_length);
key_length        110 source4/heimdal/lib/hcrypto/hmac.c 	memset(ctx->ipad, 0, ctx->key_length);
key_length        143 source4/heimdal/lib/hcrypto/hmac.c     EVP_DigestUpdate(ctx->ctx, ctx->buf, ctx->key_length);
key_length         62 source4/heimdal/lib/hcrypto/hmac.h     size_t key_length;