Symbol: tsize
bin/ksh/table.c
33
tinit(tp, ap, tsize)
bin/ksh/table.c
36
int tsize;
bin/ksh/table.c
41
if (tsize)
bin/ksh/table.c
42
texpand(tp, tsize);
bin/ps/extern.h
94
void tsize(struct pinfo *, VARENT *, enum mode);
bin/ps/keyword.c
208
VAR6("tsiz", "TSIZ", 0, tsize, POFF(p_vm_tsize), INT32),
lib/libc/rpc/rpcb_clnt.c
437
size_t tsize;
lib/libc/rpc/rpcb_clnt.c
452
tsize = SUN_LEN(&sun);
lib/libc/rpc/rpcb_clnt.c
453
_DIAGASSERT(__type_fit(uint8_t, tsize));
lib/libc/rpc/rpcb_clnt.c
454
nbuf.len = sun.sun_len = (uint8_t)tsize;
lib/libc/rpc/rpcb_clnt.c
458
tsize = __rpc_get_t_size(AF_LOCAL, 0, 0);
lib/libc/rpc/rpcb_clnt.c
459
_DIAGASSERT(__type_fit(u_int, tsize));
lib/libc/rpc/rpcb_clnt.c
461
(rpcvers_t)RPCBVERS, (u_int)tsize, (u_int)tsize);
sbin/dump/dump.h
128
extern long tsize; /* tape size in 0.1" units */
sbin/dump/main.c
157
tsize = 0; /* Default later, based on 'c' option for cart tapes */
sbin/dump/main.c
263
tsize = numarg("tape size", 1L, 0L) * 12 * 10;
sbin/dump/main.c
408
if (tsize == 0)
sbin/dump/main.c
409
tsize = cartridge ? 1700L*120L : 2300L*120L;
sbin/dump/main.c
606
) * (1.0 / tsize ); /* tape / 0.1" */
sbin/dump/main.c
619
) * (1.0 / tsize ); /* tape / 0.1" */
sbin/dump/main.c
96
long tsize;
sbin/dump/tape.c
347
(blocksthisvol >= blocksperfile) : (asize > tsize))) {
sys/arch/arm/amlogic/meson_sdhc.c
899
size_t tsize;
sys/arch/arm/amlogic/meson_sdhc.c
912
tsize = sizeof(tuning_blk_8bit);
sys/arch/arm/amlogic/meson_sdhc.c
918
tsize = sizeof(tuning_blk_4bit);
sys/arch/arm/amlogic/meson_sdhc.c
936
memset(data, 0, tsize);
sys/arch/arm/amlogic/meson_sdhc.c
939
cmd.c_datalen = cmd.c_blklen = tsize;
sys/arch/arm/amlogic/meson_sdhc.c
944
if (cmd.c_error == 0 && memcmp(data, tblk, tsize) == 0)
sys/arch/ews4800mips/stand/common/bootxx.c
253
memcpy((void *)a->text_start, p, a->tsize);
sys/arch/ews4800mips/stand/common/bootxx.c
254
memcpy((void *)a->data_start, p + a->tsize, a->dsize);
sys/arch/ews4800mips/stand/common/bootxx.c
257
DPRINTF("[text] 0x%08lx %ld byte.\n", a->text_start, a->tsize);
sys/arch/i386/stand/dosboot/dosfile.c
112
u_int tsize;
sys/arch/i386/stand/dosboot/dosfile.c
116
tsize = lsize;
sys/arch/i386/stand/dosboot/dosfile.c
118
if (tsize > DISKBUFSIZE)
sys/arch/i386/stand/dosboot/dosfile.c
119
tsize = DISKBUFSIZE;
sys/arch/i386/stand/dosboot/dosfile.c
123
tgot = dosread(df->doshandle, diskbufp, tsize);
sys/arch/i386/stand/dosboot/dosfile.c
135
if (tgot != tsize)
sys/arch/macppc/stand/fixcoff/fixcoff.c
84
char tsize[4];
sys/arch/next68k/stand/boot/sd.c
270
int tsize;
sys/arch/next68k/stand/boot/sd.c
272
tsize = MAX_DMASIZE;
sys/arch/next68k/stand/boot/sd.c
274
tsize = size;
sys/arch/next68k/stand/boot/sd.c
276
nblks = howmany(tsize, ss->sc_dev_bsize);
sys/arch/next68k/stand/boot/sd.c
279
blk, tsize, nblks, ss->sc_dev_bsize));
sys/arch/next68k/stand/boot/sd.c
291
(u_char *)&cdb, sizeof(cdb), (char *)buf + *rsize, &tsize);
sys/arch/next68k/stand/boot/sd.c
297
*rsize += tsize;
sys/arch/next68k/stand/boot/sd.c
298
size -= tsize;
sys/arch/sh3/sh3/coff_exec.c
408
int taddr, tsize, daddr, dsize, offset;
sys/arch/sh3/sh3/coff_exec.c
452
tsize = shp->s_size + (shp->s_vaddr - taddr);
sys/arch/sh3/sh3/coff_exec.c
453
DPRINTF(("VMCMD: addr %x size %x offset %x\n", taddr, tsize, offset));
sys/arch/sh3/sh3/coff_exec.c
454
NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_readvn, tsize, taddr,
sys/compat/common/sysv_ipc_50.c
139
tsize = infosize + nds * dssize;
sys/compat/common/sysv_ipc_50.c
143
*sizep = tsize;
sys/compat/common/sysv_ipc_50.c
152
bf = malloc(uimin(tsize, buflen), M_TEMP, M_WAITOK | M_ZERO);
sys/compat/common/sysv_ipc_50.c
90
size_t infosize, dssize, tsize, buflen;
sys/compat/linux/arch/alpha/linux_osf1.c
312
segsz_t tsize, dsize;
sys/compat/linux/arch/alpha/linux_osf1.c
314
tsize = btoc(SCARG(uap, tsize));
sys/compat/linux/arch/alpha/linux_osf1.c
320
if (tsize > MAXTSIZ)
sys/compat/linux/arch/alpha/linux_osf1.c
326
p->p_vmspace->vm_tsize = tsize;
sys/compat/linux/arch/alpha/linux_syscallargs.h
123
syscallarg(unsigned long) tsize;
sys/compat/linux/common/linux_uselib.c
125
tsize = hdr.a_text;
sys/compat/linux/common/linux_uselib.c
126
daddr = taddr + tsize;
sys/compat/linux/common/linux_uselib.c
90
long bsize, dsize, tsize, taddr, baddr, daddr;
sys/dev/hid/hidkbd.c
338
hidkbd_translate(const struct hidkbd_translation *table, size_t tsize,
sys/dev/hid/hidkbd.c
341
for (; tsize != 0; table++, tsize--)
sys/dev/pci/igc/if_igc.c
661
const int tsize = roundup2(
sys/dev/pci/igc/if_igc.c
668
if (igc_dma_malloc(sc, tsize, &txr->txdma)) {
sys/dev/pci/igc/if_igc.c
674
memset(txr->tx_base, 0, tsize);
sys/dev/pci/ixgbe/ix_txrx.c
2362
int rsize, tsize, error = IXGBE_SUCCESS;
sys/dev/pci/ixgbe/ix_txrx.c
2378
tsize = sc->num_tx_desc * sizeof(union ixgbe_adv_tx_desc);
sys/dev/pci/ixgbe/ix_txrx.c
2379
KASSERT((tsize % DBA_ALIGN) == 0);
sys/dev/pci/ixgbe/ix_txrx.c
2403
if (ixgbe_dma_malloc(sc, tsize, &txr->txdma,
sys/dev/pci/ixgbe/ix_txrx.c
2411
bzero((void *)txr->tx_base, tsize);
sys/fs/nfs/client/nfs_clbio.c
1824
u_quad_t tsize;
sys/fs/nfs/client/nfs_clbio.c
1829
tsize = np->n_size;
sys/fs/nfs/client/nfs_clbio.c
1833
if (nsize < tsize) {
sys/fs/nfs/client/nfs_clvnops.c
890
u_quad_t tsize;
sys/fs/nfs/client/nfs_clvnops.c
893
tsize = (u_quad_t)0;
sys/fs/nfs/client/nfs_clvnops.c
940
tsize = np->n_size;
sys/fs/nfs/client/nfs_clvnops.c
946
tsize = np->n_size;
sys/fs/nfs/client/nfs_clvnops.c
953
vnode_pager_setsize(vp, tsize);
sys/fs/nfs/client/nfs_clvnops.c
987
np->n_size = np->n_vattr.na_size = tsize;
sys/fs/nfs/client/nfs_clvnops.c
988
vnode_pager_setsize(vp, tsize);
sys/fs/nfs/server/nfs_nfsdserv.c
1016
tsize = fxdr_unsigned(int32_t, sp->sa_size);
sys/fs/nfs/server/nfs_nfsdserv.c
1017
if (tsize != -1)
sys/fs/nfs/server/nfs_nfsdserv.c
1019
(u_quad_t)tsize);
sys/fs/nfs/server/nfs_nfsdserv.c
984
int error = 0, tsize, dirfor_ret = 1, diraft_ret = 1;
sys/kern/exec_ecoff.c
157
epp->ep_tsize = eap->tsize;
sys/kern/exec_ecoff.c
164
eap->tsize + eap->dsize, epp->ep_taddr, vp,
sys/kern/exec_ecoff.c
188
epp->ep_tsize = eap->tsize;
sys/kern/exec_ecoff.c
229
epp->ep_tsize = eap->tsize;
sys/kern/exec_ecoff.c
239
NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_pagedvn, eap->tsize,
sys/kern/sysv_ipc.c
369
size_t infosize, dssize, tsize, buflen;
sys/kern/sysv_ipc.c
429
tsize = infosize + nds * dssize;
sys/kern/sysv_ipc.c
433
*sizep = tsize;
sys/kern/sysv_ipc.c
442
sz = uimin(tsize, buflen);
sys/lib/libsa/loadfile_ecoff.c
69
if (coff->a.tsize != 0) {
sys/lib/libsa/loadfile_ecoff.c
71
PROGRESS(("%lu", coff->a.tsize));
sys/lib/libsa/loadfile_ecoff.c
72
nr = READ(fd, coff->a.text_start, coff->a.tsize);
sys/lib/libsa/loadfile_ecoff.c
76
if (nr != coff->a.tsize) {
sys/lib/libsa/loadfile_ecoff.c
82
if (lseek(fd, coff->a.tsize, SEEK_CUR) == -1) {
sys/lib/libsa/loadfile_ecoff.c
91
pos += coff->a.tsize;
sys/netinet/sctp_indata.c
1046
int tsize;
sys/netinet/sctp_indata.c
1578
(sctp_is_all_msg_on_reasm(asoc, &tsize) ||
sys/netinet/sctp_indata.c
1581
tsize))) {
sys/netinet/sctp_indata.c
2426
int tsize, cntDel;
sys/netinet/sctp_indata.c
2485
(sctp_is_all_msg_on_reasm(asoc, &tsize) ||
sys/netinet/sctp_indata.c
2487
(stcb->sctp_socket->so_rcv.sb_hiwat >> 2) && tsize))) {
sys/nfs/nfs_serv.c
1434
int error = 0, cache = 0, len, tsize, dirfor_ret = 1, diraft_ret = 1;
sys/nfs/nfs_serv.c
1495
tsize = fxdr_unsigned(int32_t, sp->sa_size);
sys/nfs/nfs_serv.c
1496
if (tsize != -1)
sys/nfs/nfs_serv.c
1497
va.va_size = (u_quad_t)tsize;
sys/nfs/nfs_vnops.c
575
u_quad_t tsize = 0;
sys/nfs/nfs_vnops.c
619
tsize = np->n_size;
sys/nfs/nfs_vnops.c
628
uvm_vnp_setsize(vp, tsize);
sys/nfs/nfs_vnops.c
650
np->n_size = np->n_vattr->va_size = tsize;
sys/sys/exec_ecoff.h
100
(ECOFF_BLOCK_ALIGN((ep), ECOFF32_TXTOFF(ep) + (ep)->a.tsize))
sys/sys/exec_ecoff.h
121
u_long tsize;
sys/sys/exec_ecoff.h
168
(ECOFF_BLOCK_ALIGN((ep), ECOFF_TXTOFF(ep) + (ep)->a.tsize))
sys/sys/exec_ecoff.h
64
ecoff32_ulong tsize;
usr.bin/elf2ecoff/elf2ecoff.c
326
ep.a.tsize = text.len;
usr.bin/elf2ecoff/elf2ecoff.c
367
ep.a.tsize = bswap32(ep.a.tsize);
usr.bin/elf2ecoff/elf2ecoff.c
575
esecs[0].s_size = ep->a.tsize;
usr.bin/systat/bufcache.c
129
double tvalid, tsize;
usr.bin/systat/bufcache.c
185
tvalid = tsize = 0;
usr.bin/systat/bufcache.c
211
tsize += s;
usr.bin/systat/bufcache.c
219
(long)(tsize/1024), 100 * tsize / bufmem,
usr.bin/systat/bufcache.c
220
tsize != 0 ? ((100 * tvalid) / tsize) : 0);
usr.bin/tcopy/tcopy.c
213
tsize += size;
usr.bin/tcopy/tcopy.c
219
fprintf(msg, "total length: %lld bytes\n", (long long)tsize);
usr.bin/tcopy/tcopy.c
299
fprintf(msg, "total length: %lld bytes\n", (long long)(tsize + size));
usr.bin/tcopy/tcopy.c
66
static off_t size, tsize;
usr.bin/tftp/extern.h
41
extern int tsize;
usr.bin/tftp/main.c
201
tsize = 1;
usr.bin/tftp/main.c
79
int tsize=0;
usr.bin/tftp/main.c
798
tsize = !tsize;
usr.bin/tftp/main.c
799
(void)printf("Tsize mode %s.\n", tsize ? "on" : "off");
usr.bin/tftp/tftp.c
241
if (tsize) {
usr.bin/tftp/tftp.c
554
if (tsize) {
usr.sbin/kvm_mkdb/nlist_ecoff.c
235
vma < (exechdrp->a.text_start + exechdrp->a.tsize))
usr.sbin/mdsetimage/exec_ecoff.c
78
vmaddr < (exechdrp->a.text_start + exechdrp->a.tsize))