HomeSort by relevance Sort by last modified time
    Searched refs:Ico (Results 1 - 16 of 16) sorted by null

  /external/valgrind/main/VEX/priv/
ir_opt.c 902 && e1->Iex.Const.con->Ico.U32
903 == e2->Iex.Const.con->Ico.U32 );
971 e->Iex.Unop.arg->Iex.Const.con->Ico.U1
976 e->Iex.Unop.arg->Iex.Const.con->Ico.U1
981 e->Iex.Unop.arg->Iex.Const.con->Ico.U1
    [all...]
ir_defs.c 70 case Ico_U1: vex_printf( "%d:I1", con->Ico.U1 ? 1 : 0); break;
71 case Ico_U8: vex_printf( "0x%x:I8", (UInt)(con->Ico.U8)); break;
72 case Ico_U16: vex_printf( "0x%x:I16", (UInt)(con->Ico.U16)); break;
73 case Ico_U32: vex_printf( "0x%x:I32", (UInt)(con->Ico.U32)); break;
74 case Ico_U64: vex_printf( "0x%llx:I64", (ULong)(con->Ico.U64)); break;
75 case Ico_F64: u.f64 = con->Ico.F64;
78 case Ico_F64i: vex_printf( "F64i{0x%llx}", con->Ico.F64i); break;
79 case Ico_V128: vex_printf( "V128{0x%04x}", (UInt)(con->Ico.V128)); break;
    [all...]
host_amd64_isel.c 276 && e->Iex.Const.con->Ico.U64 == 0ULL;
283 && e->Iex.Const.con->Ico.U32 == 0;
390 if (fitsIn32Bits(e->Iex.Const.con->Ico.U64)) {
393 AMD64RMI_Imm(toUInt(e->Iex.Const.con->Ico.U64)),
397 return AMD64Instr_Imm64(e->Iex.Const.con->Ico.U64, dst);
521 && guard->Iex.Const.con->Ico.U1 == True) {
596 && guard->Iex.Const.con->Ico.U1 == True) {
    [all...]
host_ppc_isel.c 723 && guard->Iex.Const.con->Ico.U1 == True) {
832 && guard->Iex.Const.con->Ico.U1 == True) {
    [all...]
host_x86_isel.c 109 && e->Iex.Const.con->Ico.U8 == 0;
116 && e->Iex.Const.con->Ico.U32 == 0;
123 && e->Iex.Const.con->Ico.U64 == 0ULL;
560 && guard->Iex.Const.con->Ico.U1 == True) {
904 nshift = e->Iex.Binop.arg2->Iex.Const.con->Ico.U8;
    [all...]
host_arm_isel.c 451 && guard->Iex.Const.con->Ico.U1 == True) {
562 && guard->Iex.Const.con->Ico.U1 == True) {
679 Int simm = (Int)e->Iex.Binop.arg2->Iex.Const.con->Ico.U32;
745 Int simm = (Int)e->Iex.Binop.arg2->Iex.Const.con->Ico.U32;
797 Int simm = (Int)e->Iex.Binop.arg2->Iex.Const.con->Ico.U32;
872 case Ico_U32: u = e->Iex.Const.con->Ico.U32; break;
873 case Ico_U16: u = 0xFFFF & (e->Iex.Const.con->Ico.U16); break;
874 case Ico_U8: u = 0xFF & (e->Iex.Const.con->Ico.U8); break;
926 case Ico_U32: u = e->Iex.Const.con->Ico.U32; break;
927 case Ico_U16: u = 0xFFFF & (e->Iex.Const.con->Ico.U16); break
    [all...]
guest_arm_helpers.c 306 && e->Iex.Const.con->Ico.U32 == n );
guest_amd64_helpers.c     [all...]
guest_x86_helpers.c 772 && e->Iex.Const.con->Ico.U32 == n );
    [all...]
  /external/valgrind/main/lackey/
lk_main.c 846 dst = (sizeof(Addr) == 4) ? st->Ist.Exit.dst->Ico.U32 :
847 st->Ist.Exit.dst->Ico.U64;
    [all...]
  /external/valgrind/main/coregrind/
m_translate.c 273 (sizeof_SP==4 ? (Long)(Int)(con->Ico.U32) \
274 : (Long)(con->Ico.U64))
    [all...]
  /external/valgrind/tsan/
ts_valgrind.cc 1028 target = con->tag == Ico_U32 ? con->Ico.U32 : con->Ico.U64;
    [all...]
  /external/valgrind/main/memcheck/
mc_translate.c 877 && e->Iex.Const.con->Ico.U32 == 0 );
885 && e->Iex.Const.con->Ico.U64 == 0 );
    [all...]
  /external/valgrind/main/cachegrind/
cg_main.c     [all...]
  /external/valgrind/main/callgrind/
main.c 792 addr = con->Ico.U32;
796 addr = con->Ico.U64;
    [all...]
  /external/valgrind/main/VEX/pub/
libvex_ir.h 273 constant this is. 'Ico' is the union that holds the fields. If an
275 and its value can be accessed with 'c.Ico.U32'. */
288 } Ico;
    [all...]

Completed in 40 milliseconds