Home | History | Annotate | Download | only in priv

Lines Matching refs:Ico

71       case Ico_U1:   vex_printf( "%d:I1",        con->Ico.U1 ? 1 : 0); break;
72 case Ico_U8: vex_printf( "0x%x:I8", (UInt)(con->Ico.U8)); break;
73 case Ico_U16: vex_printf( "0x%x:I16", (UInt)(con->Ico.U16)); break;
74 case Ico_U32: vex_printf( "0x%x:I32", (UInt)(con->Ico.U32)); break;
75 case Ico_U64: vex_printf( "0x%llx:I64", (ULong)(con->Ico.U64)); break;
76 case Ico_F32: u.f32 = con->Ico.F32;
79 case Ico_F32i: vex_printf( "F32i{0x%x}", con->Ico.F32i); break;
80 case Ico_F64: u.f64 = con->Ico.F64;
83 case Ico_F64i: vex_printf( "F64i{0x%llx}", con->Ico.F64i); break;
84 case Ico_V128: vex_printf( "V128{0x%04x}", (UInt)(con->Ico.V128)); break;
1287 c->Ico.U1 = bit;
1296 c->Ico.U8 = u8;
1303 c->Ico.U16 = u16;
1310 c->Ico.U32 = u32;
1317 c->Ico.U64 = u64;
1324 c->Ico.F32 = f32;
1331 c->Ico.F32i = f32i;
1338 c->Ico.F64 = f64;
1345 c->Ico.F64i = f64i;
1352 c->Ico.V128 = con;
1778 case Ico_U1: return IRConst_U1(c->Ico.U1);
1779 case Ico_U8: return IRConst_U8(c->Ico.U8);
1780 case Ico_U16: return IRConst_U16(c->Ico.U16);
1781 case Ico_U32: return IRConst_U32(c->Ico.U32);
1782 case Ico_U64: return IRConst_U64(c->Ico.U64);
1783 case Ico_F32: return IRConst_F32(c->Ico.F32);
1784 case Ico_F32i: return IRConst_F32i(c->Ico.F32i);
1785 case Ico_F64: return IRConst_F64(c->Ico.F64);
1786 case Ico_F64i: return IRConst_F64i(c->Ico.F64i);
1787 case Ico_V128: return IRConst_V128(c->Ico.V128);
2911 return toBool( con->Ico.U1 == True || con->Ico.U1 == False );
3573 case Ico_U1: return toBool( (1 & c1->Ico.U1) == (1 & c2->Ico.U1) );
3574 case Ico_U8: return toBool( c1->Ico.U8 == c2->Ico.U8 );
3575 case Ico_U16: return toBool( c1->Ico.U16 == c2->Ico.U16 );
3576 case Ico_U32: return toBool( c1->Ico.U32 == c2->Ico.U32 );
3577 case Ico_U64: return toBool( c1->Ico.U64 == c2->Ico.U64 );
3578 case Ico_F32: return toBool( c1->Ico.F32 == c2->Ico.F32 );
3579 case Ico_F32i: return toBool( c1->Ico.F32i == c2->Ico.F32i );
3580 case Ico_F64: return toBool( c1->Ico.F64 == c2->Ico.F64 );
3581 case Ico_F64i: return toBool( c1->Ico.F64i == c2->Ico.F64i );
3582 case Ico_V128: return toBool( c1->Ico.V128 == c2->Ico.V128 );