Lines Matching refs:size_t
160 void *dst, size_t *dst_len, in ceph_aes_encrypt()
161 const void *src, size_t src_len) in ceph_aes_encrypt()
170 size_t zero_padding = (0x10 - (src_len & 0x0f)); in ceph_aes_encrypt()
219 size_t *dst_len, in ceph_aes_encrypt2()
220 const void *src1, size_t src1_len, in ceph_aes_encrypt2()
221 const void *src2, size_t src2_len) in ceph_aes_encrypt2()
230 size_t zero_padding = (0x10 - ((src1_len + src2_len) & 0x0f)); in ceph_aes_encrypt2()
282 void *dst, size_t *dst_len, in ceph_aes_decrypt()
283 const void *src, size_t src_len) in ceph_aes_decrypt()
346 void *dst1, size_t *dst1_len, in ceph_aes_decrypt2()
347 void *dst2, size_t *dst2_len, in ceph_aes_decrypt2()
348 const void *src, size_t src_len) in ceph_aes_decrypt2()
423 int ceph_decrypt(struct ceph_crypto_key *secret, void *dst, size_t *dst_len, in ceph_decrypt()
424 const void *src, size_t src_len) in ceph_decrypt()
444 void *dst1, size_t *dst1_len, in ceph_decrypt2()
445 void *dst2, size_t *dst2_len, in ceph_decrypt2()
446 const void *src, size_t src_len) in ceph_decrypt2()
448 size_t t; in ceph_decrypt2()
476 int ceph_encrypt(struct ceph_crypto_key *secret, void *dst, size_t *dst_len, in ceph_encrypt()
477 const void *src, size_t src_len) in ceph_encrypt()
496 int ceph_encrypt2(struct ceph_crypto_key *secret, void *dst, size_t *dst_len, in ceph_encrypt2()
497 const void *src1, size_t src1_len, in ceph_encrypt2()
498 const void *src2, size_t src2_len) in ceph_encrypt2()
521 size_t datalen = prep->datalen; in ceph_key_preparse()