Searched refs:srcsize (Results 1 – 8 of 8) sorted by relevance
| /freebsd-14-stable/contrib/unbound/sldns/ |
| HD | parseutil.c | 650 size_t sldns_b64_ntop_calculate_size(size_t srcsize) in sldns_b64_ntop_calculate_size() argument 652 return ((((srcsize + 2) / 3) * 4) + 1); in sldns_b64_ntop_calculate_size() 742 size_t sldns_b64_pton_calculate_size(size_t srcsize) in sldns_b64_pton_calculate_size() argument 744 return (((((srcsize + 3) / 4) * 3)) + 1); in sldns_b64_pton_calculate_size() 748 static int sldns_b64_pton_base(char const *src, size_t srcsize, uint8_t *target, in sldns_b64_pton_base() argument 755 int check_padding = (srcsize) ? 0 : 1; in sldns_b64_pton_base() 757 while(*s && (check_padding || srcsize)) { in sldns_b64_pton_base() 766 srcsize--; in sldns_b64_pton_base() 790 if(incount != 4 && (check_padding || srcsize)) in sldns_b64_pton_base() 828 int sldns_b64url_pton(char const *src, size_t srcsize, uint8_t *target, in sldns_b64url_pton() argument [all …]
|
| HD | parseutil.h | 93 size_t sldns_b64_ntop_calculate_size(size_t srcsize); 103 size_t sldns_b64_pton_calculate_size(size_t srcsize); 105 int sldns_b64url_pton(char const *src, size_t srcsize, uint8_t *target, 107 int sldns_b64_contains_nonurl(char const *src, size_t srcsize);
|
| /freebsd-14-stable/contrib/ldns/ldns/ |
| HD | config.h | 684 static inline size_t ldns_b64_ntop_calculate_size(size_t srcsize) in ldns_b64_ntop_calculate_size() argument 686 return ((((srcsize + 2) / 3) * 4) + 1); in ldns_b64_ntop_calculate_size() 693 static inline size_t ldns_b64_pton_calculate_size(size_t srcsize) in ldns_b64_pton_calculate_size() argument 695 return (((((srcsize + 3) / 4) * 3)) + 1); in ldns_b64_pton_calculate_size()
|
| HD | config.h.in | 683 static inline size_t ldns_b64_ntop_calculate_size(size_t srcsize) argument 685 return ((((srcsize + 2) / 3) * 4) + 1); 692 static inline size_t ldns_b64_pton_calculate_size(size_t srcsize) argument 694 return (((((srcsize + 3) / 4) * 3)) + 1);
|
| /freebsd-14-stable/sys/nlm/ |
| HD | nlm.h | 55 size_t srcsize, struct malloc_type *type);
|
| HD | nlm_prot_impl.c | 306 nlm_make_netobj(struct netobj *dst, caddr_t src, size_t srcsize, in nlm_make_netobj() argument 310 dst->n_len = srcsize; in nlm_make_netobj() 311 dst->n_bytes = malloc(srcsize, type, M_WAITOK); in nlm_make_netobj() 312 memcpy(dst->n_bytes, src, srcsize); in nlm_make_netobj()
|
| /freebsd-14-stable/contrib/ldns/ |
| HD | configure.ac | 1080 static inline size_t ldns_b64_ntop_calculate_size(size_t srcsize) 1082 return ((((srcsize + 2) / 3) * 4) + 1); 1089 static inline size_t ldns_b64_pton_calculate_size(size_t srcsize) 1091 return (((((srcsize + 3) / 4) * 3)) + 1);
|
| /freebsd-14-stable/sys/cddl/boot/zfs/ |
| HD | zfssubr.c | 345 zio_decompress_data(int cpfunc, void *src, uint64_t srcsize, in zio_decompress_data() argument 362 return (ci->ci_decompress(src, dest, srcsize, destsize, ci->ci_level)); in zio_decompress_data()
|