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

  /external/valgrind/main/VEX/priv/
host_generic_simd64.c 65 UInt hi32 = (((UInt)w3) << 16) | ((UInt)w2); local
67 return mk32x2(hi32, lo32);
71 UInt hi32 = toUInt(w64 >> 32); local
72 return toUShort(0xFFFF & (hi32 >> 16));
75 UInt hi32 = toUInt(w64 >> 32); local
76 return toUShort(0xFFFF & hi32);
94 UInt hi32 = (((UInt)w7) << 24) | (((UInt)w6) << 16) local
98 return mk32x2(hi32, lo32);
102 UInt hi32 = toUInt(w64 >> 32); local
103 return toUChar(0xFF & (hi32 >> 24))
106 UInt hi32 = toUInt(w64 >> 32); local
110 UInt hi32 = toUInt(w64 >> 32); local
114 UInt hi32 = toUInt(w64 >> 32); local
    [all...]
guest_x86_helpers.c 2454 UInt hi32 = toUInt(w64 >> 32); local
2458 UInt hi32 = toUInt(w64 >> 32); local
2471 UInt hi32 = toUInt(w64 >> 32); local
2475 UInt hi32 = toUInt(w64 >> 32); local
2479 UInt hi32 = toUInt(w64 >> 32); local
2483 UInt hi32 = toUInt(w64 >> 32); local
    [all...]
guest_amd64_helpers.c 2938 UInt hi32 = toUInt(w64 >> 32); local
2942 UInt hi32 = toUInt(w64 >> 32); local
2955 UInt hi32 = toUInt(w64 >> 32); local
2959 UInt hi32 = toUInt(w64 >> 32); local
2963 UInt hi32 = toUInt(w64 >> 32); local
2967 UInt hi32 = toUInt(w64 >> 32); local
    [all...]
guest_ppc_toIR.c 790 IRTemp hi32 = newTemp(Ity_I32); local
795 assign( hi32, unop(Iop_64HIto32, t64));
799 /* if (hi32 == (lo32 >>s 31)) */
801 binop(Iop_CmpEQ32, mkexpr(hi32),
805 binop(Iop_Shr32, mkexpr(hi32), mkU8(31))),
813 IRTemp hi32 = newTemp(Ity_I32); local
818 assign( hi32, unop(Iop_64HIto32, t64));
823 unop(Iop_1Uto8, binop(Iop_CmpEQ32, mkexpr(hi32), mkU32(0))),
2821 IRExpr * Inf_exp, * hi32, * low32; local
2846 IRExpr * hi32, * low32; local
2866 IRExpr * NaN_exp, * hi32, * low32; local
7669 IRExpr * hi32, * low32, * fraction_is_nonzero; local
7861 IRExpr * hi32, * low32; local
12820 IRExpr * hi32; local
    [all...]
host_mips_defs.h 637 extern MIPSInstr *MIPSInstr_Mul(Bool syned, Bool hi32, Bool sz32, HReg,
host_ppc_defs.h 590 Bool syned; /* meaningless if hi32==False */
968 extern PPCInstr* PPCInstr_MulL ( Bool syned, Bool hi32, Bool sz32, HReg, HReg, HReg );
    [all...]
host_amd64_isel.c 1172 HReg hi32 = newVRegI(env); local
    [all...]
guest_arm_toIR.c 11284 IRExpr* hi32 = unop(Iop_64HIto32, mkexpr(i64)); local
14206 IRTemp hi32 = newTemp(Ity_I32); local
18165 IRTemp hi32 = newTemp(Ity_I32); local
    [all...]
guest_x86_toIR.c 7445 IRTemp hi32 = newTemp(Ity_I32); local
    [all...]
guest_amd64_toIR.c 8972 IRTemp hi32 = newTemp(Ity_I32); local
    [all...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/
IntegralToString.java 358 int hi32 = (int) (n >>> 32);
363 // Adjust midDigit for hi32. (assert hi32 == 1 || hi32 == 2)
364 midDigit -= hi32 << 2; // 1L << 32 == -4 MOD 10
  /libcore/luni/src/main/java/java/lang/
IntegralToString.java 365 int hi32 = (int) (n >>> 32);
370 // Adjust midDigit for hi32. (assert hi32 == 1 || hi32 == 2)
371 midDigit -= hi32 << 2; // 1L << 32 == -4 MOD 10
  /external/bzip2/
bzip2.c 238 void uInt64_from_UInt32s ( UInt64* n, UInt32 lo32, UInt32 hi32 )
240 n->b[7] = (UChar)((hi32 >> 24) & 0xFF);
241 n->b[6] = (UChar)((hi32 >> 16) & 0xFF);
242 n->b[5] = (UChar)((hi32 >> 8) & 0xFF);
243 n->b[4] = (UChar) (hi32 & 0xFF);
    [all...]

Completed in 2335 milliseconds