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

123

/freebsd-9.3-release/usr.bin/truncate/
H A Dtruncate.c57 off_t oflow, rsize, tsize; local
63 rsize = tsize = sz = 0;
101 tsize = sb.st_size;
105 tsize = sz;
136 tsize = oflow;
138 if (tsize < 0)
139 tsize = 0;
141 if (ftruncate(fd, tsize) == -1) {
/freebsd-9.3-release/tools/regression/geom_concat/
H A Dtest-2.t9 tsize=6
13 dd if=/dev/random of=${src} bs=1m count=$tsize >/dev/null 2>&1
22 dd if=${src} of=/dev/concat/${name} bs=1m count=$tsize >/dev/null 2>&1
23 dd if=/dev/concat/${name} of=${dst} bs=1m count=$tsize >/dev/null 2>&1
/freebsd-9.3-release/tools/regression/geom_stripe/
H A Dtest-2.t9 tsize=3
13 dd if=/dev/random of=${src} bs=1m count=$tsize >/dev/null 2>&1
22 dd if=${src} of=/dev/stripe/${name} bs=1m count=$tsize >/dev/null 2>&1
23 dd if=/dev/stripe/${name} of=${dst} bs=1m count=$tsize >/dev/null 2>&1
/freebsd-9.3-release/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-9.3-release/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-9.3-release/contrib/binutils/include/coff/
H A Dia64.h46 char tsize[4]; /* text size in bytes, padded to FW bdry*/ member in struct:__anon524
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:__anon547
H A Drs6k64.h60 unsigned char tsize[8]; /* text size bytes, padded to FW bdry */ member in struct:__anon564
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-9.3-release/sys/i386/ibcs2/
H A Dcoff.h58 long tsize; /* */ member in struct:aouthdr
/freebsd-9.3-release/contrib/binutils/include/aout/
H A Dencap.h56 long tsize; member in struct:coffheader
/freebsd-9.3-release/usr.bin/tcopy/
H A Dtcopy.c64 u_int64_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-9.3-release/usr.sbin/config/
H A Dmain.c547 size_t tsize; local
568 tsize = (size_t)from_sb.st_size;
571 p = mmap(NULL, tsize, PROT_READ, MAP_SHARED, from_fd, (off_t)0);
574 q = mmap(NULL, tsize, PROT_READ, MAP_SHARED, to_fd, (off_t)0);
578 changed = memcmp(p, q, tsize);
579 munmap(p, tsize);
580 munmap(q, tsize);
/freebsd-9.3-release/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-9.3-release/contrib/amd/conf/nfs_prot/
H A Dnfs_prot_freebsd2.h105 #define sfrok_tsize tsize
H A Dnfs_prot_freebsd3.h141 #define sfrok_tsize tsize
/freebsd-9.3-release/contrib/libpcap/
H A Dsf-pcap.c372 static size_t tsize = 0; local
380 if (tsize < hdr->caplen) {
381 tsize = ((hdr->caplen + 1023) / 1024) * 1024;
384 tp = (u_char *)malloc(tsize);
386 tsize = 0;
/freebsd-9.3-release/sys/netsmb/
H A Dsmb_smb.c825 int tsize, len, resid; local
828 tsize = uio->uio_resid;
829 while (tsize > 0) {
831 len = tsize;
835 tsize -= resid;
900 int error = 0, len, tsize, resid; local
903 tsize = uio->uio_resid;
905 while (tsize > 0) {
907 len = tsize;
915 tsize
[all...]
/freebsd-9.3-release/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-9.3-release/sys/kern/
H A Dvfs_cluster.c325 long tinc, tsize; local
425 tsize = size;
427 for (j = 0; tsize > 0; j++) {
429 tinc = tsize;
438 tsize -= tinc;
441 if (tsize > 0) {
/freebsd-9.3-release/usr.bin/xinstall/
H A Dxinstall.c1081 create_tempfile(const char *path, char *temp, size_t tsize) argument
1085 (void)strncpy(temp, path, tsize);
1086 temp[tsize - 1] = '\0';
1091 (void)strncpy(p, "INS@XXXX", &temp[tsize - 1] - p);
1092 temp[tsize - 1] = '\0';
/freebsd-9.3-release/sys/contrib/octeon-sdk/
H A Dcvmx-dfa.h398 uint64_t tsize : 8; /**< tsize*256 is the number of terminal nodes for GRAPH_TYPE_SM */ member in struct:__anon6404::__anon6405
752 command.s.tsize = (graph->num_terminal_nodes + 255) / 256;

Completed in 151 milliseconds

123