Lines Matching defs:shift
1003 Int shift;
1401 shift = (Int)(e->Iex.Binop.arg2->Iex.Const.con->Ico.U8);
1402 if (shift >= 0 && shift <= 31)
1405 << shift)));
1409 shift = (Int)(e->Iex.Binop.arg2->Iex.Const.con->Ico.U8);
1410 if (shift >= 0 && shift <= 63)
1413 << shift)));
1422 shift = (Int)(e->Iex.Binop.arg2->Iex.Const.con->Ico.U8);
1423 if (shift >= 0 && shift <= 31) {
1424 s32 >>=/*signed*/ shift;
1434 shift = (Int)(e->Iex.Binop.arg2->Iex.Const.con->Ico.U8);
1435 if (shift >= 0 && shift <= 63) {
1436 s64 >>=/*signed*/ shift;
1448 shift = (Int)(e->Iex.Binop.arg2->Iex.Const.con->Ico.U8);
1449 if (shift >= 0 && shift <= 31) {
1450 u32 >>=/*unsigned*/ shift;
1460 shift = (Int)(e->Iex.Binop.arg2->Iex.Const.con->Ico.U8);
1461 if (shift >= 0 && shift <= 63) {
1462 u64 >>=/*unsigned*/ shift;