Home | History | Annotate | Download | only in gold

Lines Matching refs:entsize

334   section_size_type entsize =
335 convert_to_section_size_type(this->pomd_->entsize());
341 for (section_size_type i = 0; i < entsize; ++i)
351 for (section_size_type i = 0; i < entsize; ++i)
368 return memcmp(p1, p2, this->pomd_->entsize()) == 0;
376 section_size_type entsize = convert_to_section_size_type(this->entsize());
379 section_size_type addsize = std::max(entsize, addralign);
391 memcpy(this->p_ + this->len_, p, entsize);
392 if (addsize > entsize)
393 memset(this->p_ + this->len_ + entsize, 0, addsize - entsize);
410 section_size_type entsize = convert_to_section_size_type(this->entsize());
412 if (len % entsize != 0)
419 this->input_count_ += len / entsize;
421 for (section_size_type i = 0; i < len; i += entsize, p += entsize)
434 this->len_ -= entsize;
439 this->add_mapping(object, shndx, i, entsize, k);
462 // if all its input sections have sizes that are not multiples of entsize.
492 static_cast<unsigned long>(this->entsize()),