Home | History | Annotate | Download | only in bfd

Lines Matching refs:chunk_size

2110       int chunk_size
2115 loc = mmo_get_loc (sec, sec->vma + offset, chunk_size);
2116 while (loc == NULL && (chunk_size /= 2) != 0);
2118 if (chunk_size == 0)
2121 memcpy (location, loc, chunk_size);
2123 location = (bfd_byte *) location + chunk_size;
2124 bytes_to_do -= chunk_size;
2125 offset += chunk_size;
2647 int chunk_size
2652 loc = mmo_get_loc (sec, sec->vma + offset, chunk_size);
2653 while (loc == NULL && (chunk_size /= 2) != 0);
2655 if (chunk_size == 0)
2658 memcpy (loc, location, chunk_size);
2660 location = (bfd_byte *) location + chunk_size;
2661 bytes_to_do -= chunk_size;
2662 offset += chunk_size;