Home | History | Annotate | Download | only in src

Lines Matching defs:encoding_

85       memmove(&encoding_[0], &other.encoding_[0], other.length_);
91 memmove(&encoding_[0], &other.encoding_[0], other.length_);
115 return static_cast<int8_t>(encoding_[length_ - 1]);
123 // return Utils::bitCopy<int32_t>(encoding_[length_ - 4]);
133 encoding_[0] = (mod << 6) | rm;
140 encoding_[1] = (scale << 6) | (index << 3) | base;
146 encoding_[length_++] = static_cast<uint8_t>(disp);
152 memmove(&encoding_[length_], &disp, disp_size);
160 uint8_t encoding_[6];
168 return encoding_[index];
174 return ((encoding_[0] & 0xF8) ==
177 ((encoding_[0] & 0x07) == reg); // Register codes match.