Home | History | Annotate | Download | only in x64

Lines Matching refs:pos

1389     return pc_offset() - label->pos();
1415 return pc_ >= reloc_info_writer.pos() - kGap;
1420 return static_cast<int>(reloc_info_writer.pos() - pc_);
1429 byte byte_at(int pos) { return buffer_[pos]; }
1430 void set_byte_at(int pos, byte value) { buffer_[pos] = value; }
1436 byte* addr_at(int pos) { return buffer_ + pos; }
1437 uint32_t long_at(int pos) {
1438 return *reinterpret_cast<uint32_t*>(addr_at(pos));
1440 void long_at_put(int pos, uint32_t x) {
1441 *reinterpret_cast<uint32_t*>(addr_at(pos)) = x;
1613 void bind_to(Label* L, int pos);