Lines Matching refs:size
9 size_t size, bool ucase)
20 for (i = 0; i < size; i++) {
29 const char *binary_to_hex(const unsigned char *data, size_t size)
31 unsigned char *dest = t_malloc_no0(MALLOC_MULTIPLY(size, 2) + 1);
33 binary_to_hex_case(dest, data, size, FALSE);
34 dest[size*2] = '\0';
38 const char *binary_to_hex_ucase(const unsigned char *data, size_t size)
40 unsigned char *dest = t_malloc_no0(MALLOC_MULTIPLY(size, 2) + 1);
42 binary_to_hex_case(dest, data, size, TRUE);
43 dest[size*2] = '\0';
48 size_t size)
52 buf = buffer_append_space_unsafe(dest, size * 2);
53 binary_to_hex_case(buf, data, size, FALSE);