/toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/ |
pcr-relocs.s | 8 MVC .s2 PCE1, b0 22 MVC .s2 PCE1, b0
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-tic6x/ |
pcr-reloc.s | 9 MVC .s2 PCE1, b0 23 MVC .s2 PCE1, b0
|
/external/llvm/lib/Target/SystemZ/ |
SystemZSelectionDAGInfo.cpp | 24 // (such as MVC) and Loop is the opcode to use for loops (such as MVC_LOOP). 59 return emitMemMem(DAG, DL, SystemZISD::MVC, SystemZISD::MVC_LOOP, 139 // Copy the byte to the first location and then use MVC to copy 145 return emitMemMem(DAG, DL, SystemZISD::MVC, SystemZISD::MVC_LOOP,
|
SystemZInstrInfo.cpp | 225 // Check for MVC 0(Length,FI1),0(FI2) 227 if (MI->getOpcode() != SystemZ::MVC || 825 // of a simple load is being spilled. Try to use MVC instead. 827 // Although MVC is in practice a fast choice in these cases, it is still 829 // load or store is volatile. We also wouldn't be able to use MVC if 833 // For performance reasons, we also want to avoid using MVC if the addresses 843 get(SystemZ::MVC)) 854 get(SystemZ::MVC)) [all...] |
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.
|
SystemZISelLowering.cpp | 445 // We want to use MVC in preference to even a single load/store pair. 449 // The main memset sequence is a byte store followed by an MVC. 453 // than "STC;MVC". Handle the choice in target-specific code instead. [all...] |
/external/libvpx/libvpx/vp8/encoder/ |
mcomp.c | 194 #define MVC(r,c) (mvcost ? ((mvcost[0][(r)-rr] + mvcost[1][(c) - rc]) * error_per_bit + 128 )>>8 : 0) 203 #define ERR(r,c) (MVC(r,c)+DIST(r,c)) 205 #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;) 357 #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...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_mcomp.c | 159 #define MVC(r, c) \ 184 if ((v = MVC(r, c) + thismse) < besterr) { \ 792 #undef MVC [all...] |