Searched refs:tsize (Results 1 - 25 of 33) sorted by relevance

12

/freebsd-current/tests/sys/geom/class/concat/
H A D2_test.sh7 tsize=6
15 dd if=/dev/random of=${src} bs=1m count=$tsize >/dev/null 2>&1
20 dd if=${src} of=/dev/concat/${name} bs=1m count=$tsize >/dev/null 2>&1
21 dd if=/dev/concat/${name} of=${dst} bs=1m count=$tsize >/dev/null 2>&1
/freebsd-current/tests/sys/geom/class/stripe/
H A D2_test.sh7 tsize=3
11 dd if=/dev/random of=${src} bs=1m count=$tsize >/dev/null 2>&1
20 dd if=${src} of=/dev/stripe/${name} bs=1m count=$tsize >/dev/null 2>&1
21 dd if=/dev/stripe/${name} of=${dst} bs=1m count=$tsize >/dev/null 2>&1
/freebsd-current/usr.bin/truncate/
H A Dtruncate.c54 off_t oflow, rsize, sz, tsize, round, off, len; local
68 rsize = tsize = sz = off = 0;
141 tsize = sb.st_size;
145 tsize = sz;
176 tsize = oflow;
193 tsize = (round < 0 ? 0 : round) * sz;
195 tsize = sb.st_size;
197 if (tsize < 0)
198 tsize = 0;
206 r = ftruncate(fd, tsize);
[all...]
/freebsd-current/crypto/heimdal/lib/gssapi/krb5/
H A Dprf.c120 size_t tsize; local
134 tsize = min(dol, output.length);
135 memcpy(p, output.data, tsize);
136 p += tsize;
137 dol -= tsize;
/freebsd-current/contrib/sendmail/libsm/
H A Dfvwrite.c136 int tsize; local
139 tsize = fp->f_bf.smb_size;
142 tsize = (tsize << 1) + 1;
143 } while ((size_t) tsize < blen + len);
145 tsize + 1);
151 fp->f_w += tsize - fp->f_bf.smb_size;
153 fp->f_bf.smb_size = tsize;
/freebsd-current/usr.bin/tcopy/
H A Dtcopy.c53 static uint64_t lastrec, record, size, tsize; variable
200 tsize += size;
206 fprintf(msg, "total length: %ju bytes\n", (intmax_t)tsize);
283 fprintf(msg, "total length: %ju bytes\n", (uintmax_t)(tsize + size));
/freebsd-current/sys/contrib/openzfs/module/zfs/
H A Dvdev_raidz_math_impl.h748 * @tsize size of syndrome columns
752 raidz_syn_r_abd(void **xc, const void *dc, const size_t tsize, argument
758 const v_t * const xend = x + (tsize / sizeof (v_t));
843 * @tsize size of syndrome columns
847 raidz_syn_pq_abd(void **tc, const void *dc, const size_t tsize, argument
854 const v_t * const yend = y + (tsize / sizeof (v_t));
874 * @tsize size of syndrome/result columns
879 raidz_rec_pq_abd(void **tc, const size_t tsize, void **c, argument
884 const v_t * const xend = x + (tsize / sizeof (v_t));
1004 * @tsize siz
1008 raidz_syn_pr_abd(void **c, const void *dc, const size_t tsize, const size_t dsize) argument
1040 raidz_rec_pr_abd(void **t, const size_t tsize, void **c, const unsigned *mul) argument
1170 raidz_syn_qr_abd(void **c, const void *dc, const size_t tsize, const size_t dsize) argument
1204 raidz_rec_qr_abd(void **t, const size_t tsize, void **c, const unsigned *mul) argument
1338 raidz_syn_pqr_abd(void **c, const void *dc, const size_t tsize, const size_t dsize) argument
1375 raidz_rec_pqr_abd(void **t, const size_t tsize, void **c, const unsigned * const mul) argument
[all...]
H A Dabd.c1146 * @tsize size of data target columns
1152 size_t tsize, const unsigned parity,
1153 void (*func_raidz_rec)(void **t, const size_t tsize, void **c,
1171 ASSERT3U(tsize, <=, cabds[i]->abd_size);
1172 ASSERT3U(tsize, <=, tabds[i]->abd_size);
1180 while (tsize > 0) {
1181 len = tsize;
1214 tsize -= len;
1215 ASSERT3S(tsize, >=, 0);
1151 abd_raidz_rec_iterate(abd_t **cabds, abd_t **tabds, size_t tsize, const unsigned parity, void (*func_raidz_rec)(void **t, const size_t tsize, void **c, const unsigned *mul), const unsigned *mul) argument
/freebsd-current/usr.sbin/config/
H A Dmain.cc582 size_t tsize; local
606 tsize = (size_t)from_sb.st_size;
608 p = (char *)mmap(NULL, tsize, PROT_READ, MAP_SHARED, from_fd,
612 q = (char *)mmap(NULL, tsize, PROT_READ, MAP_SHARED, to_fd,
617 changed = memcmp(p, q, tsize);
618 munmap(p, tsize);
619 munmap(q, tsize);
/freebsd-current/sbin/dump/
H A Dmain.c77 long tsize; /* tape size in 0.1" units */ variable
121 tsize = 0; /* Default later, based on 'c' option for cart tapes */
216 tsize = numarg("tape size", 1L, 0L) * 12 * 10;
292 if (tsize == 0)
293 tsize = cartridge ? 1700L*120L : 2300L*120L;
505 ) * (1.0 / tsize ); /* tape / 0.1" " */
518 ) * (1.0 / tsize ); /* tape / 0.1" " */
H A Ddump.h68 extern long tsize; /* tape size in 0.1" units */
/freebsd-current/sys/netsmb/
H A Dsmb_smb.c820 int tsize, len, resid; local
823 tsize = uio->uio_resid;
824 while (tsize > 0) {
826 len = tsize;
830 tsize -= resid;
895 int error = 0, len, tsize, resid; local
898 tsize = uio->uio_resid;
900 while (tsize > 0) {
902 len = tsize;
910 tsize
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextLinux_i386.cpp64 uint32_t tsize; // Text segment size. member in struct:UserArea
H A DRegisterContextLinux_x86_64.cpp57 uint64_t tsize; // Text segment size. member in struct:UserArea
/freebsd-current/sys/contrib/openzfs/include/sys/
H A Dabd.h147 size_t tsize, const unsigned parity,
148 void (*func_raidz_rec)(void **t, const size_t tsize, void **c,
/freebsd-current/stand/libsa/
H A Dtftp.c341 bcopy("tsize", wtail, 6);
771 int tsize = 0; local
792 * * "tsize" is specified in RFC2349.
799 } else if (strcasecmp(tftp_options[i], "tsize") == 0) {
801 tsize = strtol(tftp_options[i + 1], NULL, 10);
802 if (tsize != 0)
803 h->tftp_tsize = tsize;
/freebsd-current/sys/kern/
H A Dvfs_cluster.c344 long tinc, tsize; local
446 tsize = size;
447 for (j = 0; tsize > 0; j++) {
449 tinc = tsize;
461 tsize -= tinc;
463 if (tsize > 0) {
/freebsd-current/sys/rpc/
H A Drpcb_clnt.c435 size_t tsize; local
454 tsize = __rpc_get_t_size(AF_LOCAL, 0, 0);
456 (rpcvers_t)RPCBVERS, tsize, tsize, 1);
/freebsd-current/lib/libc/rpc/
H A Drpcb_clnt.c422 size_t tsize; local
441 tsize = __rpc_get_t_size(AF_LOCAL, 0, 0);
443 (rpcvers_t)RPCBVERS, tsize, tsize);
/freebsd-current/sys/powerpc/booke/
H A Dpmap.c2694 tsize2size(unsigned int tsize) argument
2698 * size = 4^tsize KB
2699 * size = 4^tsize * 2^10 = 2^(2 * tsize - 10)
2702 return ((1 << (2 * tsize)) * 1024);
2727 int tsize, index; local
2741 tsize = size2tsize(size);
2751 e.mas1 |= ((tsize << MAS1_TSIZE_SHIFT) & MAS1_TSIZE_MASK);
3007 KASSERT((entry_tsize), ("tlb1_iomapped: invalid entry tsize"));
3036 unsigned int tsize; local
[all...]
/freebsd-current/usr.bin/xinstall/
H A Dxinstall.c1158 create_tempfile(const char *path, char *temp, size_t tsize) argument
1162 (void)strncpy(temp, path, tsize);
1163 temp[tsize - 1] = '\0';
1168 (void)strncpy(p, "INS@XXXXXX", &temp[tsize - 1] - p);
1169 temp[tsize - 1] = '\0';
/freebsd-current/sys/fs/smbfs/
H A Dsmbfs_vnops.c274 u_quad_t tsize = 0; local
322 tsize = np->n_size;
337 np->n_size = tsize;
338 vnode_pager_setsize(vp, (u_long)tsize);
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_alloc.cpp155 bufsize tsize; /* Total size, including overhead */ member in struct:bdhead
598 bdh->tsize = size;
650 rsize = bd->tsize - (bufsize)sizeof(bdhead_t);
686 osize = bd->tsize - (bufsize)sizeof(bdhead_t);
717 thr->totalloc -= (size_t)bdh->tsize;
722 (void)memset((char *)buf, 0x55, (size_t)(bdh->tsize - sizeof(bdhead_t)));
/freebsd-current/sys/fs/nfsclient/
H A Dnfs_clvnops.c1052 u_quad_t tsize; local
1056 tsize = (u_quad_t)0;
1106 tsize = np->n_size;
1111 tsize = np->n_size;
1116 vnode_pager_setsize(vp, tsize);
1156 np->n_size = np->n_vattr.na_size = tsize;
1157 vnode_pager_setsize(vp, tsize);
H A Dnfs_clbio.c1806 u_quad_t tsize; local
1811 tsize = np->n_size;
1815 if (nsize < tsize) {

Completed in 238 milliseconds

12