HomeSort by: relevance | last modified time | path
    Searched refs:extsize (Results 1 - 12 of 12) sorted by relevancy

  /src/common/dist/zlib/contrib/minizip/
mztools.c 57 unsigned int extsize = READ_16(header + 28); /* extra field length */ local in function:unzRepair
92 if (extsize > 0) {
93 if (extsize < sizeof(extra)) {
94 if (fread(extra, 1, extsize, fpZip) == extsize) {
95 if (fwrite(extra, 1, extsize, fpOut) == extsize) {
96 offset += extsize;
157 WRITE_16(header + 30, extsize);
181 if (extsize > 0)
    [all...]
  /src/sbin/restore/
dirs.c 93 int extsize; member in struct:modeinfo
632 if (node.extsize > 0) {
633 if (bufsize < node.extsize) {
636 if ((buf = malloc(node.extsize)) != NULL) {
637 bufsize = node.extsize;
642 if (bufsize >= node.extsize) {
643 (void) fread(buf, 1, node.extsize, mf);
652 (void) fseek(mf, node.extsize, SEEK_CUR);
685 if (node.extsize > 0) {
686 if (bufsize >= node.extsize) {
    [all...]
restore.h 137 int extsize; /* size of extended attribute data */ member in struct:context
tape.c 637 int extsize; local in function:extractfile
658 extsize = curfile.extsize;
691 buf = setupextattr(extsize);
706 if (extsize > 0)
707 set_extattr(-1, name, buf, extsize, SXA_LINK);
735 if (extsize == 0) {
738 buf = setupextattr(extsize);
740 set_extattr(-1, name, buf, extsize, SXA_FILE);
770 if (extsize == 0)
    [all...]
  /src/sbin/dump/
traverse.c 697 int extsize = iswap32(spcl.c_extsize);
699 resid = howmany(ufsib->ufs_qfmask & extsize,
754 int i, blks, tbperdb, count, extsize; local in function:appendextdata
757 extsize = iswap32(spcl.c_extsize);
761 if (extsize == 0)
769 if (extsize > UFS_NXADDR * ufsib->ufs_bsize)
772 blks = howmany(extsize, TP_BSIZE);
800 int i, frags, blks, tbperdb, last, extsize; local in function:writeextdata
804 extsize = iswap32(spcl.c_extsize);
809 if (extsize == 0
    [all...]
  /src/sbin/fsdb/
fsdbutil.c 98 uint32_t extsize; local in function:printstat
104 extsize = is_ufs2 ? iswap32(dp->dp2.di_extsize) : 0;
144 printf("I=%llu MODE=%o SIZE=%llu EXTSIZE=%u", (unsigned long long)inum,
145 mode, (unsigned long long)size, extsize);
fsdb.c 267 CMDFUNC(chextsize); /* Change extsize */
307 { "chextsize", "Change extsize of current inode to EXTSIZE", 2, 2, chextsize },
1378 uint32_t extsize; local in function:CMDFUNC
1386 extsize = strtol(argv[1], &cp, 0);
1388 warnx("bad extsize `%s'", argv[1]);
1392 curinode->dp2.di_extsize = extsize;
  /src/sys/arch/powerpc/ibm4xx/
ibm4xx_machdep.c 327 extern int extint, extsize;
338 memcpy((void *)EXC_EXI, &extint, (size_t)&extsize);
340 __syncicache((void *)EXC_EXI, (int)&extsize);
trap_subr.S 188 .globl _C_LABEL(extint),_C_LABEL(extsize)
192 _C_LABEL(extsize) = .-_C_LABEL(extint)
  /src/tests/sbin/fsck_ffs/
t_extattr.sh 119 extsize=$(printf 'cd file\n' |
121 grep EXTSIZE |
126 atf_check [ "$extsize" != 0 ]
137 printf "cd file\nchextsize $extsize\n" | fsdb -N "$CDEV"
  /src/sys/arch/powerpc/oea/
oea_machdep.c 878 extern int extint[], extsize[];
898 memcpy((void *)exc_exi_base, extint, (size_t)extsize);
902 (uintptr_t)ip <= exc_exi_base + (size_t)extsize;
916 __syncicache((void *)exc_exi_base, (size_t)extsize);
  /src/sys/arch/powerpc/powerpc/
trap_subr.S 426 /* LINTSTUB: Var: int extint[1], extsize[1]; */
427 .globl _C_LABEL(extint),_C_LABEL(extsize)
455 _C_LABEL(extsize) = .-_C_LABEL(extint)

Completed in 20 milliseconds