Searched refs:remainder (Results 1 – 7 of 7) sorted by relevance
/coreutils/tests/basenc/ |
D | base64.pl | 30 my %remainder = ( 0 => '', 1 => 'YQ==', 2 => 'YWE=' ); 31 return 'YWFh' x ($n / 3) . $remainder{$n % 3}; 37 my %remainder = ( 0 => '', 1 => 'ME======', 2 => 'MFQQ====', 39 return 'MFQWCYLB' x ($n / 5) . $remainder{$n % 5};
|
/coreutils/src/ |
D | make-prime-list.c | 91 unsigned remainder = n & ((1 << bits_per_literal) - 1); in print_wide_uint() local 93 if (n != remainder) in print_wide_uint() 110 printf ("0x%0*xU", hex_digits_per_literal, remainder); in print_wide_uint()
|
D | tac.c | 205 size_t remainder = file_pos % read_size; in tac_seekable() local 206 if (remainder != 0) in tac_seekable() 208 file_pos -= remainder; in tac_seekable()
|
D | shred.c | 865 off_t remainder = size % STP_BLKSIZE (&st); in do_wipefd() local 868 if (remainder != 0) in do_wipefd() 870 off_t size_incr = STP_BLKSIZE (&st) - remainder; in do_wipefd()
|
D | sort.c | 3886 size_t remainder; in merge() local 3906 remainder = nfiles - in; in merge() 3909 if (cheap_slots < remainder) in merge() 3914 size_t nshortmerge = remainder - cheap_slots + 1; in merge()
|
/coreutils/doc/ |
D | sort-version.texi | 184 Then the initial part of the remainder of each string that contains
|
D | coreutils.texi | 9848 When that happens, continue calling @code{read} to fill the remainder 14117 @cindex remainder 14118 Multiplication, division, remainder. Both arguments are converted to
|