Home | History | Annotate | Download | only in gold

Lines Matching defs:psize

481   section_size_type psize = File_read::pages(size + (start - poff));
483 if (poff + static_cast<off_t>(psize) >= this->size_)
485 psize = this->size_ - poff;
486 gold_assert(psize >= size);
493 p = malloc(psize + byteshift);
497 this->do_read(poff, psize, static_cast<unsigned char*>(p) + byteshift);
503 p = ::mmap(NULL, psize, PROT_READ, MAP_PRIVATE, this->descriptor_, poff);
507 this->mapped_bytes_ += psize;
511 p = malloc(psize);
514 this->do_read(poff, psize, p);
520 File_read::View* v = new File_read::View(poff, psize, pbytes, byteshift,