Searched refs:w64 (Results 1 - 25 of 30) sorted by relevance

12

/external/syslinux/win64/
H A Dfind-mingw64.sh15 x86_64-w64-mingw32- \
16 x86_64-w64-mingw32msvc- \
25 amd64-w64-mingw32- \
26 amd64-w64-mingw32msvc- \
/external/webrtc/webrtc/modules/video_coding/
H A Dinternal_defines.h20 inline uint32_t MaskWord64ToUWord32(int64_t w64) { argument
21 return static_cast<uint32_t>(MASK_32_BITS(w64));
/external/valgrind/VEX/priv/
H A Dguest_arm64_helpers.c814 res->w64[1] = accHi;
815 res->w64[0] = accLo;
972 res->w64[1] = argHi;
973 res->w64[0] = argLo;
999 res->w64[1] = argHi;
1000 res->w64[0] = argLo;
1026 res->w64[1] = argHi;
1027 res->w64[0] = argLo;
1038 res->w64[1] = argHi;
1039 res->w64[
[all...]
H A Dhost_generic_simd128.c258 res->w64[0] = cmpEQ64(argL->w64[0], argR->w64[0]);
259 res->w64[1] = cmpEQ64(argL->w64[1], argR->w64[1]);
266 res->w64[0] = cmpGT64S(argL->w64[0], argR->w64[0]);
267 res->w64[
[all...]
H A Dguest_x86_helpers.c1871 ULong w64 = x86g_check_ldmxcsr( w32 ); local
1873 warnXMM = (VexEmNote)(w64 >> 32);
1875 gst->guest_SSEROUND = w64 & 0xFFFFFFFF;
1952 ULong w64 = x86g_check_ldmxcsr( mxcsr ); local
1953 vex_state->guest_SSEROUND = w64 & 0xFFFFFFFF;
1954 return (VexEmNote)(w64 >> 32);
2624 static inline UShort sel16x4_3 ( ULong w64 ) {
2625 UInt hi32 = toUInt(w64 >> 32);
2628 static inline UShort sel16x4_2 ( ULong w64 ) {
2629 UInt hi32 = toUInt(w64 >> 3
[all...]
H A Dhost_generic_simd64.c53 static inline UInt sel32x2_1 ( ULong w64 ) {
54 return 0xFFFFFFFF & toUInt(w64 >> 32);
56 static inline UInt sel32x2_0 ( ULong w64 ) {
57 return 0xFFFFFFFF & toUInt(w64);
71 static inline UShort sel16x4_3 ( ULong w64 ) {
72 UInt hi32 = toUInt(w64 >> 32);
75 static inline UShort sel16x4_2 ( ULong w64 ) {
76 UInt hi32 = toUInt(w64 >> 32);
79 static inline UShort sel16x4_1 ( ULong w64 ) {
80 UInt lo32 = (UInt)w64;
135 index8x8( ULong w64, UChar ix ) argument
[all...]
H A Dguest_amd64_helpers.c2252 ULong w64 = amd64g_check_ldmxcsr( (ULong)w32 ); local
2254 VexEmNote warnXMM = (VexEmNote)(w64 >> 32);
2256 gst->guest_SSEROUND = w64 & 0xFFFFFFFFULL;
3620 static inline UShort sel16x4_3 ( ULong w64 ) {
3621 UInt hi32 = toUInt(w64 >> 32);
3624 static inline UShort sel16x4_2 ( ULong w64 ) {
3625 UInt hi32 = toUInt(w64 >> 32);
3628 static inline UShort sel16x4_1 ( ULong w64 ) {
3629 UInt lo32 = toUInt(w64);
3632 static inline UShort sel16x4_0 ( ULong w64 ) {
[all...]
H A Dhost_generic_reg_alloc2.c288 static inline UInt ULong__maxIndex ( ULong w64 ) {
289 return 63 - __builtin_clzll(w64);
292 static inline UInt ULong__minIndex ( ULong w64 ) {
293 return __builtin_ctzll(w64);
H A Dir_opt.c1505 ULong w64 = e->Iex.Unop.arg->Iex.Const.con->Ico.U64; local
1506 w64 &= 0xFFULL;
1507 e2 = IRExpr_Const(IRConst_U8( (UChar)w64 ));
1511 ULong w64 = e->Iex.Unop.arg->Iex.Const.con->Ico.U64; local
1512 w64 &= 0xFFFFULL;
1513 e2 = IRExpr_Const(IRConst_U16( (UShort)w64 ));
1517 ULong w64 = e->Iex.Unop.arg->Iex.Const.con->Ico.U64; local
1518 w64 &= 0x00000000FFFFFFFFULL;
1519 e2 = IRExpr_Const(IRConst_U32( (UInt)w64 ));
1523 ULong w64 local
1589 ULong w64 = e->Iex.Unop.arg->Iex.Const.con->Ico.U64; local
[all...]
H A Dhost_x86_isel.c2096 ULong w64 = e->Iex.Const.con->Ico.U64; local
2097 UInt wHi = toUInt(w64 >> 32);
2098 UInt wLo = toUInt(w64);
2255 ULong w64 = e->Iex.Binop.arg2->Iex.Const.con->Ico.U64; local
2256 UInt wHi = toUInt(w64 >> 32);
2257 UInt wLo = toUInt(w64);
H A Dhost_amd64_defs.c2105 static UChar* emit64 ( UChar* p, ULong w64 )
2107 p = emit32(p, toUInt(w64 & 0xFFFFFFFF));
2108 p = emit32(p, toUInt((w64 >> 32) & 0xFFFFFFFF));
H A Dhost_mips_isel.c2305 ULong w64 = e->Iex.Const.con->Ico.U64; local
2306 UInt wHi = toUInt(w64 >> 32);
2307 UInt wLo = toUInt(w64);
/external/libusb/
H A Dappveyor_minGW.bat12 C:\msys64\usr\bin\bash -e -l -c "build-x64/../configure --prefix=/mingw64 --build=--build= --host=x86_64-w64-mingw32"
22 C:\msys64\usr\bin\bash -e -l -c "build-Win32/../configure --prefix=/mingw32 --build=i686-w64-mingw32 --host=i686-w64-mingw32"
/external/valgrind/none/tests/ppc64/
H A Dstd_reg_imm.c46 unsigned long long int w64; member in struct:__anon29779
/external/syslinux/win32/
H A Dfind-mingw32.sh24 i686-w64-mingw32-; do
/external/valgrind/memcheck/tests/amd64/
H A Dinsn-pmovmskb.c10 ULong w64[2]; /* Note: little-endian */ member in struct:__anon29611
28 (void)VALGRIND_SET_VBITS(&addr->w64[i], &vbits.w64[i], sizeof(vbits.w64[i]));
35 vbits.w64[1], vbits.w64[0], val.w64[1], val.w64[0],
/external/valgrind/VEX/pub/
H A Dlibvex_basictypes.h80 ULong w64[2]; member in union:__anon28734
90 ULong w64[4]; member in union:__anon28735
/external/capstone/
H A Dmake.sh156 "cross-win32" ) CROSS=i686-w64-mingw32- build $*;;
157 "cross-win64" ) CROSS=x86_64-w64-mingw32- build $*;;
159 "cygwin-mingw64" ) CROSS=x86_64-w64-mingw32- build $*;;
/external/expat/
H A Dcoverage.sh51 ${with_mingw} && configure_args+=( --host=i686-w64-mingw32 )
75 local mingw_gcc_dll_dir="$(dirname "$(ls -1 /usr/lib*/gcc/i686-w64-mingw32/*/libgcc_s_sjlj-1.dll | head -n1)")"
83 local mingw_pthread_dll_dir="$(dirname "$(ls -1 /usr/i686-w64-mingw32/lib*/libwinpthread-1.dll | head -n1)")"
/external/compiler-rt/make/platform/
H A Dclang_mingw.mk1 Description := Static runtime libraries for mingw-w64
/external/libvpx/libvpx/vpx_dsp/x86/
H A Dvpx_convolve_copy_sse2.asm49 je .w64
88 .w64:
/external/boringssl/src/crypto/fipsmodule/sha/
H A Dsha1-altivec.c303 const vec_uint32_t w64 = sched_32_79(vw + 16, w60, w56, w48, w36, w32, k); local
309 const vec_uint32_t w68 = sched_32_79(vw + 17, w64, w60, w52, w40, w36, k);
315 const vec_uint32_t w72 = sched_32_79(vw + 18, w68, w64, w56, w44, w40, k);
/external/libusb/libusb/os/
H A Dwindows_winusb.c680 const char *w64 = "32 bit"; local
753 w64 = "64-bit";
759 (unsigned int)vi.dwMajorVersion, (unsigned int)vi.dwMinorVersion, w64);
761 safe_sprintf(vptr, vlen, "%s SP%u.%u %s", w, vi.wServicePackMajor, vi.wServicePackMinor, w64);
763 safe_sprintf(vptr, vlen, "%s SP%u %s", w, vi.wServicePackMajor, w64);
765 safe_sprintf(vptr, vlen, "%s %s", w, w64);
/external/valgrind/none/tests/amd64/
H A Dsse4-64.c168 ULong w64; local
174 : /*OUT*/"=r"(w64) : /*IN*/ : "memory","cc"
176 if (0) printf("get %08x\n", (UInt)w64);
177 return (UInt)w64;
184 ULong w64 = (ULong)w32; local
190 : /*OUT*/ : /*IN*/"r"(w64) : "memory",/*"mxcsr",*/"cc"
/external/valgrind/coregrind/m_debuginfo/
H A Dreaddwarf3.c361 ULong w64; local
370 w64 = get_ULong( c );
373 w64 = (ULong)w32;
375 return w64;

Completed in 945 milliseconds

12