Home | History | Annotate | Download | only in x64

Lines Matching refs:pos

1454     return pc_offset() - label->pos();
1478 return pc_ >= reloc_info_writer.pos() - kGap;
1483 return static_cast<int>(reloc_info_writer.pos() - pc_);
1491 byte byte_at(int pos) { return buffer_[pos]; }
1492 void set_byte_at(int pos, byte value) { buffer_[pos] = value; }
1495 byte* addr_at(int pos) { return buffer_ + pos; }
1496 uint32_t long_at(int pos) {
1497 return *reinterpret_cast<uint32_t*>(addr_at(pos));
1499 void long_at_put(int pos, uint32_t x) {
1500 *reinterpret_cast<uint32_t*>(addr_at(pos)) = x;
1699 void bind_to(Label* L, int pos);