Home
last modified time | relevance | path

Searched refs:dstsz (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/dev/jedec_dimm/
H A Djedec_dimm.c158 size_t dstsz, uint16_t offset, uint16_t len, bool ascii);
767 jedec_dimm_field_to_str(struct jedec_dimm_softc *sc, char *dst, size_t dstsz, in jedec_dimm_field_to_str() argument
805 if (dstsz < (len + 1)) { in jedec_dimm_field_to_str()
809 (uint16_t) dstsz, (len + 1)); in jedec_dimm_field_to_str()
813 if (dstsz < ((2 * len) + 1)) { in jedec_dimm_field_to_str()
817 (uint16_t) dstsz, ((2 * len) + 1)); in jedec_dimm_field_to_str()
845 for (i = dstsz - 1; i > 0; i--) { in jedec_dimm_field_to_str()
/freebsd/contrib/elftoolchain/libdwarf/
H A Dzlib_stub.c23 uncompress(void *dst __unused, unsigned long *dstsz __unused, in uncompress()
/freebsd/contrib/elftoolchain/elfcopy/
H A Dsections.c1030 size_t srcsz, dstsz, p, len; in modify_section() local
1042 dstsz = srcsz; in modify_section()
1045 dstsz += strlen(sac->string) + 1; in modify_section()
1047 if ((b = malloc(dstsz)) == NULL) in modify_section()