Home
last modified time | relevance | path

Searched refs:d (Results 1 – 25 of 261) sorted by relevance

1234567891011

/busybox-1.35.0/shell/hush_test/hush-quoting/
Ddollar_altvalue1.right1 Unquoted b c d
4 |d|
5 Unquoted 'b c' d
7 |d|
8 Unquoted "b c" d
10 |d|
11 Quoted b c d
12 |b c d|
13 Quoted 'b c' d
14 |'b c' d|
[all …]
Ddollar_altvalue1.tests4 echo Unquoted b c d
5 f ${x:+b c d}
6 echo Unquoted "'b c' d"
7 f ${x:+'b c' d}
8 echo Unquoted '"b c" d'
9 f ${x:+"b c" d}
11 echo Quoted b c d
12 f "${x:+b c d}"
13 echo Quoted "'b c' d"
14 f "${x:+'b c' d}"
[all …]
/busybox-1.35.0/shell/ash_test/ash-quoting/
Ddollar_altvalue1.right1 Unquoted b c d
4 |d|
5 Unquoted 'b c' d
7 |d|
8 Unquoted "b c" d
10 |d|
11 Quoted b c d
12 |b c d|
13 Quoted 'b c' d
14 |'b c' d|
[all …]
Ddollar_altvalue1.tests4 echo Unquoted b c d
5 f ${x:+b c d}
6 echo Unquoted "'b c' d"
7 f ${x:+'b c' d}
8 echo Unquoted '"b c" d'
9 f ${x:+"b c" d}
11 echo Quoted b c d
12 f "${x:+b c d}"
13 echo Quoted "'b c' d"
14 f "${x:+'b c' d}"
[all …]
/busybox-1.35.0/libbb/
Dhash_md5prime.c130 #define FF(a, b, c, d, x, s, ac) { \ argument
131 (a) += F((b), (c), (d)) + (x) + (uint32_t)(ac); \
135 #define GG(a, b, c, d, x, s, ac) { \ argument
136 (a) += G((b), (c), (d)) + (x) + (uint32_t)(ac); \
140 #define HH(a, b, c, d, x, s, ac) { \ argument
141 (a) += H((b), (c), (d)) + (x) + (uint32_t)(ac); \
145 #define II(a, b, c, d, x, s, ac) { \ argument
146 (a) += I((b), (c), (d)) + (x) + (uint32_t)(ac); \
154 uint32_t a, b, c, d, x[16]; in md5_transform() local
208 d = state[3]; in md5_transform()
[all …]
Dprintable_string.c40 char *d = dst = xstrdup(str); in printable_string2() local
42 unsigned char c = *d; in printable_string2()
46 *d = '?'; in printable_string2()
47 d++; in printable_string2()
50 stats->byte_count = (d - dst); in printable_string2()
51 stats->unicode_count = (d - dst); in printable_string2()
52 stats->unicode_width = (d - dst); in printable_string2()
Dprocess_escape_sequence.c40 unsigned d = (unsigned char)(*q) - '0'; in bb_process_escape_sequence() local
42 if (d >= 10) { in bb_process_escape_sequence()
43 d = (unsigned char)_tolower(*q) - 'a'; in bb_process_escape_sequence()
49 if ((int)d >= 0) in bb_process_escape_sequence()
50 d += 10; in bb_process_escape_sequence()
53 if (d >= base) { in bb_process_escape_sequence()
65 r = n * base + d; in bb_process_escape_sequence()
/busybox-1.35.0/testsuite/tr/
Dtr-rejects-wrong-class3 echo t12esting | tr -d '[[:alpha:]]' > logfile.gnu
4 echo t12esting | tr -d '[:alpha:]' >> logfile.gnu
5 echo t12esting | tr -d '[[:alpha:]' >> logfile.gnu
6 echo t12esting | tr -d '[[:alpha:' >> logfile.gnu
7 echo t12esting | tr -d '[[:alpha' >> logfile.gnu
8 echo t12esting | tr -d '[:alpha:]' >> logfile.gnu
9 echo t12esting | tr -d '[:alpha:' >> logfile.gnu
10 echo t12esting | tr -d '[:alpha' >> logfile.gnu
12 echo t12esting | busybox tr -d '[[:alpha:]]' > logfile.bb
13 echo t12esting | busybox tr -d '[:alpha:]' >> logfile.bb
[all …]
/busybox-1.35.0/shell/ash_test/ash-vars/
Dvar_wordsplit_ifs1.right3 .d.
7 .d.
10 .abc d e.
13 .d e.
16 .d e.
19 .d e.
24 .d e.
26 v='abc d e'
28 v='abc d e'
30 v='abc d e'
[all …]
Dvar_expand_in_assign.right2 .abc d e.
3 .abc d e.
4 .abc d e.
5 .abc d e.
/busybox-1.35.0/shell/hush_test/hush-vars/
Dvar_wordsplit_ifs1.right3 .d.
7 .d.
10 .abc d e.
13 .d e.
16 .d e.
19 .d e.
24 .d e.
26 v='abc d e'
28 v='abc d e'
30 v='abc d e'
[all …]
Dvar_expand_in_assign.right2 .abc d e.
3 .abc d e.
4 .abc d e.
5 .abc d e.
/busybox-1.35.0/util-linux/
Dfdisk_osf.c652 struct xbsd_disklabel *d; in xbsd_edit_disklabel() local
654 d = &xbsd_dlabel; in xbsd_edit_disklabel()
657 d->d_secsize = edit_int(d->d_secsize , "bytes/sector"); in xbsd_edit_disklabel()
658 d->d_nsectors = edit_int(d->d_nsectors , "sectors/track"); in xbsd_edit_disklabel()
659 d->d_ntracks = edit_int(d->d_ntracks , "tracks/cylinder"); in xbsd_edit_disklabel()
660 d->d_ncylinders = edit_int(d->d_ncylinders , "cylinders"); in xbsd_edit_disklabel()
665 d->d_secpercyl = edit_int(d->d_nsectors * d->d_ntracks, in xbsd_edit_disklabel()
667 if (d->d_secpercyl <= d->d_nsectors * d->d_ntracks) in xbsd_edit_disklabel()
672 d->d_rpm = edit_int(d->d_rpm , "rpm"); in xbsd_edit_disklabel()
673 d->d_interleave = edit_int(d->d_interleave, "interleave"); in xbsd_edit_disklabel()
[all …]
/busybox-1.35.0/archival/libarchive/
Dlzo1x_1.c30 #define D_INDEX1(d,p) d = DM(DMUL(0x21,DX3(p,5,5,6)) >> 5) argument
31 #define D_INDEX2(d,p) d = (d & (D_MASK & 0x7ff)) ^ (D_HIGH | 0x1f) argument
Dlzo1x_1o.c30 #define D_INDEX1(d,p) d = DM(DMUL(0x21,DX3(p,5,5,6)) >> 5) argument
31 #define D_INDEX2(d,p) d = (d & (D_MASK & 0x7ff)) ^ (D_HIGH | 0x1f) argument
/busybox-1.35.0/testsuite/hostname/
Dhostname-d-works2 d=$(busybox hostname -d)
3 test x"${f#*.}" = x"$d${d:+.}"
/busybox-1.35.0/shell/hush_test/hush-parsing/
Dstarquoted.right1 .1 abc d e f.
4 .d e f.
5 .-1 abc d e f-.
8 .d e f-.
Descape3.right1 v: a \ b \\ c \\\ d \\\\ e
2 v: a \ b \\ c \\\ d \\\\ e
10 .d.
20 .d.
/busybox-1.35.0/shell/ash_test/ash-parsing/
Dstarquoted.right1 .1 abc d e f.
4 .d e f.
5 .-1 abc d e f-.
8 .d e f-.
Descape3.right1 v: a \ b \\ c \\\ d \\\\ e
2 v: a \ b \\ c \\\ d \\\\ e
10 .d.
20 .d.
/busybox-1.35.0/networking/
Dntpd.diff13 + double d = p->lastpkt_delay;
14 + if (d > SLEW_THRESHOLD)
15 + d = SLEW_THRESHOLD;
16 + d /= 2;
17 + if ((abs_offset / d) < 1) {
18 + offset *= (abs_offset / d);
/busybox-1.35.0/testsuite/ls/
Dls-1-works3 [ -n "$d" ] || d=..
4 LC_ALL=C ls -1 "$d" > logfile.gnu
5 LC_ALL=C busybox ls -1 "$d" > logfile.bb
Dls-h-works3 [ -n "$d" ] || d=..
4 LC_ALL=C ls -h "$d" > logfile.gnu
5 LC_ALL=C busybox ls -h "$d" > logfile.bb
/busybox-1.35.0/shell/ash_test/ash-getopts/
Dgetopt_test_libc_bug.tests8 echo "*** optstring:'ac' args:-a -b -c -d e"
9 getopts "ac" var -a -b -c -d e; echo "1 rc:$? var:'$var' OPTIND:$OPTIND OPTARG:'$OPTARG'"
10 getopts "ac" var -a -b -c -d e; echo "2 rc:$? var:'$var' OPTIND:$OPTIND OPTARG:'$OPTARG'"
11 getopts "ac" var -a -b -c -d e; echo "3 rc:$? var:'$var' OPTIND:$OPTIND OPTARG:'$OPTARG'"
12 getopts "ac" var -a -b -c -d e; echo "4 rc:$? var:'$var' OPTIND:$OPTIND OPTARG:'$OPTARG'"
13 getopts "ac" var -a -b -c -d e; echo "5 rc:$? var:'$var' OPTIND:$OPTIND OPTARG:'$OPTARG'"
19 echo "*** optstring:'ac' args:-a -b -c -d e"
21 OPTARG=QWERTY; getopts "ac" var -a -b -c -d e; echo "1 rc:$? var:'$var' OPTIND:$OPTIND OPTARG:'$OPT…
22 NEWVAR=NEWVAL; getopts "ac" var -a -b -c -d e; echo "2 rc:$? var:'$var' OPTIND:$OPTIND OPTARG:'$OPT…
23 VAR111=NEWVAL; getopts "ac" var -a -b -c -d e; echo "3 rc:$? var:'$var' OPTIND:$OPTIND OPTARG:'$OPT…
[all …]
/busybox-1.35.0/shell/hush_test/hush-read/
Dread_ifs.tests6 printf 'a ,, c d\n' | ( IFS=" ," read a b c d; echo "test 6: .$a. .$b. .$c. .$d." )
7 printf ' a,,b,c,d , ,\n' | ( IFS=" ," read a b c; echo "test 7: .$a. .$b. .$c." )
8 …f '\t,\ta\t,\tb\tc' | ( IFS=$(printf " \t,") read a b c d; echo "test 8: .$a. .$b. .$c. .$d." )
9 …f '\t\ta\t,\tb\tc' | ( IFS=$(printf " \t,") read a b c d; echo "test 9: .$a. .$b. .$c. .$d." )
10 …f '\t,\ta\t,,\tb\tc' | ( IFS=$(printf " \t,") read a b c d e; echo "test A: .$a. .$b. .$c. .$d. .…

1234567891011