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

  /external/llvm/lib/Target/SystemZ/
SystemZSelectionDAGInfo.cpp 30 // (such as MVC) and Loop is the opcode to use for loops (such as MVC_LOOP).
65 return emitMemMem(DAG, DL, SystemZISD::MVC, SystemZISD::MVC_LOOP,
144 // Copy the byte to the first location and then use MVC to copy
150 return emitMemMem(DAG, DL, SystemZISD::MVC, SystemZISD::MVC_LOOP,
SystemZISelLowering.h 110 MVC,
112 // Like MVC, but implemented as a loop that handles X*256 bytes
117 // Similar to MVC and MVC_LOOP, but for logic operations (AND, OR, XOR).
126 // as for MVC and MVC_LOOP.
SystemZInstrInfo.cpp 219 // Check for MVC 0(Length,FI1),0(FI2)
221 if (MI->getOpcode() != SystemZ::MVC ||
810 // of a simple load is being spilled. Try to use MVC instead.
812 // Although MVC is in practice a fast choice in these cases, it is still
814 // load or store is volatile. We also wouldn't be able to use MVC if
818 // For performance reasons, we also want to avoid using MVC if the addresses
827 return BuildMI(MF, MI->getDebugLoc(), get(SystemZ::MVC))
834 return BuildMI(MF, MI->getDebugLoc(), get(SystemZ::MVC))
    [all...]
SystemZISelLowering.cpp 311 // We want to use MVC in preference to even a single load/store pair.
315 // The main memset sequence is a byte store followed by an MVC.
319 // than "STC;MVC". Handle the choice in target-specific code instead.
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_mcomp.c 158 #define MVC(r, c) \
183 if ((v = MVC(r, c) + thismse) < besterr) { \
364 #undef MVC
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
mcomp.c 191 #define MVC(r,c) (mvcost ? ((mvcost[0][(r)-rr] + mvcost[1][(c) - rc]) * error_per_bit + 128 )>>8 : 0)
200 #define ERR(r,c) (MVC(r,c)+DIST(r,c))
202 #define CHECK_BETTER(v,r,c) IFMVCV(r,c,{thismse = DIST(r,c); if((v = (MVC(r,c)+thismse)) < besterr) { besterr = v; br=r; bc=c; *distortion = thismse; *sse1 = sse; }}, v=UINT_MAX;)
354 #undef MVC
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
mcomp.c 190 #define MVC(r,c) (mvcost ? ((mvcost[0][(r)-rr] + mvcost[1][(c) - rc]) * error_per_bit + 128 )>>8 : 0)
199 #define ERR(r,c) (MVC(r,c)+DIST(r,c))
201 #define CHECK_BETTER(v,r,c) IFMVCV(r,c,{thismse = DIST(r,c); if((v = (MVC(r,c)+thismse)) < besterr) { besterr = v; br=r; bc=c; *distortion = thismse; *sse1 = sse; }}, v=UINT_MAX;)
353 #undef MVC
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_mcomp.c 161 #define MVC(r, c) \
187 if ((v = MVC(r, c) + thismse) < besterr) { \
460 #undef MVC
    [all...]

Completed in 239 milliseconds