/external/autotest/client/site_tests/graphics_VTSwitch/ |
D | control.100 | 11 - VT1 and VT2 are not sufficiently different. 13 - VT2 does not remain the same between VT switches. 25 Switches between VT1 and VT2 repeatedly and logs in/out of Chrome to make sure 27 sure each VT remains the same between VT switches, and that VT1 and VT2 are
|
D | control | 11 - VT1 and VT2 are not sufficiently different. 13 - VT2 does not remain the same between VT switches. 29 Switches between VT1 and VT2 repeatedly and logs in/out of Chrome to make sure 31 sure each VT remains the same between VT switches, and that VT1 and VT2 are
|
/external/llvm/include/llvm/CodeGen/ |
D | SelectionDAG.h | 422 SDVTList getVTList(EVT VT1, EVT VT2); 423 SDVTList getVTList(EVT VT1, EVT VT2, EVT VT3); 424 SDVTList getVTList(EVT VT1, EVT VT2, EVT VT3, EVT VT4); 939 SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, EVT VT1, EVT VT2); 941 EVT VT2, ArrayRef<SDValue> Ops); 943 EVT VT2, EVT VT3, ArrayRef<SDValue> Ops); 945 EVT VT2, EVT VT3, EVT VT4, ArrayRef<SDValue> Ops); 947 EVT VT2, SDValue Op1); 949 EVT VT2, SDValue Op1, SDValue Op2); 951 EVT VT2, SDValue Op1, SDValue Op2, SDValue Op3); [all …]
|
/external/llvm/lib/Target/MSP430/ |
D | MSP430ISelLowering.h | 110 bool isTruncateFree(EVT VT1, EVT VT2) const override; 121 bool isZExtFree(EVT VT1, EVT VT2) const override; 122 bool isZExtFree(SDValue Val, EVT VT2) const override;
|
D | MSP430ISelLowering.cpp | 1167 bool MSP430TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const { in isTruncateFree() 1168 if (!VT1.isInteger() || !VT2.isInteger()) in isTruncateFree() 1171 return (VT1.getSizeInBits() > VT2.getSizeInBits()); in isTruncateFree() 1179 bool MSP430TargetLowering::isZExtFree(EVT VT1, EVT VT2) const { in isZExtFree() 1181 return 0 && VT1 == MVT::i8 && VT2 == MVT::i16; in isZExtFree() 1184 bool MSP430TargetLowering::isZExtFree(SDValue Val, EVT VT2) const { in isZExtFree() 1185 return isZExtFree(Val.getValueType(), VT2); in isZExtFree()
|
/external/llvm/include/llvm/IR/ |
D | LegacyPassNameParser.h | 91 const PassNameParser::OptionInfo *VT2) { in ValLessThan() argument 92 return std::strcmp(VT1->Name, VT2->Name); in ValLessThan()
|
/external/eigen/unsupported/test/ |
D | FFTW.cpp | 28 template <typename VT1,typename VT2> 29 long double fft_rmse( const VT1 & fftbuf,const VT2 & timebuf) in fft_rmse() 50 template <typename VT1,typename VT2> 51 long double dif_rmse( const VT1 buf1,const VT2 buf2) in dif_rmse()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 1904 SDValue SelectionDAG::CreateStackTemporary(EVT VT1, EVT VT2) { in CreateStackTemporary() argument 1905 unsigned Bytes = std::max(VT1.getStoreSize(), VT2.getStoreSize()); in CreateStackTemporary() 1907 Type *Ty2 = VT2.getTypeForEVT(*getContext()); in CreateStackTemporary() 5627 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2) { in getVTList() argument 5631 ID.AddInteger(VT2.getRawBits()); in getVTList() 5638 Array[1] = VT2; in getVTList() 5645 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3) { in getVTList() argument 5649 ID.AddInteger(VT2.getRawBits()); in getVTList() 5657 Array[1] = VT2; in getVTList() 5665 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3, EVT VT4) { in getVTList() argument [all …]
|
/external/llvm/lib/Target/X86/ |
D | X86ISelLowering.h | 812 bool isTruncateFree(EVT VT1, EVT VT2) const override; 825 bool isZExtFree(EVT VT1, EVT VT2) const override; 826 bool isZExtFree(SDValue Val, EVT VT2) const override; 840 bool isNarrowingProfitable(EVT VT1, EVT VT2) const override;
|
D | X86ISelLowering.cpp | 20750 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const { in isTruncateFree() 20751 if (!VT1.isInteger() || !VT2.isInteger()) in isTruncateFree() 20754 unsigned NumBits2 = VT2.getSizeInBits(); in isTruncateFree() 20763 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const { in isZExtFree() 20765 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit(); in isZExtFree() 20768 bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const { in isZExtFree() 20770 if (isZExtFree(VT1, VT2)) in isZExtFree() 20777 !VT2.isSimple() || !VT2.isInteger()) in isZExtFree() 20815 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const { in isNarrowingProfitable() 20817 return !(VT1 == MVT::i32 && VT2 == MVT::i16); in isNarrowingProfitable()
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64ISelLowering.h | 286 bool isTruncateFree(EVT VT1, EVT VT2) const override; 291 bool isZExtFree(EVT VT1, EVT VT2) const override; 292 bool isZExtFree(SDValue Val, EVT VT2) const override;
|
D | AArch64ISelLowering.cpp | 6851 bool AArch64TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const { in isTruncateFree() 6852 if (VT1.isVector() || VT2.isVector() || !VT1.isInteger() || !VT2.isInteger()) in isTruncateFree() 6855 unsigned NumBits2 = VT2.getSizeInBits(); in isTruncateFree() 6897 bool AArch64TargetLowering::isZExtFree(EVT VT1, EVT VT2) const { in isZExtFree() 6898 if (VT1.isVector() || VT2.isVector() || !VT1.isInteger() || !VT2.isInteger()) in isZExtFree() 6901 unsigned NumBits2 = VT2.getSizeInBits(); in isZExtFree() 6905 bool AArch64TargetLowering::isZExtFree(SDValue Val, EVT VT2) const { in isZExtFree() 6907 if (isZExtFree(VT1, VT2)) { in isZExtFree() 6916 VT2.isSimple() && !VT2.isVector() && VT2.isInteger() && in isZExtFree()
|
/external/llvm/lib/Target/AMDGPU/ |
D | AMDGPUISelLowering.h | 123 bool isZExtFree(SDValue Val, EVT VT2) const override; 125 bool isNarrowingProfitable(EVT VT1, EVT VT2) const override;
|
D | AMDGPUISelLowering.cpp | 544 bool AMDGPUTargetLowering::isZExtFree(SDValue Val, EVT VT2) const { in isZExtFree() 545 return isZExtFree(Val.getValueType(), VT2); in isZExtFree()
|
/external/llvm/lib/Target/XCore/ |
D | XCoreISelLowering.h | 100 bool isZExtFree(SDValue Val, EVT VT2) const override;
|
D | XCoreISelLowering.cpp | 185 bool XCoreTargetLowering::isZExtFree(SDValue Val, EVT VT2) const { in isZExtFree() 191 !VT2.isSimple() || !VT2.isInteger()) in isZExtFree()
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCISelLowering.h | 593 bool isTruncateFree(EVT VT1, EVT VT2) const override; 595 bool isZExtFree(SDValue Val, EVT VT2) const override;
|
D | PPCISelLowering.cpp | 11450 bool PPCTargetLowering::isTruncateFree(EVT VT1, EVT VT2) const { in isTruncateFree() 11451 if (!VT1.isInteger() || !VT2.isInteger()) in isTruncateFree() 11454 unsigned NumBits2 = VT2.getSizeInBits(); in isTruncateFree() 11458 bool PPCTargetLowering::isZExtFree(SDValue Val, EVT VT2) const { in isZExtFree() 11475 return TargetLowering::isZExtFree(Val, VT2); in isZExtFree()
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonISelLowering.h | 115 bool isTruncateFree(EVT VT1, EVT VT2) const override;
|
D | HexagonISelLowering.cpp | 2068 bool HexagonTargetLowering::isTruncateFree(EVT VT1, EVT VT2) const { in isTruncateFree() 2069 if (!VT1.isSimple() || !VT2.isSimple()) in isTruncateFree() 2071 return (VT1.getSimpleVT() == MVT::i64) && (VT2.getSimpleVT() == MVT::i32); in isTruncateFree()
|
/external/llvm/include/llvm/Target/ |
D | TargetLowering.h | 797 MVT VT2; in getNumRegisters() local 799 return getVectorTypeBreakdown(Context, VT, VT1, NumIntermediates, VT2); in getNumRegisters() 1652 virtual bool isZExtFree(SDValue Val, EVT VT2) const { in isZExtFree() argument 1653 return isZExtFree(Val.getValueType(), VT2); in isZExtFree()
|
/external/llvm/lib/Target/ARM/ |
D | ARMISelLowering.h | 280 bool isZExtFree(SDValue Val, EVT VT2) const override;
|
D | ARMISelLowering.cpp | 10709 bool ARMTargetLowering::isZExtFree(SDValue Val, EVT VT2) const { in isZExtFree() 10715 !VT2.isSimple() || !VT2.isInteger()) in isZExtFree()
|
/external/llvm/lib/Transforms/Vectorize/ |
D | BBVectorize.cpp | 1043 *VT2 = getVecTypeForPair(IT2, JT2); in areInstsCompatible() local 1086 unsigned VCost = getInstrCost(I->getOpcode(), VT1, VT2, Op1VK, Op2VK); in areInstsCompatible() 1095 VParts2 = TTI->getNumberOfParts(VT2); in areInstsCompatible()
|