Home | History | Annotate | Download | only in priv

Lines Matching refs:sib

1486    following SIB bytes.  The expression, and the number of bytes in
1576 /* SIB, with no displacement. Special cases:
1582 scale from the SIB byte. The value denoted is then:
1584 = d32 following SIB byte
1588 = d32 following SIB byte + (%index << scale)
1595 UChar sib = getIByte(delta);
1596 UChar scale = toUChar((sib >> 6) & 3);
1597 UChar index_r = toUChar((sib >> 3) & 7);
1598 UChar base_r = toUChar(sib & 7);
1645 /* SIB, with 8-bit displacement. Special cases:
1655 UChar sib = getIByte(delta);
1656 UChar scale = toUChar((sib >> 6) & 3);
1657 UChar index_r = toUChar((sib >> 3) & 7);
1658 UChar base_r = toUChar(sib & 7);
1686 /* SIB, with 32-bit displacement. Special cases:
1696 UChar sib = getIByte(delta);
1697 UChar scale = toUChar((sib >> 6) & 3);
1698 UChar index_r = toUChar((sib >> 3) & 7);
1699 UChar base_r = toUChar(sib & 7);
1774 /* SIB, no displacement. */
1776 UChar sib = getIByte(delta);
1777 UChar base_r = toUChar(sib & 7);
1780 /* SIB, with 8-bit displacement. */
1783 /* SIB, with 32-bit displacement. */