Lines Matching refs:reverse_bytes
291 static int reverse_bytes = 0; variable
4411 if (reverse_bytes) in copy_section()
4416 if ((size % reverse_bytes) == 0) in copy_section()
4421 for (i = 0; i < size; i += reverse_bytes) in copy_section()
4422 for (j = 0; j < (unsigned long)(reverse_bytes / 2); j++) in copy_section()
4427 m[i + j] = m[(i + reverse_bytes) - (j + 1)]; in copy_section()
4428 m[(i + reverse_bytes) - (j + 1)] = b; in copy_section()
4434 bfd_section_name (isection), reverse_bytes); in copy_section()
5780 int prev = reverse_bytes; in copy_main()
5782 reverse_bytes = atoi (optarg); in copy_main()
5783 if ((reverse_bytes <= 0) || ((reverse_bytes % 2) != 0)) in copy_main()
5786 if (prev && prev != reverse_bytes) in copy_main()