Searched refs:srcsize (Results 1 - 9 of 9) sorted by relevance

/freebsd-12-stable/contrib/unbound/sldns/
H A Dparseutil.h91 size_t sldns_b64_ntop_calculate_size(size_t srcsize);
101 size_t sldns_b64_pton_calculate_size(size_t srcsize);
103 int sldns_b64url_pton(char const *src, size_t srcsize, uint8_t *target,
H A Dparseutil.c607 size_t sldns_b64_ntop_calculate_size(size_t srcsize) argument
609 return ((((srcsize + 2) / 3) * 4) + 1);
699 size_t sldns_b64_pton_calculate_size(size_t srcsize) argument
701 return (((((srcsize + 3) / 4) * 3)) + 1);
704 /* padding not required if srcsize is set */
705 static int sldns_b64_pton_base(char const *src, size_t srcsize, uint8_t *target, argument
712 int check_padding = (srcsize) ? 0 : 1;
714 while(*s && (check_padding || srcsize)) {
723 srcsize--;
747 if(incount != 4 && (check_padding || srcsize))
785 sldns_b64url_pton(char const *src, size_t srcsize, uint8_t *target, size_t targsize) argument
[all...]
/freebsd-12-stable/contrib/ldns/ldns/
H A Dconfig.h579 static inline size_t ldns_b64_ntop_calculate_size(size_t srcsize) argument
581 return ((((srcsize + 2) / 3) * 4) + 1);
588 static inline size_t ldns_b64_pton_calculate_size(size_t srcsize) argument
590 return (((((srcsize + 3) / 4) * 3)) + 1);
/freebsd-12-stable/sys/nlm/
H A Dnlm.h57 size_t srcsize, struct malloc_type *type);
H A Dnlm_prot_impl.c309 nlm_make_netobj(struct netobj *dst, caddr_t src, size_t srcsize, argument
313 dst->n_len = srcsize;
314 dst->n_bytes = malloc(srcsize, type, M_WAITOK);
315 memcpy(dst->n_bytes, src, srcsize);
/freebsd-12-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_cg.c470 size_t srcsize = dt_node_type_size(src); local
478 if (dstsize == srcsize &&
481 if (dstsize > srcsize && (src->dn_flags & DT_NF_SIGNED) == 0)
486 if (dstsize > srcsize) {
487 int n = sizeof (uint64_t) * NBBY - srcsize * NBBY;
488 int s = (dstsize - srcsize) * NBBY;
H A Ddt_parser.c1917 size_t srcsize = dt_node_type_size(rp); local
1920 if (dstsize < srcsize) {
1924 } else if (dstsize > srcsize) {
1925 int n = (sizeof (uint64_t) - srcsize) * NBBY;
1926 int s = (dstsize - srcsize) * NBBY;
/freebsd-12-stable/sys/cddl/boot/zfs/
H A Dzfssubr.c336 zio_decompress_data(int cpfunc, void *src, uint64_t srcsize, argument
353 return (ci->ci_decompress(src, dest, srcsize, destsize, ci->ci_level));
/freebsd-12-stable/contrib/binutils/gas/config/
H A Dtc-arm.c7851 vfp_conv (int srcsize)
7853 unsigned immbits = srcsize - inst.operands[1].imm;
7846 vfp_conv(int srcsize) argument

Completed in 304 milliseconds