Home | History | Annotate | Download | only in memcheck

Lines Matching defs:con

1092               && e->Iex.Const.con->tag == Ico_U32
1093 && e->Iex.Const.con->Ico.U32 == 0 );
1100 && e->Iex.Const.con->tag == Ico_U64
1101 && e->Iex.Const.con->Ico.U64 == 0 );
6205 IRConst* con;
6210 con = at->Iex.Const.con;
6211 switch (con->tag) {
6213 case Ico_U8: n = (ULong)con->Ico.U8; break;
6214 case Ico_U16: n = (ULong)con->Ico.U16; break;
6215 case Ico_U32: n = (ULong)con->Ico.U32; break;
6216 case Ico_U64: n = (ULong)con->Ico.U64; break;
6745 return eqIRConst( e1->Iex.Const.con, e2->Iex.Const.con );