/src/sys/arch/next68k/stand/boot/ |
installboot.sh | 18 dd if="$1" of="$2" obs=1024 seek=32 conv=osync 19 dd if="$1" of="$2" obs=1024 seek=96 conv=osync
|
/src/sys/arch/hpc/stand/hpcboot/ |
file_fat.h | 53 BOOL seek(off_t);
|
file_ufs.h | 54 BOOL seek(off_t);
|
file.h | 59 virtual BOOL seek(off_t) = 0; 105 BOOL seek(off_t);
|
file_manager.cpp | 90 seek(ofs); 228 seek(pos); 234 FileManager::seek(off_t offset) function in class:FileManager 238 _file->seek(offset); 243 /* if seek backwards, simply start from the beginning */ 245 _file->seek(0); 255 /* to seek forwards, throw away data */
|
file_fat.cpp | 110 FatFile::seek(off_t ofs) function in class:FatFile
|
file_http.h | 102 BOOL seek(off_t);
|
/src/usr.bin/vmstat/ |
drvstats.h | 45 u_int64_t *seek; /* # of seeks (currently unused). */ member in struct:_drive
|
drvstats.c | 108 || cur.seek[i] - last.seek[i] > INT64_MAX 114 last.seek[i] = cur.seek[i]; 128 SWAP(seek[i]); 214 COPYF(seek, i, j); 346 cur.seek = calloc(ndrive, sizeof(u_int64_t)); 357 last.seek = calloc(ndrive, sizeof(u_int64_t)); 367 cur.seek == NULL || cur.rbytes == NULL || 373 last.seek == NULL || last.rbytes == NULL | [all...] |
/src/distrib/common/ |
buildfloppies.sh | 186 seek=0 197 count=$(( ${floppysize8k} - ${seek} )) 198 dd bs=8k conv=sync seek=${seek} skip=${skip} count=${count} \ 203 seek=1
|
/src/tests/bin/dd/ |
t_dd.sh | 104 atf_test_case seek 112 dd if=/dev/zero of=testfile seek=1 bs=8k count=1 119 'dd bs=4 if=/dev/zero count=1 | tr \\0 \\n | dd of=tf2 bs=4 seek=1' 156 atf_add_test_case seek
|
/src/bin/pax/ |
tables.h | 68 * Filenames are stored in a scratch file at seek offset into the file. The 80 off_t seek; /* location in scratch file */ member in struct:ftm
|
/src/sys/arch/hpcmips/stand/lcboot/ |
conf.c | 63 .seek = tftp_seek,
|
/src/common/dist/zlib/ |
gzwrite.c | 186 /* check for seek request */ 187 if (state->seek) { 188 state->seek = 0; 305 /* check for seek request */ 306 if (state->seek) { 307 state->seek = 0; 382 /* check for seek request */ 383 if (state->seek) { 384 state->seek = 0; 472 /* check for seek request * [all...] |
gzlib.c | 78 state->seek = 0; /* no seek request pending */ 355 /* can only seek from start or relative to current position */ 362 else if (state->seek) 364 state->seek = 0; 375 state->seek = 0; 382 /* calculate skip amount, rewinding if needed for back seek when reading */ 405 state->seek = 1; 431 return state->x.pos + (state->seek ? state->skip : 0);
|
gzread.c | 277 if (state->seek) { 278 state->seek = 0; 456 if (state->seek) { 457 state->seek = 0; 516 if (state->seek) { 517 state->seek = 0;
|
/src/distrib/sgimips/cdroms/installcd/ |
Makefile | 15 dd if=${CDIMAGE}.tmp of=${CDIMAGE} bs=512 seek=${SGIVOLHDR.size}
|
/src/sys/sys/ |
iostat.h | 56 u_int64_t seek; member in struct:io_sysctl 96 u_int64_t io_seek; /* total independent seek operations */
|
/src/tests/sbin/gpt/ |
t_gpt.sh | 80 zerodd seek="$size" count=1 217 zerodd seek="$((size - shdr))" count="$shdr" 229 zerodd seek=1 count="$shdr" 241 zerodd seek="$newsize" count=1
|
/src/distrib/vax/floppy/ |
Makefile | 35 dd of=${IMAGE}.tmp seek=16
|
/src/distrib/utils/embedded/conf/ |
wii.conf | 64 seek=$((${swap_size_MB} * 1024 * 1024 - 1))
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/scripts/ |
sancov.py | 66 f.seek(0, 2) 68 f.seek(0, 0) 156 f.seek(0, 2) 158 f.seek(0, 0) 181 f2.seek(0, 2)
|
/src/etc/etc.sgimips/ |
Makefile.inc | 37 @SEEK=$$(${TOOL_AWK} '/SGI_BOOT_BLOCK_SIZE_VOLHDR/{print $$3}' \ 41 END { print int(('$${SEEK}'*512+s)/1024/1024/32+1)*32 \ 52 dd if=${CDROM_IMAGE} of=${SGI.image} bs=512 seek=$${SEEK}
|
/src/bin/ed/ |
buf.c | 52 int seek_write; /* seek before writing */ 67 seek_write = 1; /* force seek on write */ 69 if (sfseek != lp->seek) { 70 sfseek = lp->seek; 73 seterrmsg("cannot seek temp file"); 117 seterrmsg("cannot seek temp file"); 133 lp->seek = sfseek;
|
/src/lib/libossaudio/ |
oss_dsp.c | 289 bufinfo.fragments = tmpinfo.hiwat - (tmpinfo.play.seek 293 - tmpinfo.play.seek; 301 bufinfo.fragments = tmpinfo.record.seek / tmpinfo.blocksize; 304 bufinfo.bytes = tmpinfo.record.seek; 358 osscount.fifo_samples = tmpinfo.record.seek / 381 osscount.fifo_samples = tmpinfo.play.seek / 418 idat = tmpinfo.play.seek + tmpinfo.blocksize / 2;
|