Lines Matching refs:size_t
164 void *dst, size_t *dst_len, in ceph_aes_encrypt()
165 const void *src, size_t src_len) in ceph_aes_encrypt()
174 size_t zero_padding = (0x10 - (src_len & 0x0f)); in ceph_aes_encrypt()
223 size_t *dst_len, in ceph_aes_encrypt2()
224 const void *src1, size_t src1_len, in ceph_aes_encrypt2()
225 const void *src2, size_t src2_len) in ceph_aes_encrypt2()
234 size_t zero_padding = (0x10 - ((src1_len + src2_len) & 0x0f)); in ceph_aes_encrypt2()
286 void *dst, size_t *dst_len, in ceph_aes_decrypt()
287 const void *src, size_t src_len) in ceph_aes_decrypt()
350 void *dst1, size_t *dst1_len, in ceph_aes_decrypt2()
351 void *dst2, size_t *dst2_len, in ceph_aes_decrypt2()
352 const void *src, size_t src_len) in ceph_aes_decrypt2()
427 int ceph_decrypt(struct ceph_crypto_key *secret, void *dst, size_t *dst_len, in ceph_decrypt()
428 const void *src, size_t src_len) in ceph_decrypt()
448 void *dst1, size_t *dst1_len, in ceph_decrypt2()
449 void *dst2, size_t *dst2_len, in ceph_decrypt2()
450 const void *src, size_t src_len) in ceph_decrypt2()
452 size_t t; in ceph_decrypt2()
480 int ceph_encrypt(struct ceph_crypto_key *secret, void *dst, size_t *dst_len, in ceph_encrypt()
481 const void *src, size_t src_len) in ceph_encrypt()
500 int ceph_encrypt2(struct ceph_crypto_key *secret, void *dst, size_t *dst_len, in ceph_encrypt2()
501 const void *src1, size_t src1_len, in ceph_encrypt2()
502 const void *src2, size_t src2_len) in ceph_encrypt2()
525 size_t datalen = prep->datalen; in ceph_key_preparse()