Lines Matching refs:encoding_
85 memmove(&encoding_[0], &other.encoding_[0], other.length_); in Operand()
91 memmove(&encoding_[0], &other.encoding_[0], other.length_);
115 return static_cast<int8_t>(encoding_[length_ - 1]); in disp8()
133 encoding_[0] = (mod << 6) | rm; in SetModRM()
140 encoding_[1] = (scale << 6) | (index << 3) | base; in SetSIB()
146 encoding_[length_++] = static_cast<uint8_t>(disp); in SetDisp8()
152 memmove(&encoding_[length_], &disp, disp_size); in SetDisp32()
160 uint8_t encoding_[6]; member
168 return encoding_[index]; in encoding_at()
174 return ((encoding_[0] & 0xF8) == in IsRegister()
177 ((encoding_[0] & 0x07) == reg); // Register codes match. in IsRegister()