Home
last modified time | relevance | path

Searched refs:f (Results 1 – 25 of 259) sorted by relevance

1234567891011

/coreutils/tests/cksum/
Dsha1sum-vec.pl31 ['1', {IN=> {f=> '0 1 ^'}},
33 ['2', {IN=> {f=> '5 0 2 1 2 1 2 ^'}},
35 ['3', {IN=> {f=> '5 0 1 3 4 4 4 ^'}},
37 ['4', {IN=> {f=> '7 0 4 3 4 4 1 4 4 ^'}},
39 ['5', {IN=> {f=> '10 0 4 1 5 3 4 4 3 1 3 4 ^'}},
41 ['6', {IN=> {f=> '10 0 3 1 6 5 5 1 3 6 6 4 ^'}},
43 ['7', {IN=> {f=> '13 1 3 2 5 3 3 3 4 6 6 1 4 6 2 ^'}},
45 ['8', {IN=> {f=> '16 1 3 5 5 1 2 1 3 3 6 3 5 2 3 5 7 2 ^'}},
47 ['9', {IN=> {f=> '15 1 8 1 5 3 2 7 4 5 6 7 3 3 1 6 3 ^'}},
49 ['10', {IN=> {f=> '15 1 4 6 8 2 1 4 2 5 1 6 8 8 6 4 7 ^'}},
[all …]
Dmd5sum.pl32 ['1', {IN=> {f=> ''}}, {OUT=>"$degenerate f\n"}],
33 ['2', {IN=> {f=> 'a'}}, {OUT=>"0cc175b9c0f1b6a831c399e269772661 f\n"}],
34 ['3', {IN=> {f=> 'abc'}}, {OUT=>"900150983cd24fb0d6963f7d28e17f72 f\n"}],
35 ['4', {IN=> {f=> 'message digest'}},
37 ['5', {IN=> {f=> 'abcdefghijklmnopqrstuvwxyz'}},
39 ['6', {IN=> {f=> join ('', 'A'..'Z', 'a'..'z', '0'..'9')}},
41 ['7', {IN=> {f=> '1234567890' x 8}},
49 ['check-1', '--check', {AUX=> {f=> ''}},
52 ['check-windows', '--check', {AUX=> {f=> ''}},
57 ['ck-strict-1', '--check --strict', {AUX=> {f=> ''}},
[all …]
Dsum.pl31 ['1', {IN=> {f=> ''}}, {OUT=>"00000 0 f\n"}],
32 ['2', {IN=> {f=> 'a'}}, {OUT=>"00097 1 f\n"}],
33 ['3', {IN=> {f=> 'abc'}}, {OUT=>"16556 1 f\n"}],
34 ['4', {IN=> {f=> 'message digest'}}, {OUT=>"26423 1 f\n"}],
35 ['5', {IN=> {f=> 'abcdefghijklmnopqrstuvwxyz'}}, {OUT=>"53553 1 f\n"}],
36 ['6', {IN=> {f=> join ('', 'A'..'Z', 'a'..'z', '0'..'9')}},
38 ['7', {IN=> {f=> '1234567890' x 8}}, {OUT=>"21845 1 f\n"}],
40 ['a-r-1k', '-r', {IN=> {f=> $in_1k}}, {OUT=>"65409 1 f\n"}],
41 ['a-s-1k', '-s', {IN=> {f=> $in_1k}}, {OUT=>"33793 2 f\n"}],
42 ['b-r-2k', '-r', {IN=> {f=> $in_2k}}, {OUT=>"65223 2 f\n"}],
[all …]
Dsha1sum.pl30 ['s1', {IN=> {f=> ''}},
32 ['s2', {IN=> {f=> 'a'}},
34 ['s3', {IN=> {f=> 'abc'}},
37 {IN=> {f=> 'abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq'}},
39 ['s5', {IN=> {f=> 'abcdefghijklmnopqrstuvwxyz'}},
41 ['s6', {IN=> {f=> join ('', 'A'..'Z', 'a'..'z', '0'..'9')}},
43 ['s7', {IN=> {f=> '1234567890' x 8}},
45 ['million-a', {IN=> {f=> 'a' x 1000000}},
57 {AUX=> {f=> ''}},
63 {AUX=> {f=> ''}}, {OUT=>"f: OK\n"}],
[all …]
/coreutils/tests/misc/
Dmktemp.pl35 -f $file or die "$ME: $file isn't a regular file\n";
67 {POST => sub { my ($f) = @_; defined $f or return; chomp $f;
68 check_tmp $f, 'F'; }}
73 {POST => sub { my ($f) = @_; defined $f or return; chomp $f;
74 check_tmp $f, 'F'; }}
80 {POST => sub { my ($f) = @_; defined $f or return; chomp $f;
81 check_tmp $f, 'D'; }}
88 {POST => sub { my ($f) = @_; defined $f or return; chomp $f;
89 check_tmp $f, 'D'; rmdir 'XXXX' or die "rmdir XXXX: $!\n"; }}
95 {POST => sub { my ($f) = @_; defined $f or return; chomp $f;
[all …]
Dselinux.sh27 touch f || framework_failure_
36 chcon $ctx f d p || skip_ "Failed to set context: $ctx"
39 for i in d f p; do
45 c=$(ls -l f|cut -c11); test "$c" = . || fail=1
50 returns_ 1 cp --context='invalid-selinux-context' f f.cp || fail=1
54 cp -r --preserve=all d f p s1 || fail=1
55 for i in d f p; do
60 mv d f p s2 || fail=1
61 for i in d f p; do
/coreutils/tests/mv/
Dchildproof.sh27 echo a > a/f || framework_failure_
28 echo b > b/f || framework_failure_
31 returns_ 1 cp a/f b/f c 2> /dev/null || fail=1
32 test -f a/f || fail=1
33 test -f b/f || fail=1
34 test -f c/f || fail=1
36 rm -f c/f
39 cp --backup=numbered a/f b/f c || fail=1
40 test -f a/f || fail=1
41 test -f b/f || fail=1
[all …]
/coreutils/tests/ln/
Dmisc.sh25 f=tln-file
29 touch $f || framework_failure_
31 ln -s $f $t || fail=1
33 rm $t $f
36 touch $f || framework_failure_
39 ln -s ../$f $d/$t || fail=1
41 rm -rf $d $f
44 touch $f || framework_failure_
47 ln -s ../$f $d || fail=1
48 test -f $d/$f || fail=1
[all …]
/coreutils/tests/chgrp/
Dbasic.sh28 touch f f2 d/f3
29 chgrp $g1 f || fail=1
30 chgrp $g2 f || fail=1
36 chgrp $g1 f || fail=1 ; test $(stat --p=%g f) = $g1 || fail=1
37 chgrp $g2 f || fail=1 ; test $(stat --p=%g f) = $g2 || fail=1
38 chgrp $g2 f || fail=1 ; test $(stat --p=%g f) = $g2 || fail=1
39 chgrp '' f || fail=1 ; test $(stat --p=%g f) = $g2 || fail=1
40 chgrp $g1 f || fail=1 ; test $(stat --p=%g f) = $g1 || fail=1
41 chgrp $g1 f || fail=1 ; test $(stat --p=%g f) = $g1 || fail=1
42 chgrp --reference=f2 f ; test $(stat --p=%g f) = $g2 || fail=1
[all …]
/coreutils/tests/chcon/
Dchcon.sh27 touch f g d/sub/1 d/sub/2 || framework_failure_
38 chcon $ctx f || skip_ "Failed to set context: $ctx"
39 stat --printf='f|%C\n' f > out || fail=1
42 chcon --ref=f g || fail=1
50 chcon $i f || fail=1
51 stat --printf="f|$i|"'%C\n' f >> out || fail=1
56 chcon $i f || fail=1
57 stat --printf="f|$i|"'%C\n' f >> out || fail=1
61 f|$ctx
63 f|--user=$u2|$u2:$r1:$t1:$range
[all …]
/coreutils/tests/cp/
Dpreserve-link.sh35 touch s/f || framework_failure_
36 ln s/f s/linkm || framework_failure_
39 ln s/f s/linke || framework_failure_
42 ln s/f s/fileo || framework_failure_
45 ln s/f s/fileu || framework_failure_
50 f=$1 # which of f or linkm to create in t/
56 touch t/s/$f || framework_failure_
59 ln t/s/$f t/s/linke || framework_failure_
79 for f in f linkm; do
80 create_target_tree $f
[all …]
/coreutils/src/
Dtail.c362 valid_file_spec (struct File_spec const *f) in valid_file_spec() argument
365 return ((f->fd == -1) ^ (f->errnum == 0)); in valid_file_spec()
369 pretty_name (struct File_spec const *f) in pretty_name() argument
371 return (STREQ (f->name, "-") ? _("standard input") : f->name); in pretty_name()
378 record_open_fd (struct File_spec *f, int fd, in record_open_fd() argument
382 f->fd = fd; in record_open_fd()
383 f->size = size; in record_open_fd()
384 f->mtime = get_stat_mtime (st); in record_open_fd()
385 f->dev = st->st_dev; in record_open_fd()
386 f->ino = st->st_ino; in record_open_fd()
[all …]
Dprintf.c491 char const *f; /* Pointer into 'format'. */ in print_formatted() local
500 for (f = format; *f; ++f) in print_formatted()
502 switch (*f) in print_formatted()
505 direc_start = f++; in print_formatted()
508 if (*f == '%') in print_formatted()
513 if (*f == 'b') in print_formatted()
526 if (*f == 'q') in print_formatted()
543 for (;; f++, direc_length++) in print_formatted()
544 switch (*f) in print_formatted()
566 if (*f == '*') in print_formatted()
[all …]
/coreutils/tests/pr/
DnJml24f-lmlolm7 …2.2<<< -b -3 / -a -3 / ... >>> 2::: Options -b -3 [+2|+3] [-l 15|8] [-f] ::: 2<<< -b -3 / -a -…
8 3.3<<< >>> 3::: Options -a -3 [+2|+3] [-l 15|8] [-f] ::: 3<<< >>>
9 …4.4<<< 123456789 123456789 123456789 12345678 >>> 4::: Options [+2|+3] [-l 24|17] [-f] ::: …
12f\f\n; text\f\n\ftext; \f\ftext; >>> 7::: 789 123456789 123456789 123456789 123456789 123456789 …
13 …8.8<<< f\f\n; \f\n\f\n; >>> 8::: 3 Columns downwards, across, ...: ::: 8<<< f\f\n; \f\n\f\n; …
15 10.10<<< >>> 10::: without -f e.g.: -l 15 = total lines/page, ::: 10<<< >>>
16 11.1<<< >>> 1::: with -f e.g. : -l 8 -f ::: 1<<< >>>
DnJml24f-lmlmlo7 …3 / -a -3 / ... >>> 2<<< -b -3 / -a -3 / ... >>> 2::: Options -b -3 [+2|+3] [-l 15|8] [-f] :::
8 3.3<<< >>> 3<<< >>> 3::: Options -a -3 [+2|+3] [-l 15|8] [-f] :::
9 …> 4<<< 123456789 123456789 123456789 12345678 >>> 4::: Options [+2|+3] [-l 24|17] [-f] :::
12 …7.7<<< \f\f\n; text\f\n\ftext; \f\ftext; >>> 7<<< \f\f\n; text\f\n\ftext; \f\ftext; >>> 7::: …
13 …8.8<<< f\f\n; \f\n\f\n; >>> 8<<< f\f\n; \f\n\f\n; >>> 8::: 3 Columns downwards, across, ...: …
15 10.10<<< >>> 10<<< >>> 10::: without -f e.g.: -l 15 = total lines/page, :::
16 11.1<<< >>> 1<<< >>> 1::: with -f e.g. : -l 8 -f :::
Dml24-FF12 7 text\f\f\n; text\f\n\ftext; \f\ 7 text\f\f\n; text\f\n\ftext; \f\
13 8 \f\f\n; \f\n\f\n; 8 \f\f\n; \f\n\f\n;
DJml24f-lm-lo7 2<<< -b -3 / -a -3 / ... >>> 2::: Options -b -3 [+2|+3] [-l 15|8] [-f] :::
8 3<<< >>> 3::: Options -a -3 [+2|+3] [-l 15|8] [-f] :::
9 4<<< 123456789 123456789 123456789 12345678 >>> 4::: Options [+2|+3] [-l 24|17] [-f] :::
12 7<<< \f\f\n; text\f\n\ftext; \f\ftext; >>> 7::: 789 123456789 123456789 123456789 123456789 1234…
13 8<<< f\f\n; \f\n\f\n; >>> 8::: 3 Columns downwards, across, ...: :::
15 10<<< >>> 10::: without -f e.g.: -l 15 = total lines/page, :::
16 1<<< >>> 1::: with -f e.g. : -l 8 -f :::
DW35Jml24f-lmlo7 2<<< -b -3 / -a -3 / ... >>> 2::: Options -b -3 [+2|+3] [-l 15|8] [-f] :::
8 3<<< >>> 3::: Options -a -3 [+2|+3] [-l 15|8] [-f] :::
9 4<<< 123456789 123456789 123456789 12345678 >>> 4::: Options [+2|+3] [-l 24|17] [-f] :::
12 7<<< \f\f\n; text\f\n\ftext; \f\ftext; >>> 7::: 789 123456789 123456789 123456789 123456789 1234…
13 8<<< f\f\n; \f\n\f\n; >>> 8::: 3 Columns downwards, across, ...: :::
15 10<<< >>> 10::: without -f e.g.: -l 15 = total lines/page, :::
16 1<<< >>> 1::: with -f e.g. : -l 8 -f :::
Do3Jml24f-lm-lo7 2<<< -b -3 / -a -3 / ... >>> 2::: Options -b -3 [+2|+3] [-l 15|8] [-f] :::
8 3<<< >>> 3::: Options -a -3 [+2|+3] [-l 15|8] [-f] :::
9 4<<< 123456789 123456789 123456789 12345678 >>> 4::: Options [+2|+3] [-l 24|17] [-f] :::
12 …7<<< \f\f\n; text\f\n\ftext; \f\ftext; >>> 7::: 789 123456789 123456789 123456789 123456789 123…
13 8<<< f\f\n; \f\n\f\n; >>> 8::: 3 Columns downwards, across, ...: :::
15 10<<< >>> 10::: without -f e.g.: -l 15 = total lines/page, :::
16 1<<< >>> 1::: with -f e.g. : -l 8 -f :::
DnSml24-t-tFFFF12 7.7 3456789 1234:--:7 3456789 1234:--:7 text\f\f\n:--:7 text\f\f\n
13 8.8 3 Columns :--:8 3 Columns :--:8 \f\f\n; \f:--:8 \f\f\n; \f
15 10.10 without -f:--:10 without -f:--:10 zzzzzzzzzz:--:10 zzzzzzzzzz
16 11.1 with -f e.:--:1 with -f e.:--:1 :--:1
DtFFt-ll7 7<<< \f\f\n; text\f\n\ftext; \f\ftext; >>>
8 8<<< f\f\n; \f\n\f\n; >>>
DtFFt-lm7 7<<< \f\f\n; text\f\n\ftext; \f\ftext; >>>
8 8<<< f\f\n; \f\n\f\n; >>>
DnSml20-t-tFFFF12 7.7 3456789 1234:--:7 3456789 1234:--:7 text\f\f\n:--:7 text\f\f\n
13 8.8 3 Columns :--:8 3 Columns :--:8 \f\f\n; \f:--:8 \f\f\n; \f
15 10.10 without -f:--:10 without -f:--:10 zzzzzzzzzz:--:10 zzzzzzzzzz
21 11.1 with -f e.:--:1 with -f e.:--:1 :--:1
/coreutils/tests/dd/
Dnocache_eof.sh23 head -c1234567 /dev/zero > in.f || framework_failure_
30 dd if=in.f iflag=nocache count=0 ||
44 strace_dd if=in.f of=out.f bs=1M oflag=nocache,sync
50 strace_dd if=in.f count=0 iflag=nocache
54 strace_dd if=in.f of=/dev/null iflag=nocache skip=10 count=300
59 strace_dd if=in.f of=/dev/null iflag=nocache bs=1M count=3000
65 strace_dd if=in.f of=/dev/null bs=1M count=1 iflag=nocache
69 strace_dd if=in.f of=out.f bs=1M iflag=nocache oflag=nocache,sync
81 if=in.f of=out.f bs=1M oflag=direct oseek=512B; then
91 strace_dd if=in.f of=out.f bs=1M oflag=direct
/coreutils/gl/lib/
Drand-isaac.c145 #define mix(a, b, c, d, e, f, g, h) \ argument
149 c += d; c ^= d << 8; f += c; \
151 e += f; e ^= f << 10; h += e; \
152 f += g; f ^= just (g) >> 4; a += f; \
158 #define mix(a, b, c, d, e, f, g, h) \ argument
160 a -= e; f ^= just (h) >> 9; h += a; \
161 b -= f; g ^= a << 9; a += b; \
165 f -= b; c ^= e << 20; e += f; \
166 g -= c; d ^= just (f) >> 17; f += g; \
173 #define ISAAC_MIX(s, a, b, c, d, e, f, g, h, seed) \ argument
[all …]

1234567891011