Home | History | Annotate | Download | only in priv

Lines Matching refs:sib

1460    following SIB bytes.  The expression, and the number of bytes in
1550 /* SIB, with no displacement. Special cases:
1556 scale from the SIB byte. The value denoted is then:
1558 = d32 following SIB byte
1562 = d32 following SIB byte + (%index << scale)
1569 UChar sib = getIByte(delta);
1570 UChar scale = toUChar((sib >> 6) & 3);
1571 UChar index_r = toUChar((sib >> 3) & 7);
1572 UChar base_r = toUChar(sib & 7);
1619 /* SIB, with 8-bit displacement. Special cases:
1629 UChar sib = getIByte(delta);
1630 UChar scale = toUChar((sib >> 6) & 3);
1631 UChar index_r = toUChar((sib >> 3) & 7);
1632 UChar base_r = toUChar(sib & 7);
1660 /* SIB, with 32-bit displacement. Special cases:
1670 UChar sib = getIByte(delta);
1671 UChar scale = toUChar((sib >> 6) & 3);
1672 UChar index_r = toUChar((sib >> 3) & 7);
1673 UChar base_r = toUChar(sib & 7);
1748 /* SIB, no displacement. */
1750 UChar sib = getIByte(delta);
1751 UChar base_r = toUChar(sib & 7);
1754 /* SIB, with 8-bit displacement. */
1757 /* SIB, with 32-bit displacement. */