Home
last modified time | relevance | path

Searched refs:start (Results 1 – 25 of 40) sorted by relevance

12

/coreutils/tests/sort/
Dsort-version.sh42 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/
Dptx.c110 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 …]
Dpathchk.c254 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 …]
Dtac-pipe.c24 #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 …]
Dpwd.c36 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 …]
Dfmt.c676 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 …]
Dtac.c146 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()
Dsplit.c898 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/
Dnumeric.sh30 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/
Dext3-perf.sh54 start=$(date +%s)
63 setup_duration=$(expr $(date +%s) - $start)
71 start=$(date +%s)
73 duration=$(expr $(date +%s) - $start)
/coreutils/tests/tail/
Doverlay-headers.sh49 echo start > file1 || framework_failure_
50 echo start > file2 || framework_failure_
/coreutils/tests/timeout/
Dtimeout-group.sh83 start=$(date +%s)
100 test $(expr $end - $start) -lt 20 ||
/coreutils/tests/du/
Dmove-dir-while-traversing.sh81 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/
Dt-0FF6 6 FF-Arangements: Empty Pages at start
D0FFnt7 6 FF-Arangements: Empty Pages at start
D0Ft6 6 FF-Arangements: Empty Pages at start
D0FFt6 6 FF-Arangements: Empty Pages at start
D0FnFt7 6 FF-Arangements: Empty Pages at start
D0FnFnt8 6 FF-Arangements: Empty Pages at start
Dtt-0FF6 6 FF-Arangements: Empty Pages at start
D0Fnt7 6 FF-Arangements: Empty Pages at start
Dn+2-5l24f-0FF17 6.6 FF-Arangements: Empty Pages at start
Dn+3l24f-0FF11 6.6 FF-Arangements: Empty Pages at start
Dn+2l24f-0FF17 6.6 FF-Arangements: Empty Pages at start
D0F77 6 FF-Arangements: Empty Pages at start

12