Home
last modified time | relevance | path

Searched refs:byteshift (Results 1 – 3 of 3) sorted by relevance

/toolchain/binutils/binutils-2.27/gold/
Dfileread.cc332 unsigned int byteshift, File_read::View** vshifted) const in find_view() argument
344 if (byteshift == -1U || byteshift == 0) in find_view()
359 if (byteshift == -1U || byteshift == p->second->byteshift()) in find_view()
431 memcpy(p, pv->data() + (start - pv->start() + pv->byteshift()), size); in read()
447 v->byteshift()), in add_view()
472 unsigned int byteshift, bool cache) in make_view() argument
491 if (byteshift != 0) in make_view()
493 p = malloc(psize + byteshift); in make_view()
496 memset(p, 0, byteshift); in make_view()
497 this->do_read(poff, psize, static_cast<unsigned char*>(p) + byteshift); in make_view()
[all …]
Dfileread.h267 unsigned int byteshift, bool cache, Data_ownership data_ownership) in View() argument
269 byteshift_(byteshift), cache_(cache), data_ownership_(data_ownership), in View()
297 byteshift() const in byteshift() function
370 find_view(off_t start, section_size_type size, unsigned int byteshift,
383 make_view(off_t start, section_size_type size, unsigned int byteshift,
DChangeLog-081517763 * fileread.cc (File_read::find_view): Add byteshift and vshifted
17766 (File_read::read): Adjust for byteshift in returned view.
17774 for byteshift in return value.
17777 (class File_read::View): Add byteshift_ field. Add byteshift to
17778 constructor. Add byteshift method.