| /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/external/gpl2/lvm2/dist/test/ |
| t-pool-labels.sh | 19 env printf "\x01\x16\x70\x06\x5f\xcf\xff\xb9\xf8\x24\x8apool1" | dd of=$2 bs=5 seek=1 conv=notrunc 20 env printf "\x04\x01\x03\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x0$1\x68\x01\x16\x70\x00\x00\x00\x00\x00\x06\x5f\xd0" | dd of=$2 bs=273 seek=1 conv=notrunc
|
| /src/crypto/external/bsd/heimdal/dist/lib/krb5/ |
| store-int.h | 43 off_t (*seek)(struct krb5_storage_data*, off_t, int); member in struct:krb5_storage_data
|
| store_mem.c | 52 sp->seek(sp, size, SEEK_CUR); 63 sp->seek(sp, size, SEEK_CUR); 86 return sp->seek(sp, s->ptr - s->base + offset, SEEK_SET); 88 return sp->seek(sp, s->size + offset, SEEK_SET); 148 sp->seek = mem_seek; 208 sp->seek = mem_seek;
|
| store_emem.c | 53 sp->seek(sp, size, SEEK_CUR); 77 sp->seek(sp, size, SEEK_CUR); 96 sp->seek(sp,s->ptr - s->base + offset, SEEK_SET); 99 sp->seek(sp, s->len + offset, SEEK_SET); 194 sp->seek = emem_seek;
|
| /src/external/bsd/libarchive/dist/libarchive/ |
| archive_read_open_file.c | 94 /* Enable the seek optimization only for regular files. */ 200 int64_t seek = request; local 202 off_t seek = (off_t)request; local 204 long seek = (long)request; local 206 int seek_bits = sizeof(seek) * 8 - 1; 209 /* Do not perform a seek which cannot be fulfilled. */ 210 if (sizeof(request) > sizeof(seek)) { 222 int64_t ret = lseek(fileno(mine->f), seek, whence); 227 if (_fseeki64(mine->f, seek, whence) == 0) { 231 if (fseeko(mine->f, seek, whence) == 0) [all...] |
| archive_read_open_fd.c | 161 /* Do not seek past end of file. */ 167 /* If seek failed once, it will probably fail again. */ 190 la_seek_t seek = (la_seek_t)request; local 192 int seek_bits = sizeof(seek) * 8 - 1; /* off_t is a signed type. */ 196 /* Do not perform a seek which cannot be fulfilled. */ 197 if (sizeof(request) > sizeof(seek)) { 207 r = lseek(mine->fd, seek, whence);
|
| /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 */
|
| /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/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...] |
| /src/external/bsd/zstd/dist/zlibWrapper/ |
| gzwrite.c | 186 /* check for seek request */ 187 if (state.state->seek) { 188 state.state->seek = 0; 306 /* check for seek request */ 307 if (state.state->seek) { 308 state.state->seek = 0; 380 /* check for seek request */ 381 if (state.state->seek) { 382 state.state->seek = 0; 470 /* check for seek request * [all...] |
| /src/external/gpl3/binutils/dist/zlib/ |
| gzwrite.c | 184 /* check for seek request */ 185 if (state->seek) { 186 state->seek = 0; 303 /* check for seek request */ 304 if (state->seek) { 305 state->seek = 0; 380 /* check for seek request */ 381 if (state->seek) { 382 state->seek = 0; 470 /* check for seek request * [all...] |
| /src/external/gpl3/binutils.old/dist/zlib/ |
| gzwrite.c | 202 /* check for seek request */ 203 if (state->seek) { 204 state->seek = 0; 332 /* check for seek request */ 333 if (state->seek) { 334 state->seek = 0; 413 /* check for seek request */ 414 if (state->seek) { 415 state->seek = 0; 507 /* check for seek request * [all...] |
| /src/external/gpl3/gdb.old/dist/zlib/ |
| gzwrite.c | 202 /* check for seek request */ 203 if (state->seek) { 204 state->seek = 0; 332 /* check for seek request */ 333 if (state->seek) { 334 state->seek = 0; 413 /* check for seek request */ 414 if (state->seek) { 415 state->seek = 0; 507 /* check for seek request * [all...] |
| /src/external/gpl3/gdb/dist/zlib/ |
| gzwrite.c | 184 /* check for seek request */ 185 if (state->seek) { 186 state->seek = 0; 303 /* check for seek request */ 304 if (state->seek) { 305 state->seek = 0; 380 /* check for seek request */ 381 if (state->seek) { 382 state->seek = 0; 470 /* check for seek request * [all...] |
| /src/tests/bin/dd/ |
| t_dd.sh | 113 atf_test_case seek 123 dd if=/dev/zero of=testfile seek=1 bs=8k count=1 130 'dd bs=4 if=/dev/zero count=1 | tr \\0 \\n | dd of=tf2 bs=4 seek=1' 208 atf_add_test_case seek
|
| /src/distrib/sgimips/cdroms/installcd/ |
| Makefile | 15 dd if=${CDIMAGE}.tmp of=${CDIMAGE} bs=512 seek=${SGIVOLHDR.size}
|
| /src/distrib/vax/floppy/ |
| Makefile | 35 dd of=${IMAGE}.tmp seek=16
|