Searched defs:cut (Results 1 - 7 of 7) sorted by relevance
/illumos-gate/usr/src/lib/libcmd/common/ |
H A D | cut.c | 26 * cut fields or columns from fields from a file 30 "[-?\n@(#)$Id: cut (AT&T Research) 2009-12-04 $\n]" 32 "[+NAME?cut - cut out selected columns or fields of each line of a file]" 140 Cut_t* cut; local 142 if (!(cut = (Cut_t*)stakalloc(sizeof(Cut_t) + strlen(cp) * sizeof(int)))) 144 if (cut->mb = mbwide()) 146 memset(cut->space, 0, sizeof(cut->space) / 2); 147 memset(cut 254 cutcols(Cut_t* cut, Sfio_t* fdin, Sfio_t* fdout) argument 368 cutfields(Cut_t* cut, Sfio_t* fdin, Sfio_t* fdout) argument 579 Cut_t* cut; local [all...] |
/illumos-gate/usr/src/cmd/dd/ |
H A D | dd.c | 1727 long long cut = BIG / 10; /* limit to avoid overflow */ local 1731 while ((*cs >= '0') && (*cs <= '9') && (n <= cut))
|
/illumos-gate/usr/src/cmd/fs.d/udfs/mkfs/ |
H A D | mkfs.c | 1232 int64_t cut = BIG; local 1279 if (n > cut) {
|
/illumos-gate/usr/src/cmd/fs.d/ufs/newfs/ |
H A D | newfs.c | 1161 int cut = INT_MAX / 10; /* limit to avoid overflow */ local 1173 while ((*cs >= '0') && (*cs <= '9') && (n <= cut)) { 1213 int64_t cut = FS_SIZE_UPPER_LIMIT/ 10; /* limit to avoid overflow */ local 1225 while ((*cs >= '0') && (*cs <= '9') && (n <= cut)) {
|
/illumos-gate/usr/src/uts/common/fs/zfs/ |
H A D | zio.c | 1557 * For VDEV_IO_START, we cut in line so that the io will 1562 boolean_t cut = (stage == ZIO_STAGE_VDEV_IO_START) ? local 1564 zio_taskq_dispatch(zio, ZIO_TASKQ_ISSUE, cut); 3131 * On retry, we cut in line in the issue queue, since we don't want
|
/illumos-gate/usr/src/lib/libtecla/common/ |
H A D | getline.c | 397 char *cutbuf; /* A cut-buffer of the same size as line[] */ 834 * Optionally copy the deleted characters to the cut buffer. 836 static int gl_delete_chars(GetLine *gl, int nc, int cut); 1084 * a specified (or read) character in the input line, into the cut buffer. 1931 * Allocate a cut buffer. 4244 * Copy the contents of the line to the cut buffer. 4276 * Copy the part of the line that is about to be deleted to the cut buffer. 4348 * cut int If true, copy the characters to the cut buffer. 4353 static int gl_delete_chars(GetLine *gl, int nc, int cut) argument [all...] |
/illumos-gate/usr/src/cmd/fs.d/ufs/mkfs/ |
H A D | mkfs.c | 3620 uint64_t cut = BIG / 10; /* limit to avoid overflow */ local 3632 while ((*cs >= '0') && (*cs <= '9') && (n <= cut)) {
|
Completed in 109 milliseconds