Lines Matching defs:s64
1511 /* signed */ Long s64 = e->Iex.Unop.arg->Iex.Const.con->Ico.U16;
1512 s64 <<= 48;
1513 s64 >>= 48;
1514 e2 = IRExpr_Const(IRConst_U64((ULong)s64));
1518 /* signed */ Long s64 = e->Iex.Unop.arg->Iex.Const.con->Ico.U32;
1519 s64 <<= 32;
1520 s64 >>= 32;
1521 e2 = IRExpr_Const(IRConst_U64((ULong)s64));
1584 Long s64 = (Long)u64;
1585 s64 = (s64 | (-s64));
1586 e2 = IRExpr_Const( IRConst_U64( (ULong)s64 ));
1852 /*signed*/ Long s64;
1854 s64 = (Long)(e->Iex.Binop.arg1->Iex.Const.con->Ico.U64);
1857 s64 >>=/*signed*/ shift;
1858 e2 = IRExpr_Const(IRConst_U64((ULong)s64));