Home | History | Annotate | Download | only in x64

Lines Matching defs:rex_

296         rex_(0),
327 byte rex_;
339 rex_ = rex;
342 bool rex() { return rex_ != 0; }
344 bool rex_b() { return (rex_ & 0x01) != 0; }
347 int base_reg(int low_bits) { return low_bits | ((rex_ & 0x01) << 3); }
349 bool rex_x() { return (rex_ & 0x02) != 0; }
351 bool rex_r() { return (rex_ & 0x04) != 0; }
353 bool rex_w() { return (rex_ & 0x08) != 0; }