Searched refs:tsz (Results 1 - 8 of 8) sorted by relevance

/freebsd-13-stable/contrib/mandoc/
H A Dmandoc_xr.c67 size_t ssz, nsz, tsz; local
77 tsz = ssz + nsz;
78 xr = mandoc_malloc(sizeof(*xr) + tsz);
88 pend = xr->hashkey + tsz;
90 slot = ohash_lookup_memory(xr_hash, xr->hashkey, tsz, hv);
H A Dtbl_term.c168 size_t coloff, tsz; local
208 tsz = sp->opts->opts & (TBL_OPT_BOX | TBL_OPT_DBOX)
211 tsz += tp->tbl.cols[ic].width +
214 tsz += tp->tbl.cols[sp->opts->cols - 1].width;
215 if (offset + tsz > tp->tcol->rmargin)
216 tsz -= 1;
217 offset = offset + tp->tcol->rmargin > tsz ?
218 (offset + tp->tcol->rmargin - tsz) / 2 : 0;
/freebsd-13-stable/contrib/flex/src/
H A Dbuf.c75 size_t tsz;
77 tsz = strlen(fmt) + strlen(s) + 1;
78 t = malloc(tsz);
81 snprintf (t, tsz, fmt, s);
97 size_t tsz;
102 tsz = strlen("#line \"\"\n") + /* constant parts */
106 t = malloc(tsz);
109 for (dst = t + snprintf (t, tsz, "#line %d \"", lineno), src = filename; *src; *dst++ = *src++)
74 size_t tsz; local
96 size_t tsz; local
/freebsd-13-stable/crypto/openssh/
H A Dutf8.c77 size_t tsz; local
81 tsz = *sz + 128;
82 if (tsz > maxsz)
83 tsz = maxsz;
84 if ((tp = recallocarray(*dst, *sz, tsz, 1)) == NULL)
88 *sz = tsz;
/freebsd-13-stable/contrib/libarchive/libarchive/
H A Darchive_write_set_format_warc.c365 _popul_ehdr(struct archive_string *tgt, size_t tsz, warc_essential_hdr_t hdr)
441 return (archive_strlen(tgt) >= tsz)? -1: (ssize_t)archive_strlen(tgt);
362 _popul_ehdr(struct archive_string *tgt, size_t tsz, warc_essential_hdr_t hdr) argument
/freebsd-13-stable/sys/dev/ofw/
H A Dofw_bus_subr.c394 int i, tsz; local
429 tsz = physsz + intrsz + sizeof(phandle_t) + paddrsz + pintrsz;
430 KASSERT(i >= tsz, ("ofw_bus_search_intrmap: truncated map"));
440 mptr += tsz;
441 i -= tsz;
/freebsd-13-stable/sys/powerpc/booke/
H A Dpmap.c2820 uint32_t tsz; local
2836 tsz = (mas1 & MAS1_TSIZE_MASK) >> MAS1_TSIZE_SHIFT;
2837 kernsize += (tsz > 0) ? tsize2size(tsz) : 0;
3044 "sz = 0x%jx tsz = %d tid = %d mas1 = 0x%08x "
/freebsd-13-stable/contrib/ofed/opensm/opensm/
H A Dosm_torus.c757 bool parse_size(unsigned *tsz, unsigned *tflags, unsigned mask, argument
765 *tsz = strtoul(val, &nextchar, 0);
766 if (*tsz) {
778 if (*tsz == 2)

Completed in 207 milliseconds