/art/test/568-checker-onebit/src/ |
Main.java | 19 /// CHECK-START: int Main.hi32(int) intrinsics_recognition (after) 22 private static int hi32(int x) { method in class:Main 52 expectEquals32(0x00000000, hi32(0x00000000)); 54 expectEquals32(0x00010000, hi32(0x00010000)); 56 expectEquals32(0x00800000, hi32(0x00FF0000)); 58 expectEquals32(0x80000000, hi32(0xFFFFFFFF)); 62 expectEquals32(0, hi32(xi[i])); 64 expectEquals32(1 << i, hi32(1 << i)); 67 expectEquals32(expected, hi32(0xF << i));
|
/prebuilts/go/darwin-x86/src/runtime/ |
vlrt.go | 189 func _mul64by32(lo64 *uint64, a uint64, b uint32) (hi32 uint32) 209 hi32 := _mul64by32(&lo64, d, t) 210 if hi32 != 0 || lo64 > n {
|
/prebuilts/go/linux-x86/src/runtime/ |
vlrt.go | 189 func _mul64by32(lo64 *uint64, a uint64, b uint32) (hi32 uint32) 209 hi32 := _mul64by32(&lo64, d, t) 210 if hi32 != 0 || lo64 > n {
|
/external/valgrind/VEX/priv/ |
host_generic_simd64.c | 66 UInt hi32 = (((UInt)w3) << 16) | ((UInt)w2); local 68 return mk32x2(hi32, lo32); 72 UInt hi32 = toUInt(w64 >> 32); local 73 return toUShort(0xFFFF & (hi32 >> 16)); 76 UInt hi32 = toUInt(w64 >> 32); local 77 return toUShort(0xFFFF & hi32); 95 UInt hi32 = (((UInt)w7) << 24) | (((UInt)w6) << 16) local 99 return mk32x2(hi32, lo32); 103 UInt hi32 = toUInt(w64 >> 32); local 104 return toUChar(0xFF & (hi32 >> 24)) 107 UInt hi32 = toUInt(w64 >> 32); local 111 UInt hi32 = toUInt(w64 >> 32); local 115 UInt hi32 = toUInt(w64 >> 32); local [all...] |
guest_x86_helpers.c | 2626 UInt hi32 = toUInt(w64 >> 32); local 2630 UInt hi32 = toUInt(w64 >> 32); local 2643 UInt hi32 = toUInt(w64 >> 32); local 2647 UInt hi32 = toUInt(w64 >> 32); local 2651 UInt hi32 = toUInt(w64 >> 32); local 2655 UInt hi32 = toUInt(w64 >> 32); local [all...] |
guest_amd64_helpers.c | 3526 UInt hi32 = toUInt(w64 >> 32); local 3530 UInt hi32 = toUInt(w64 >> 32); local 3543 UInt hi32 = toUInt(w64 >> 32); local 3547 UInt hi32 = toUInt(w64 >> 32); local 3551 UInt hi32 = toUInt(w64 >> 32); local 3555 UInt hi32 = toUInt(w64 >> 32); local [all...] |
host_tilegx_defs.h | 487 extern TILEGXInstr *TILEGXInstr_Mul ( Bool syned, Bool hi32, Bool sz32, HReg,
|
guest_ppc_toIR.c | 895 IRTemp hi32 = newTemp(Ity_I32); local 900 assign( hi32, unop(Iop_64HIto32, t64)); 904 /* if (hi32 == (lo32 >>s 31)) */ 905 binop(Iop_CmpEQ32, mkexpr(hi32), 911 binop(Iop_Shr32, mkexpr(hi32), mkU8(31)))); 917 IRTemp hi32 = newTemp(Ity_I32); local 922 assign( hi32, unop(Iop_64HIto32, t64)); 927 binop(Iop_CmpEQ32, mkexpr(hi32), mkU32(0)), 3228 IRExpr * Inf_exp, * hi32, * low32; local 3253 IRExpr * hi32, * low32; local 3273 IRExpr * NaN_exp, * hi32, * low32; local 8601 IRExpr * hi32, * low32, * fraction_is_nonzero; local 8793 IRExpr * hi32, * low32; local 14100 IRExpr * hi32; local [all...] |
host_mips_defs.h | 617 extern MIPSInstr *MIPSInstr_Mul(Bool syned, Bool hi32, Bool sz32, HReg,
|
host_arm64_isel.c | 1601 HReg hi32 = newVRegI(env); local [all...] |
host_ppc_defs.h | 592 Bool syned; /* meaningless if hi32==False */ 1007 extern PPCInstr* PPCInstr_MulL ( Bool syned, Bool hi32, Bool sz32, HReg, HReg, HReg ); [all...] |
host_amd64_isel.c | 1274 HReg hi32 = newVRegI(env); local [all...] |
guest_arm_toIR.c | 13179 IRExpr* hi32 = unop(Iop_64HIto32, mkexpr(i64)); local 16303 IRTemp hi32 = newTemp(Ity_I32); local 20899 IRTemp hi32 = newTemp(Ity_I32); local [all...] |
guest_x86_toIR.c | 7593 IRTemp hi32 = newTemp(Ity_I32); local [all...] |
guest_amd64_toIR.c | 9485 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
|
/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...] |
/toolchain/binutils/binutils-2.25/gas/config/ |
tc-mips.c | 8983 expressionS hi32, lo32; local [all...] |