Home
last modified time | relevance | path

Searched refs:BLKSIZE (Results 1 – 10 of 10) sorted by relevance

/titanic_50/usr/src/lib/libproc/common/
H A DPscantext.c42 #define BLKSIZE (8 * 1024) macro
62 uint32_t buf[2 * BLKSIZE / sizeof (uint32_t)]; /* text buffer */ in Pscantext()
142 if ((nbytes = read(P->asfd, buf, 2*BLKSIZE)) <= 0) in Pscantext()
145 if (nbytes < BLKSIZE) in Pscantext()
148 n2bytes = nbytes - BLKSIZE; in Pscantext()
149 nbytes = BLKSIZE; in Pscantext()
160 &buf[BLKSIZE / sizeof (buf[0])], in Pscantext()
164 if (nbytes == BLKSIZE && in Pscantext()
165 offset + BLKSIZE < endoff) in Pscantext()
167 &buf[BLKSIZE / sizeof (buf[0])], in Pscantext()
[all …]
/titanic_50/usr/src/lib/libshell/common/sh/
H A Dsuid_exec.c63 #undef BLKSIZE
64 #define BLKSIZE sizeof(char*)*1024 macro
496 char buffer[BLKSIZE]; in mycopy()
499 while((n = read(fdi,buffer,BLKSIZE)) > 0) in mycopy()
/titanic_50/usr/src/cmd/sgs/link_audit/common/
H A Dbindings.h39 #define BLKSIZE 0x4000 macro
H A Dbindings.c148 if (ftruncate(fd, bhp->bh_size + BLKSIZE) == -1) { in grow_buffer()
154 bhp->bh_size += BLKSIZE; in grow_buffer()
246 int init_size = sizeof (bindhead) + BLKSIZE; in la_version()
/titanic_50/usr/src/cmd/grep/
H A Dgrep.c83 #define BLKSIZE 512 macro
465 ((lseek(temp, (off_t)0, SEEK_CUR) - 1) / BLKSIZE)); in succeed()
/titanic_50/usr/src/test/zfs-tests/tests/functional/replacement/
H A Dreplacement.cfg37 export HOLES_COUNT=${HOLES_COUNT-"16384"} # FILESIZE/BLKSIZE/8
/titanic_50/usr/src/test/zfs-tests/tests/functional/sparse/
H A Dsparse.cfg36 export HOLES_COUNT=${HOLES_COUNT-"16384"} # FILESIZE/BLKSIZE/8
/titanic_50/usr/src/test/zfs-tests/tests/functional/truncate/
H A Dtruncate.cfg32 export TRUNC_COUNT=${TRUNC_COUNT-"16384"} # FILESIZE/BLKSIZE/8
/titanic_50/usr/src/cmd/fs.d/ufs/fsdb/
H A Dfsdb.c141 #define BLKSIZE (fs->fs_bsize) /* for clarity */ macro
621 buffers = malloc(NBUF * BLKSIZE); in main()
625 bp->blkaddr = buffers + (i * BLKSIZE); in main()
842 count = BLKSIZE; in main()
1018 blocksize = BLKSIZE; in main()
1019 filesize = BLKSIZE * 2; in main()
1185 blocksize = BLKSIZE; in main()
1186 filesize = BLKSIZE * 2; in main()
1351 cur_bytes = (value) * BLKSIZE; in main()
1493 cur_bytes = (NDADDR - 1) * BLKSIZE; in main()
[all …]
/titanic_50/usr/src/cmd/egrep/
H A Degrep.y66 #define BLKSIZE 512 /* size of reported disk blocks */ macro
934 printf("%lld:", nchars/BLKSIZE); in execute()