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

123

/freebsd-11-stable/tests/sys/geom/class/concat/
H A D2_test.sh8 tsize=6
16 dd if=/dev/random of=${src} bs=1m count=$tsize >/dev/null 2>&1
21 dd if=${src} of=/dev/concat/${name} bs=1m count=$tsize >/dev/null 2>&1
22 dd if=/dev/concat/${name} of=${dst} bs=1m count=$tsize >/dev/null 2>&1
/freebsd-11-stable/tests/sys/geom/class/stripe/
H A D2_test.sh8 tsize=3
12 dd if=/dev/random of=${src} bs=1m count=$tsize >/dev/null 2>&1
21 dd if=${src} of=/dev/stripe/${name} bs=1m count=$tsize >/dev/null 2>&1
22 dd if=/dev/stripe/${name} of=${dst} bs=1m count=$tsize >/dev/null 2>&1
/freebsd-11-stable/usr.bin/truncate/
H A Dtruncate.c59 off_t oflow, rsize, sz, tsize; local
65 rsize = tsize = sz = 0;
105 tsize = sb.st_size;
109 tsize = sz;
140 tsize = oflow;
142 if (tsize < 0)
143 tsize = 0;
145 if (ftruncate(fd, tsize) == -1) {
/freebsd-11-stable/sys/dev/patm/genrtab/
H A Dgenrtab.c46 static const u_int tsize = 256; variable
127 return (tsize - 1);
129 return ((tsize - 1) * (1 - log(alink / lg) / log(alink / offset)));
139 (double)(tsize - lg - 1) / (tsize - 1)));
186 (double)(tsize - i - 1) / (tsize - 1));
312 for (i = 0; i < tsize/2 - 8; i++) {
338 for (i = 0; i < tsize; i++) {
377 d = tsize
[all...]
/freebsd-11-stable/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-11-stable/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-11-stable/contrib/binutils/include/coff/
H A Dia64.h46 char tsize[4]; /* text size in bytes, padded to FW bdry*/ member in struct:__anon394
H A Dexternal.h47 char tsize[4]; /* text size in bytes, padded to FW bdry*/ member in struct:external_aouthdr
63 char tsize[4]; /* Text size in bytes, padded to FW bdry*/ member in struct:external_aouthdr64
H A Drs6000.h38 unsigned char tsize[4]; /* text size in bytes, padded to FW bdry */ member in struct:__anon417
H A Drs6k64.h60 unsigned char tsize[8]; /* text size bytes, padded to FW bdry */ member in struct:__anon434
H A Dalpha.h57 unsigned char tsize[8]; /* text size in bytes */ member in struct:external_aouthdr
H A Dmips.h40 unsigned char tsize[4]; /* text size in bytes, padded to FW bdry*/ member in struct:external_aouthdr
/freebsd-11-stable/sys/i386/ibcs2/
H A Dcoff.h58 long tsize; /* */ member in struct:aouthdr
/freebsd-11-stable/contrib/binutils/include/aout/
H A Dencap.h56 long tsize; member in struct:coffheader
/freebsd-11-stable/usr.bin/tcopy/
H A Dtcopy.c64 static uint64_t lastrec, record, size, tsize; variable
206 tsize += size;
212 fprintf(msg, "total length: %ju bytes\n", (intmax_t)tsize);
288 fprintf(msg, "total length: %ju bytes\n", (uintmax_t)(tsize + size));
/freebsd-11-stable/contrib/groff/src/preproc/grn/
H A Dmain.cpp178 int tsize[SIZES]; /* optionally changed by commands inside */ variable
436 tsize[i] = defsize[i];
541 tsize[i] = (int) (troffscale * (double) tsize[i] + 0.5);
668 defsize[i] = tsize[i];
740 tsize[str1[0] - '1'] = i;
/freebsd-11-stable/contrib/amd/conf/nfs_prot/
H A Dnfs_prot_freebsd2.h101 #define sfrok_tsize tsize
H A Dnfs_prot_freebsd3.h139 #define sfrok_tsize tsize
/freebsd-11-stable/usr.sbin/config/
H A Dmain.c595 size_t tsize; local
616 tsize = (size_t)from_sb.st_size;
619 p = mmap(NULL, tsize, PROT_READ, MAP_SHARED, from_fd, (off_t)0);
622 q = mmap(NULL, tsize, PROT_READ, MAP_SHARED, to_fd, (off_t)0);
626 changed = memcmp(p, q, tsize);
627 munmap(p, tsize);
628 munmap(q, tsize);
/freebsd-11-stable/sys/netsmb/
H A Dsmb_smb.c823 int tsize, len, resid; local
826 tsize = uio->uio_resid;
827 while (tsize > 0) {
829 len = tsize;
833 tsize -= resid;
898 int error = 0, len, tsize, resid; local
901 tsize = uio->uio_resid;
903 while (tsize > 0) {
905 len = tsize;
913 tsize
[all...]
/freebsd-11-stable/sbin/dump/
H A Dmain.c112 tsize = 0; /* Default later, based on 'c' option for cart tapes */
208 tsize = numarg("tape size", 1L, 0L) * 12 * 10;
284 if (tsize == 0)
285 tsize = cartridge ? 1700L*120L : 2300L*120L;
500 ) * (1.0 / tsize ); /* tape / 0.1" " */
513 ) * (1.0 / tsize ); /* tape / 0.1" " */
H A Ddump.h72 long tsize; /* tape size in 0.1" units */ variable
/freebsd-11-stable/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-11-stable/stand/libsa/
H A Dtftp.c334 bcopy("tsize", wtail, 6);
690 int tsize = 0; local
711 * * "tsize" is specified in RFC2349.
718 } else if (strcasecmp(tftp_options[i], "tsize") == 0) {
720 tsize = strtol(tftp_options[i + 1], NULL, 10);
721 if (tsize != 0)
722 h->tftp_tsize = tsize;

Completed in 309 milliseconds

123