Lines Matching refs:dst_size
37 * @dst_size: size of dst buffer, or number of hex characters pairs to convert
39 void ecryptfs_from_hex(char *dst, char *src, int dst_size)
44 for (x = 0; x < dst_size; x++) {
1642 * @dst_size: Size of the encoded filename in bytes
1646 static void ecryptfs_encode_for_filename(unsigned char *dst, size_t *dst_size,
1655 (*dst_size) = 0;
1674 (*dst_size) = (num_blocks * 4);
1714 * @dst: If NULL, this function only sets @dst_size and returns. If
1717 * @dst_size: Set to the size of the decoded string.
1722 ecryptfs_decode_from_filename(unsigned char *dst, size_t *dst_size,
1730 (*dst_size) = ecryptfs_max_decoded_size(src_size);
1760 (*dst_size) = dst_byte_offset;