Home | History | Annotate | Download | only in binutils

Lines Matching defs:copy_byte

91 /* If `copy_byte' >= 0, copy 'copy_width' byte(s) of every `interleave' bytes.  */
92 static int copy_byte = -1;
4303 if (copy_byte >= 0)
4664 if (copy_byte >= 0)
4666 /* Keep only every `copy_byte'th byte in MEMHUNK. */
4667 char *from = (char *) memhunk + copy_byte;
4674 then we must bias the from address. If the copy_byte is less than
4679 if (copy_byte < extra)
4690 size = (size + interleave - 1 - copy_byte) / interleave * copy_width;
4697 if (copy_byte < extra)
5380 copy_byte = atoi (optarg);
5381 if (copy_byte < 0)
6147 if (interleave && copy_byte == -1)
6150 if (copy_byte >= interleave)
6153 if (copy_width > interleave - copy_byte)