Searched defs:w32 (Results 1 - 15 of 15) sorted by relevance

/external/valgrind/VEX/pub/
H A Dlibvex_basictypes.h79 UInt w32[4]; member in union:__anon24331
89 UInt w32[8]; member in union:__anon24332
/external/valgrind/memcheck/tests/common/
H A Dsh-mem-vec128.tmpl.c36 volatile U4 w32 = 0x88776655; local
37 volatile U1* p = (U1*)&w32;
/external/boringssl/src/crypto/fipsmodule/sha/
H A Dsha1-altivec.c253 const vec_uint32_t w32 = sched_32_79(vw + 8, w28, w24, w16, w4, w0, k); local
259 const vec_uint32_t w36 = sched_32_79(vw + 9, w32, w28, w20, w8, w4, k);
266 const vec_uint32_t w40 = sched_32_79(vw + 10, w36, w32, w24, w12, w8, k);
278 const vec_uint32_t w48 = sched_32_79(vw + 12, w44, w40, w32, w20, w16, k);
297 const vec_uint32_t w60 = sched_32_79(vw + 15, w56, w52, w44, w32, w28, k);
303 const vec_uint32_t w64 = sched_32_79(vw + 16, w60, w56, w48, w36, w32, k);
/external/dng_sdk/source/
H A Ddng_resample.cpp223 real32 *w32 = fWeights32->Buffer_real32 () + fWeightStep * sample; local
238 w32 [j] = (real32) kernel.Evaluate (x);
240 t32 += w32 [j];
251 w32 [j] *= s32;
268 w16 [j] = (int16) Round_int32 (w32 [j] * 16384.0);
382 real32 *w32 = (real32 *) Weights32 (dng_point ((int32) y, local
414 w32 [index] = (real32) kernel.Evaluate (r);
420 w32 [index] = (real32) kernel.Evaluate (xPos) *
425 t32 += w32 [index];
440 w32 [
[all...]
/external/valgrind/none/tests/amd64/
H A Dpcmpstr64w.c25 UInt w32[4]; member in union:__anon25272
157 resV->w32[0] = newECX;
158 resV->w32[1] = 0;
159 resV->w32[2] = 0;
160 resV->w32[3] = 0;
/external/valgrind/VEX/priv/
H A Dguest_arm64_helpers.c1085 UInt chs = SHAchoose(Y->w32[0], Y->w32[1], Y->w32[2]);
1086 UInt maj = SHAmajority(X->w32[0], X->w32[1], X->w32[2]);
1087 UInt t = Y->w32[3] + SHAhashSIGMA1(Y->w32[0]) + chs + W->w32[e];
1088 X->w32[
1798 UInt w32 = vex_state->guest_QCFLAG[0] | vex_state->guest_QCFLAG[1] local
[all...]
H A Dguest_x86_helpers.c1869 { UInt w32 = (((UInt)addrS[12]) & 0xFFFF) local
1871 ULong w64 = x86g_check_ldmxcsr( w32 );
2076 static UInt calc_parity_8bit ( UInt w32 ) {
2080 p ^= (1 & (w32 >> i));
H A Dhost_generic_simd64.c1194 static inline UShort sel16x2_1 ( UInt w32 ) {
1195 return 0xFFFF & (UShort)(w32 >> 16);
1197 static inline UShort sel16x2_0 ( UInt w32 ) {
1198 return 0xFFFF & (UShort)(w32);
1203 UInt w32 = (((UInt)w3) << 24) | (((UInt)w2) << 16) local
1205 return w32;
1208 static inline UChar sel8x4_3 ( UInt w32 ) {
1209 return toUChar(0xFF & (w32 >> 24));
1211 static inline UChar sel8x4_2 ( UInt w32 ) {
1212 return toUChar(0xFF & (w32 >> 1
[all...]
H A Dhost_mips_defs.c2063 static UChar *emit32(UChar * p, UInt w32) argument
2066 *p++ = toUChar(w32 & 0x000000FF);
2067 *p++ = toUChar((w32 >> 8) & 0x000000FF);
2068 *p++ = toUChar((w32 >> 16) & 0x000000FF);
2069 *p++ = toUChar((w32 >> 24) & 0x000000FF);
2082 *p++ = toUChar((w32 >> 24) & 0x000000FF);
2083 *p++ = toUChar((w32 >> 16) & 0x000000FF);
2084 *p++ = toUChar((w32 >> 8) & 0x000000FF);
2085 *p++ = toUChar(w32 & 0x000000FF);
2092 UInt w32 local
[all...]
H A Dguest_amd64_helpers.c2250 UInt w32 = (((UInt)addrS[12]) & 0xFFFF) local
2252 ULong w64 = amd64g_check_ldmxcsr( (ULong)w32 );
3984 gst->guest_YMM0[0] = resV.w32[0];
3985 gst->guest_YMM0[1] = resV.w32[1];
3986 gst->guest_YMM0[2] = resV.w32[2];
3987 gst->guest_YMM0[3] = resV.w32[3];
3990 UInt newECX = resV.w32[0] & 0xFFFF;
4280 static inline UInt RotWord (UInt w32) argument
4282 return ((w32 >> 8) | (w32 << 2
4285 SubWord(UInt w32) argument
[all...]
H A Dhost_ppc_defs.c3247 static UChar* emit32 ( UChar* p, UInt w32, VexEndness endness_host ) argument
3250 *p++ = toUChar((w32 >> 24) & 0x000000FF);
3251 *p++ = toUChar((w32 >> 16) & 0x000000FF);
3252 *p++ = toUChar((w32 >> 8) & 0x000000FF);
3253 *p++ = toUChar((w32) & 0x000000FF);
3255 *p++ = toUChar((w32) & 0x000000FF);
3256 *p++ = toUChar((w32 >> 8) & 0x000000FF);
3257 *p++ = toUChar((w32 >> 16) & 0x000000FF);
3258 *p++ = toUChar((w32 >> 24) & 0x000000FF);
3266 UInt w32 local
[all...]
H A Dir_opt.c1581 UInt w32 = e->Iex.Unop.arg->Iex.Const.con->Ico.U32; local
1582 if (w32 == 0)
/external/valgrind/coregrind/m_debuginfo/
H A Dreaddwarf.c209 UInt w32 = ML_(cur_step_UInt)(p_img); local
210 if (w32 == 0xFFFFFFFF) {
215 return (ULong)w32;
H A Dreaddwarf3.c362 UInt w32; local
364 w32 = get_UInt( c );
365 if (w32 >= 0xFFFFFFF0 && w32 < 0xFFFFFFFF) {
368 else if (w32 == 0xFFFFFFFF) {
373 w64 = (ULong)w32;
/external/valgrind/memcheck/
H A Dmc_main.c2382 UInt w32[OC_W32S_PER_LINE]; member in struct:__anon25198
2398 if (line->w32[i] > 0 && line->descr[i] > 0)
2452 line->w32[i] = 0; /* NO ORIGIN */
2647 line->w32[lineoff+0] = otag;
2648 line->w32[lineoff+1] = otag;
2700 line->w32[lineoff] = otag;
2784 line->w32[lineoff+0] = otag;
2785 line->w32[lineoff+1] = otag;
3988 UInt* w32 = ASSUME_ALIGNED(UInt*, &sm->vabits8[v_off]); local
3989 w32[
4024 UInt* w32 = ASSUME_ALIGNED(UInt*, &w16[1]); local
[all...]

Completed in 705 milliseconds