Home
last modified time | relevance | path

Searched refs:m (Results 1 – 25 of 38) sorted by relevance

12

/coreutils/tests/ls/
Dcolor-norm.sh65 ^[[0m^[[7mnorm ^[[m^[[01;32mexe^[[0m$
66 ^[[7mnorm nocolor^[[0m$
67 ^[[0m^[[7m^[[m^[[01;32mexe^[[0m ^[[7mnocolor^[[0m$
68 ^[[0m^[[7mnorm nocolor^[[0m$
69 ^[[7mnorm ^[[m^[[01;32mexe^[[0m$
70 ^[[0m^[[7mnocolor^[[0m ^[[7m^[[m^[[01;32mexe^[[0m$
71 ^[[0m^[[7mnorm ^[[m^[[1mnocolor^[[0m$
72 ^[[7mnorm ^[[m^[[01;32mexe^[[0m$
73 ^[[0m^[[7mnorm ^[[m^[[mnocolor^[[0m$
74 ^[[7mnorm ^[[m^[[01;32mexe^[[0m$
[all …]
Dcolor-dtype-dir.sh38 ^[[0m^[[01;34md^[[0m$
39 ^[[34;42mother-writable^[[0m$
41 ^[[37;44msticky^[[0m$
56 ^[[0m^[[01;34md^[[0m$
57 ^[[01;34mother-writable^[[0m$
59 ^[[37;44msticky^[[0m$
Dcolor-term.sh40 ^[[0m^[[01;32mexe^[[0m$
41 ^[[0m^[[01;32mexe^[[0m$
/coreutils/gl/lib/
Drand-isaac.c68 ind (isaac_word const *m, isaac_word x) in ind() argument
70 if (sizeof *m * CHAR_BIT == ISAAC_BITS) in ind()
75 void const *void_m = m; in ind()
77 void const *word_p = base_p + (x & ((ISAAC_WORDS - 1) * sizeof *m)); in ind()
84 return m[(x / (ISAAC_BITS / CHAR_BIT)) & (ISAAC_WORDS - 1)]; in ind()
97 isaac_word *m = s->m; in isaac_refill() local
110 a = (IF32 (a, 0) ^ (mix)) + m[off + (i)]; \ in isaac_refill()
111 x = m[i]; \ in isaac_refill()
112 m[i] = y = ind (s->m, x) + a + b; \ in isaac_refill()
113 r[i] = b = just (ind (s->m, y >> ISAAC_WORDS_LOG) + x); \ in isaac_refill()
[all …]
Dbuffer-lcm.c42 size_t lcm, m, n, q, r; in buffer_lcm() local
45 for (m = a, n = b; (r = m % n) != 0; m = n, n = r) in buffer_lcm()
Drand-isaac.h58 isaac_word m[ISAAC_WORDS]; /* Main state array */ member
Drandread.c193 if (! get_nonce (s->buf.isaac.state.m, in randread_new()
194 MIN (sizeof s->buf.isaac.state.m, bytes_bound))) in randread_new()
/coreutils/tests/date/
Ddate.pl43 my $fmt = "'+%Y-%m-%d %T'";
64 ['4', "-d '$d1' +'%I_%j_%k_%l_%m'", {OUT=>"08_019_ 8_ 8_01"}],
71 ['leap-1', "--date '02/29/1996 1 year' +%Y-%m-%d", {OUT=>"1997-03-01"}],
96 ['rel-0', "-d '$d1 now' '+%Y-%m-%d %T'", {OUT=>"$d0 $t0"}],
116 ['next-s', "-d '$d1 next second' '+%Y-%m-%d %T'", {OUT=>"$d0 $ts"}],
117 ['next-m', "-d '$d1 next minute' '+%Y-%m-%d %T'", {OUT=>"$d0 $tm"}],
118 ['next-h', "-d '$d1 next hour' '+%Y-%m-%d %T'", {OUT=>"$d0 $th"}],
119 ['next-d', "-d '$d1 next day' '+%Y-%m-%d %T'", {OUT=>"$dd $t0"}],
120 ['next-w', "-d '$d1 next week' '+%Y-%m-%d %T'", {OUT=>"$dw $t0"}],
121 ['next-mo', "-d '$d1 next month' '+%Y-%m-%d %T'", {OUT=>"$dm $t0"}],
[all …]
Ddate-next-dow.pl44 ['dow2', "-d $wday_str +%Y-%m-%d", {OUT => strftime("%Y-%m-%d", @d)}],
46 ['next-dow', "-d 'next $wday_str' +%Y-%m-%d",
47 {OUT => strftime("%Y-%m-%d", @d_week)}],
/coreutils/src/
Dselinux.c40 mode_to_security_class (mode_t m) in mode_to_security_class() argument
43 if (S_ISREG (m)) in mode_to_security_class()
45 if (S_ISDIR (m)) in mode_to_security_class()
47 if (S_ISCHR (m)) in mode_to_security_class()
49 if (S_ISBLK (m)) in mode_to_security_class()
51 if (S_ISFIFO (m)) in mode_to_security_class()
53 if (S_ISLNK (m)) in mode_to_security_class()
55 if (S_ISSOCK (m)) in mode_to_security_class()
Dcksum.c76 crc_remainder (int m) in crc_remainder() argument
81 if (BIT (i) & m) in crc_remainder()
Dchmod.c172 m = ch->new_mode & CHMOD_MODE_BITS; in describe_change() local
190 printf (fmt, quoted_file, m, &perms[1]); in describe_change()
195 printf (fmt, quoted_file, old_m, &old_perms[1], m, &perms[1]); in describe_change()
Dfactor.c522 uintmax_t prime, int m) in factor_insert_multiplicity() argument
544 e[i + 1] = m; in factor_insert_multiplicity()
549 e[i] += m; in factor_insert_multiplicity()
973 mulredc (uintmax_t a, uintmax_t b, uintmax_t m, uintmax_t mi) in mulredc() argument
980 umul_ppmm (th, tl, q, m); in mulredc()
983 xh += m; in mulredc()
2022 for (short const *m = (n0 % 4 == 1) ? multipliers_3 : multipliers_1; in factor_using_squfof() local
2023 *m; m++) in factor_using_squfof()
2027 unsigned int mu = *m; in factor_using_squfof()
/coreutils/tests/split/
Dl-chunk.sh97 test "$m" = "_" && m=- || m=_
98 printf "%${s}s" '' | tr ' ' $m
/coreutils/tests/stat/
Dstat-mount.sh22 stat_mnt=$(stat -c%m .) || fail=1
/coreutils/man/
Darch.x2 arch \- print machine hardware name (same as uname -m)
/coreutils/tests/touch/
Drelative.sh29 TZ=UTC0 ls -og --time-style=+%Y-%m-%d f > out.1 || fail=1
/coreutils/src/blake2/
Dblake2b-ref.c159 a = a + b + m[blake2b_sigma[r][2 * i + 0]]; \
163 a = a + b + m[blake2b_sigma[r][2 * i + 1]]; \
183 uint64_t m[16]; in blake2b_compress() local
188 m[i] = load64( block + i * sizeof( m[i] ) ); in blake2b_compress()
/coreutils/tests/rm/
Dhash.sh29 for j in a b c d e f g h i j k l m n o p q r s t u v w x y z; do
Dr-3.sh35 for j in a b c d e f g h i j k l m n o p q r s t u v w x y; do
/coreutils/tests/misc/
Dsleep.sh38 returns_ 124 timeout 0.1 sleep 1d 2h 3m 4s || fail=1
/coreutils/tests/pwd/
Dpwd-long.sh90 $build_src_dir =~ m!^([-+.:/\w]+)$!
/coreutils/tests/shred/
Dshred-remove.sh53 a b c d e f g h i j k l m n o p q r s t u v w x y z \
/coreutils/scripts/git-hooks/
Dcommit-msg130 $buf =~ m!https?://bugzilla\.redhat\.com/show_bug\.cgi\?id=(\d+)!s
133 $buf =~ m!https?://debbugs\.gnu\.org/(?:cgi/bugreport\.cgi\?bug=)?(\d+)!s
136 $buf =~ m!https://lists\.gnu\.org/archive/html/!s
/coreutils/tests/du/
Dmove-dir-while-traversing.sh64 long=d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z

12