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

  /external/valgrind/main/VEX/priv/
host_generic_simd128.c 108 V128* argL, V128* argR )
110 res->w32[0] = mul32(argL->w32[0], argR->w32[0]);
111 res->w32[1] = mul32(argL->w32[1], argR->w32[1]);
112 res->w32[2] = mul32(argL->w32[2], argR->w32[2]);
113 res->w32[3] = mul32(argL->w32[3], argR->w32[3]);
117 V128* argL, V128* argR )
119 res->w32[0] = max32S(argL->w32[0], argR->w32[0]);
120 res->w32[1] = max32S(argL->w32[1], argR->w32[1]);
121 res->w32[2] = max32S(argL->w32[2], argR->w32[2]);
122 res->w32[3] = max32S(argL->w32[3], argR->w32[3])
    [all...]
host_arm_isel.c     [all...]
guest_arm_helpers.c 77 /* (argL, argR, unused) */
79 UInt argR = cc_dep2;
80 UInt res = argL + argR;
85 UInt vf = lshift( (res ^ argL) & (res ^ argR),
89 // argL, argR, nf, zf, cf, vf);
93 /* (argL, argR, unused) */
95 UInt argR = cc_dep2;
96 UInt res = argL - argR;
100 UInt cf = lshift( argL >= argR, ARMG_CC_SHIFT_C );
101 UInt vf = lshift( (argL ^ argR) & (argL ^ res)
    [all...]