Home | History | Annotate | Download | only in priv

Lines Matching defs:shift

1350    Int     shift;
1822 shift = (Int)(e->Iex.Binop.arg2->Iex.Const.con->Ico.U8);
1823 if (shift >= 0 && shift <= 31)
1826 << shift)));
1830 shift = (Int)(e->Iex.Binop.arg2->Iex.Const.con->Ico.U8);
1831 if (shift >= 0 && shift <= 63)
1834 << shift)));
1843 shift = (Int)(e->Iex.Binop.arg2->Iex.Const.con->Ico.U8);
1844 if (shift >= 0 && shift <= 31) {
1845 s32 >>=/*signed*/ shift;
1855 shift = (Int)(e->Iex.Binop.arg2->Iex.Const.con->Ico.U8);
1856 if (shift >= 0 && shift <= 63) {
1857 s64 >>=/*signed*/ shift;
1869 shift = (Int)(e->Iex.Binop.arg2->Iex.Const.con->Ico.U8);
1870 if (shift >= 0 && shift <= 31) {
1871 u32 >>=/*unsigned*/ shift;
1881 shift = (Int)(e->Iex.Binop.arg2->Iex.Const.con->Ico.U8);
1882 if (shift >= 0 && shift <= 63) {
1883 u64 >>=/*unsigned*/ shift;