/coreutils/tests/sort/ |
D | sort-version.sh | 42 string start 5.0.0 end of str 43 string start 5.1.0 end of str 44 string start 5.10.0 end of str 45 string start 5.2.0 end of str 46 string start 5.20.0 end of str 47 string start 5.3.0 end of str 48 string start 5.30.0 end of str 49 string start 5.4.0 end of str 50 string start 5.40.0 end of str 51 string start 5.5.0 end of str [all …]
|
/coreutils/src/ |
D | ptx.c | 110 char *start; /* pointer to beginning of region */ member 117 char *start; /* pointer to beginning of region */ member 124 WORD *start; /* array of WORDs */ member 178 #define SKIP_WHITE_BACKWARDS(cursor, start) \ argument 179 while (cursor > start && isspace (to_uchar (cursor[-1]))) \ 514 block->start = fread_file (stdin, 0, &used_length); in swallow_file_in_memory() 516 block->start = read_file (file_name, 0, &used_length); in swallow_file_in_memory() 518 if (!block->start) in swallow_file_in_memory() 524 block->end = block->start + used_length; in swallow_file_in_memory() 552 value = (folded_chars [to_uchar (first->start[counter])] in compare_words() [all …]
|
D | pathchk.c | 254 char *start; in validate_file_name() local 337 for (start = file; *(start = component_start (start)); ) in validate_file_name() 339 size_t length = component_len (start); in validate_file_name() 347 start += length; in validate_file_name() 362 for (start = file; *(start = component_start (start)); ) in validate_file_name() 371 char const *dir = (start == file ? "." : file); in validate_file_name() 372 char c = *start; in validate_file_name() 374 *start = '\0'; in validate_file_name() 376 *start = c; in validate_file_name() 393 *start = '\0'; in validate_file_name() [all …]
|
D | tac-pipe.c | 24 #define LEN(X, I) ((X)->p[(I)].one_past_end - (X)->p[(I)].start) 38 char *start; member 78 bp.start = buf; in buf_init_from_stdin() 106 bp.start = buf; in buf_init_from_stdin() 119 && x->p[x->n_bufs - 1].start == x->p[x->n_bufs - 1].one_past_end) in buf_init_from_stdin() 120 free (x->p[--(x->n_bufs)].start); in buf_init_from_stdin() 129 free (x->p[i].start); in buf_free() 138 if (lp->ptr > x->p[lp->i].start) in line_ptr_decrement() 167 lp_new.ptr = x->p[lp->i + 1].start; in line_ptr_increment() 180 if (last_bol->ptr == x->p[0].start) in find_bol() [all …]
|
D | pwd.c | 36 char *start; member 92 p->start = p->buf + (p->n_alloc - 1); in file_name_init() 93 p->start[0] = '\0'; in file_name_init() 101 size_t n_free = p->start - p->buf; in file_name_prepend() 111 p->start = q + 2 * half - n_used; in file_name_prepend() 112 memcpy (p->start, p->buf + n_free, n_used); in file_name_prepend() 118 p->start -= 1 + s_len; in file_name_prepend() 119 p->start[0] = '/'; in file_name_prepend() 120 memcpy (p->start + 1, s, s_len); in file_name_prepend() 290 if (file_name->start[0] == '\0') in robust_getcwd() [all …]
|
D | fmt.c | 676 int start; in get_line() local 705 start = in_column; in get_line() 707 word_limit->space = in_column - start; in get_line() 780 char const *start = w->text; in check_punctuation() local 781 char const *finish = start + (w->length - 1); in check_punctuation() 784 w->paren = isopen (*start); in check_punctuation() 786 while (start < finish && isclose (*finish)) in check_punctuation() 861 WORD *start, *w; in fmt_paragraph() local 870 for (start = word_limit - 1; start >= word; start--) in fmt_paragraph() 873 len = start == word ? first_indent : other_indent; in fmt_paragraph() [all …]
|
D | tac.c | 146 output (char const *start, char const *past_end) in output() argument 150 size_t bytes_to_add = past_end - start; in output() 153 if (start == 0) in output() 163 memcpy (buffer + bytes_in_buffer, start, bytes_available); in output() 165 start += bytes_available; in output() 171 memcpy (buffer + bytes_in_buffer, start, bytes_to_add); in output() 275 match_start = G_buffer + regs.start[0]; in tac_seekable() 276 match_length = regs.end[0] - regs.start[0]; in tac_seekable()
|
D | split.c | 898 off_t start = (k - 1) * chunk_size + MIN (k - 1, rem_bytes) - 1; in lines_chunk_split() local 899 if (start < initial_read) in lines_chunk_split() 901 memmove (buf, buf + start, initial_read - start); in lines_chunk_split() 902 initial_read -= start; in lines_chunk_split() 906 if (initial_read < start in lines_chunk_split() 907 && lseek (STDIN_FILENO, start - initial_read, SEEK_CUR) < 0) in lines_chunk_split() 911 n_written = start; in lines_chunk_split() 913 chunk_end = start + 1; in lines_chunk_split() 1011 off_t start; in bytes_chunk_extract() local 1016 start = (k - 1) * (file_size / n) + MIN (k - 1, file_size % n); in bytes_chunk_extract() [all …]
|
/coreutils/tests/split/ |
D | numeric.sh | 30 for start in 0 9; do 33 test $start != '0' && mode_option="$mode_option=$start" 37 for i in $(seq $start $(($start+2))); do 38 compare exp-$(($i-$start)) x$(printf %02$format $i) || fail=1
|
/coreutils/tests/rm/ |
D | ext3-perf.sh | 54 start=$(date +%s) 63 setup_duration=$(expr $(date +%s) - $start) 71 start=$(date +%s) 73 duration=$(expr $(date +%s) - $start)
|
/coreutils/tests/tail/ |
D | overlay-headers.sh | 49 echo start > file1 || framework_failure_ 50 echo start > file2 || framework_failure_
|
/coreutils/tests/timeout/ |
D | timeout-group.sh | 83 start=$(date +%s) 100 test $(expr $end - $start) -lt 20 ||
|
/coreutils/tests/du/ |
D | move-dir-while-traversing.sh | 81 timeout 6 ./inotify-watch-for-dir-access.py $t/3/a/b > start-msg & pid=$! 84 nonempty() { sleep $1; test -s start-msg; }
|
/coreutils/tests/pr/ |
D | t-0FF | 6 6 FF-Arangements: Empty Pages at start
|
D | 0FFnt | 7 6 FF-Arangements: Empty Pages at start
|
D | 0Ft | 6 6 FF-Arangements: Empty Pages at start
|
D | 0FFt | 6 6 FF-Arangements: Empty Pages at start
|
D | 0FnFt | 7 6 FF-Arangements: Empty Pages at start
|
D | 0FnFnt | 8 6 FF-Arangements: Empty Pages at start
|
D | tt-0FF | 6 6 FF-Arangements: Empty Pages at start
|
D | 0Fnt | 7 6 FF-Arangements: Empty Pages at start
|
D | n+2-5l24f-0FF | 17 6.6 FF-Arangements: Empty Pages at start
|
D | n+3l24f-0FF | 11 6.6 FF-Arangements: Empty Pages at start
|
D | n+2l24f-0FF | 17 6.6 FF-Arangements: Empty Pages at start
|
D | 0F | 77 6 FF-Arangements: Empty Pages at start
|