Lines Matching refs:pos
1136 return pc_offset() - label->pos();
1158 inline bool overflow() const { return pc_ >= reloc_info_writer.pos() - kGap; }
1161 inline int available_space() const { return reloc_info_writer.pos() - pc_; }
1168 return (buffer_ + buffer_size_) - reloc_info_writer.pos();
1174 byte byte_at(int pos) { return buffer_[pos]; }
1175 void set_byte_at(int pos, byte value) { buffer_[pos] = value; }
1183 byte* addr_at(int pos) { return buffer_ + pos; }
1187 uint32_t long_at(int pos) {
1188 return *reinterpret_cast<uint32_t*>(addr_at(pos));
1190 void long_at_put(int pos, uint32_t x) {
1191 *reinterpret_cast<uint32_t*>(addr_at(pos)) = x;
1225 void bind_to(Label* L, int pos);