Symbol: tsize
bin/ksh/table.c
43
ktinit(struct table *tp, Area *ap, int tsize)
bin/ksh/table.c
48
if (tsize)
bin/ksh/table.c
49
texpand(tp, tsize);
bin/ps/extern.h
77
void tsize(const struct pinfo *, VARENT *);
bin/ps/keyword.c
179
{"tsiz", "TSIZ", NULL, 0, tsize, 4},
lib/libexpat/lib/xmlparse.c
7864
size_t tsize;
lib/libexpat/lib/xmlparse.c
7870
tsize = table->size * sizeof(NAMED *);
lib/libexpat/lib/xmlparse.c
7871
table->v = MALLOC(table->parser, tsize);
lib/libexpat/lib/xmlparse.c
7876
memset(table->v, 0, tsize);
lib/libexpat/lib/xmlparse.c
7910
size_t tsize = newSize * sizeof(NAMED *);
lib/libexpat/lib/xmlparse.c
7911
NAMED **newV = MALLOC(table->parser, tsize);
lib/libexpat/lib/xmlparse.c
7914
memset(newV, 0, tsize);
lib/libpcap/savefile.c
308
static int tsize = 0;
lib/libpcap/savefile.c
316
if (tsize < hdr->caplen) {
lib/libpcap/savefile.c
317
tsize = ((hdr->caplen + 1023) / 1024) * 1024;
lib/libpcap/savefile.c
319
tp = malloc(tsize);
lib/libpcap/savefile.c
321
tsize = 0;
regress/lib/libc/malloc/malloc0test/malloc0test.c
102
tsize = size == 0 ? 16 : size;
regress/lib/libc/malloc/malloc0test/malloc0test.c
104
prot = test(blob, tsize);
regress/lib/libc/malloc/malloc0test/malloc0test.c
62
int size, tsize;
sbin/dump/dump.h
68
extern int64_t tsize; /* tape size in 0.1" units */
sbin/dump/main.c
126
tsize = 0; /* Default later, based on 'c' option for cart tapes */
sbin/dump/main.c
183
tsize = numarg("tape size", 1, 0) * 12 * 10;
sbin/dump/main.c
326
if (tsize == 0)
sbin/dump/main.c
327
tsize = cartridge ? 1700L*120L : 2300L*120L;
sbin/dump/main.c
507
) * (1.0 / tsize ); /* tape / 0.1" */
sbin/dump/main.c
520
) * (1.0 / tsize ); /* tape / 0.1" */
sbin/dump/main.c
75
int64_t tsize; /* tape size in 0.1" units */
sbin/dump/tape.c
352
(blocksthisvol >= blocksperfile) : (asize > tsize))) {
sys/dev/hid/hidkbd.c
335
hidkbd_translate(const struct hidkbd_translation *table, size_t tsize,
sys/dev/hid/hidkbd.c
338
for (; tsize != 0; table++, tsize--)
sys/dev/pci/if_igc.c
380
int i, rsize, rxconf, tsize, txconf;
sys/dev/pci/if_igc.c
409
tsize = roundup2(sc->num_tx_desc * sizeof(union igc_adv_tx_desc),
sys/dev/pci/if_igc.c
416
if (igc_dma_malloc(sc, tsize, &txr->txdma)) {
sys/dev/pci/if_igc.c
422
bzero((void *)txr->tx_base, tsize);
sys/dev/pci/if_ix.c
2167
int rsize, tsize;
sys/dev/pci/if_ix.c
2192
tsize = roundup2(sc->num_tx_desc *
sys/dev/pci/if_ix.c
2206
if (ixgbe_dma_malloc(sc, tsize,
sys/dev/pci/if_ix.c
2213
bzero((void *)txr->tx_base, tsize);
sys/dev/pci/if_ixgb.c
170
int tsize, rsize;
sys/dev/pci/if_ixgb.c
205
tsize = IXGB_ROUNDUP(sc->num_tx_desc * sizeof(struct ixgb_tx_desc),
sys/dev/pci/if_ixgb.c
207
tsize = IXGB_ROUNDUP(tsize, PAGE_SIZE);
sys/dev/pci/if_ixgb.c
210
if (ixgb_dma_malloc(sc, tsize, &sc->txdma, BUS_DMA_NOWAIT)) {
sys/dev/pci/if_ngbe.c
1166
int i, rsize, rxconf, tsize, txconf;
sys/dev/pci/if_ngbe.c
1195
tsize = roundup2(sc->num_tx_desc * sizeof(union ngbe_tx_desc),
sys/dev/pci/if_ngbe.c
1202
if (ngbe_dma_malloc(sc, tsize, &txr->txdma)) {
sys/dev/pci/if_ngbe.c
1208
bzero((void *)txr->tx_base, tsize);
sys/kern/kern_sysctl.c
2681
size_t infosize, dssize, tsize, buflen, bufsiz;
sys/kern/kern_sysctl.c
2718
tsize = infosize + (nds * dssize);
sys/kern/kern_sysctl.c
2722
*sizep = tsize;
sys/kern/kern_sysctl.c
2731
bufsiz = min(tsize, buflen);
sys/nfs/nfs_serv.c
1027
int error = 0, len, tsize, dirfor_ret = 1, diraft_ret = 1;
sys/nfs/nfs_serv.c
1125
tsize = fxdr_unsigned(int32_t, sp->sa_size);
sys/nfs/nfs_serv.c
1126
if (tsize != -1)
sys/nfs/nfs_serv.c
1127
va.va_size = (u_quad_t)tsize;
sys/nfs/nfs_vnops.c
604
u_quad_t tsize = 0;
sys/nfs/nfs_vnops.c
653
tsize = np->n_size;
sys/nfs/nfs_vnops.c
665
np->n_size = np->n_vattr.va_size = tsize;
sys/nfs/nfs_vnops.c
669
if (vap->va_size != VNOVAL && vap->va_size < tsize)
usr.bin/less/charset.c
770
is_in_table(LWCHAR ch, struct wchar_range table[], int tsize)
usr.bin/less/charset.c
779
hi = tsize - 1;
usr.bin/rsync/session.c
32
uint64_t tread, uint64_t twrite, uint64_t tsize)
usr.bin/rsync/session.c
72
if (tsize >= 1024 * 1024 * 1024) {
usr.bin/rsync/session.c
73
ts = tsize / (1024.0 * 1024.0 * 1024.0);
usr.bin/rsync/session.c
76
} else if (tsize >= 1024 * 1024) {
usr.bin/rsync/session.c
77
ts = tsize / (1024.0 * 1024.0);
usr.bin/rsync/session.c
80
} else if (tsize >= 1024) {
usr.bin/rsync/session.c
81
ts = tsize / 1024.0;
usr.bin/rsync/session.c
85
ts = tsize;
usr.bin/xinstall/xinstall.c
620
create_tempfile(char *path, char *temp, size_t tsize)
usr.bin/xinstall/xinstall.c
624
if (strlcpy(temp, path, tsize) >= tsize) {
usr.bin/xinstall/xinstall.c
633
if (strlcat(temp, "INS@XXXXXXXXXX", tsize) >= tsize) {
usr.sbin/amd/amd/nfs_subr.c
468
fp->tsize = 1024;
usr.sbin/amd/rpcx/nfs_prot.h
444
u_int tsize;
usr.sbin/amd/rpcx/nfs_prot_xdr.c
381
if (!xdr_u_int(xdrs, &objp->tsize))
usr.sbin/nsd/util.c
661
b32_pton(const char *src, uint8_t *target, size_t tsize)
usr.sbin/nsd/util.c
666
memset(target,'\0',tsize);
usr.sbin/nsd/util.c
672
if(p+5 >= tsize*8)