Lines Matching defs:pos
1633 return pc_offset() - label->pos();
1655 return pc_ >= reloc_info_writer.pos() - kGap;
1659 inline int available_space() const { return reloc_info_writer.pos() - pc_; }
1664 return (buffer_start_ + buffer_->size()) - reloc_info_writer.pos();
1670 byte byte_at(int pos) { return buffer_start_[pos]; }
1671 void set_byte_at(int pos, byte value) { buffer_start_[pos] = value; }
1679 Address addr_at(int pos) {
1680 return reinterpret_cast<Address>(buffer_start_ + pos);
1684 uint32_t long_at(int pos) {
1685 return ReadUnalignedValue<uint32_t>(addr_at(pos));
1687 void long_at_put(int pos, uint32_t x) {
1688 WriteUnalignedValue(addr_at(pos), x);
1734 void bind_to(Label* L, int pos);
1771 void record_farjmp_position(Label* L, int pos);