Searched refs:rem (Results 1 – 5 of 5) sorted by relevance
/coreutils/tests/mv/ |
D | part-symlink.sh | 65 for options in '' --rem '--rem -d' '--rem -b' -b -bd -d; do 66 case "$options" in *d*|*--rem*) test $copy = mv && continue;; esac 158 0 cp --rem loc_reg rem_sl 160 0 cp --rem -d loc_reg rem_sl 162 0 cp --rem -b loc_reg rem_sl 175 1 cp --rem rem_sl loc_reg 178 1 cp --rem -d rem_sl loc_reg 181 1 cp --rem -b rem_sl loc_reg 198 1 cp --rem loc_sl rem_reg 201 1 cp --rem -d loc_sl rem_reg [all …]
|
/coreutils/tests/cp/ |
D | same-file.sh | 49 for options in '' -d -f -df --rem -b -bd -bf -bdf \ 140 0 --rem (foo symlink) 160 1 --rem [cp: 'symlink' and 'foo' are the same file] (foo symlink -> foo) 177 1 --rem [cp: 'foo' and 'foo' are the same file] (foo) 197 0 --rem (foo sl1 -> foo sl2) 213 0 --rem (foo hardlink) 233 0 --rem (foo hlsl -> foo sl2)
|
/coreutils/src/ |
D | cksum.c | 78 uint_fast32_t rem = 0; in crc_remainder() local 82 rem ^= r[i]; in crc_remainder() 84 return rem & 0xFFFFFFFF; /* Make it run on 64-bit machine. */ in crc_remainder()
|
D | head.c | 359 size_t rem = READ_BUFSIZE - (n_elide % READ_BUFSIZE); in elide_tail_bytes_pipe() local 360 size_t n_elide_round = n_elide + rem; in elide_tail_bytes_pipe() 408 if (rem) in elide_tail_bytes_pipe() 413 desired_pos += rem; in elide_tail_bytes_pipe() 414 if (rem < n_bytes_left_in_b_i) in elide_tail_bytes_pipe() 416 xwrite_stdout (b[i] + n_read, rem); in elide_tail_bytes_pipe() 421 xwrite_stdout (b[i_next], rem - n_bytes_left_in_b_i); in elide_tail_bytes_pipe() 438 size_t y = READ_BUFSIZE - rem; in elide_tail_bytes_pipe()
|
D | factor.c | 2075 uintmax_t q, P1, t, rem; in factor_using_squfof() local 2077 div_smallq (q, rem, S + P, Q); in factor_using_squfof() 2078 P1 = S - rem; /* P1 = q*Q - P */ in factor_using_squfof() 2156 udiv_qrnnd (Q, rem, hi, lo, Q1); in factor_using_squfof() 2157 affirm (rem == 0); in factor_using_squfof() 2166 div_smallq (q, rem, S + P, Q); in factor_using_squfof() 2167 P1 = S - rem; /* P1 = q*Q - P */ in factor_using_squfof()
|