Home | History | Annotate | Download | only in elf2ecoff

Lines Matching defs:gap

289 	/* If there is a gap between text and data, we'll fill it when we copy
401 uint32_t gap = ph[i].p_vaddr - cur_vma;
403 if (gap > 65536)
404 errx(1, "Intersegment gap (%d bytes) "
405 "too large", gap);
408 "intersegment gap.\n", gap);
410 while (gap) {
412 (gap > sizeof obuf
413 ? sizeof obuf : gap));
415 err(1, "Error writing gap");
416 gap -= count;