Lines Matching defs:c1
1094 IRConst *c1 = e1->Iex.Const.con;
1096 vassert(c1->tag == c2->tag);
1097 switch (c1->tag) {
1098 case Ico_U1: return toBool( c1->Ico.U1 == c2->Ico.U1 );
1099 case Ico_U8: return toBool( c1->Ico.U8 == c2->Ico.U8 );
1100 case Ico_U16: return toBool( c1->Ico.U16 == c2->Ico.U16 );
1101 case Ico_U32: return toBool( c1->Ico.U32 == c2->Ico.U32 );
1102 case Ico_U64: return toBool( c1->Ico.U64 == c2->Ico.U64 );
1170 IRConst *c1 = e1->Iex.Const.con;
1172 return c1->tag != c2->tag;