Home
last modified time | relevance | path

Searched refs:CV (Results 1 – 25 of 568) sorted by relevance

12345678910>>...23

/external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/
DValueHandleTest.cpp83 Value *CV = ConstantV; in TEST_F() local
84 EXPECT_EQ(BV < CV, BitcastWVH < ConstantWVH); in TEST_F()
85 EXPECT_EQ(BV <= CV, BitcastWVH <= ConstantWVH); in TEST_F()
86 EXPECT_EQ(BV > CV, BitcastWVH > ConstantWVH); in TEST_F()
87 EXPECT_EQ(BV >= CV, BitcastWVH >= ConstantWVH); in TEST_F()
89 EXPECT_EQ(BV < CV, BitcastV.get() < ConstantWVH); in TEST_F()
90 EXPECT_EQ(BV <= CV, BitcastV.get() <= ConstantWVH); in TEST_F()
91 EXPECT_EQ(BV > CV, BitcastV.get() > ConstantWVH); in TEST_F()
92 EXPECT_EQ(BV >= CV, BitcastV.get() >= ConstantWVH); in TEST_F()
94 EXPECT_EQ(BV < CV, BitcastWVH < ConstantV); in TEST_F()
[all …]
/external/swiftshader/third_party/LLVM/unittests/Support/
DValueHandleTest.cpp69 Value *CV = ConstantV; in TEST_F() local
70 EXPECT_EQ(BV < CV, BitcastWVH < ConstantWVH); in TEST_F()
71 EXPECT_EQ(BV <= CV, BitcastWVH <= ConstantWVH); in TEST_F()
72 EXPECT_EQ(BV > CV, BitcastWVH > ConstantWVH); in TEST_F()
73 EXPECT_EQ(BV >= CV, BitcastWVH >= ConstantWVH); in TEST_F()
75 EXPECT_EQ(BV < CV, BitcastV.get() < ConstantWVH); in TEST_F()
76 EXPECT_EQ(BV <= CV, BitcastV.get() <= ConstantWVH); in TEST_F()
77 EXPECT_EQ(BV > CV, BitcastV.get() > ConstantWVH); in TEST_F()
78 EXPECT_EQ(BV >= CV, BitcastV.get() >= ConstantWVH); in TEST_F()
80 EXPECT_EQ(BV < CV, BitcastWVH < ConstantV); in TEST_F()
[all …]
/external/llvm/unittests/IR/
DValueHandleTest.cpp65 Value *CV = ConstantV; in TEST_F() local
66 EXPECT_EQ(BV < CV, BitcastWVH < ConstantWVH); in TEST_F()
67 EXPECT_EQ(BV <= CV, BitcastWVH <= ConstantWVH); in TEST_F()
68 EXPECT_EQ(BV > CV, BitcastWVH > ConstantWVH); in TEST_F()
69 EXPECT_EQ(BV >= CV, BitcastWVH >= ConstantWVH); in TEST_F()
71 EXPECT_EQ(BV < CV, BitcastV.get() < ConstantWVH); in TEST_F()
72 EXPECT_EQ(BV <= CV, BitcastV.get() <= ConstantWVH); in TEST_F()
73 EXPECT_EQ(BV > CV, BitcastV.get() > ConstantWVH); in TEST_F()
74 EXPECT_EQ(BV >= CV, BitcastV.get() >= ConstantWVH); in TEST_F()
76 EXPECT_EQ(BV < CV, BitcastWVH < ConstantV); in TEST_F()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DScalarizer.cpp194 void gather(Instruction *Op, const ValueVector &CV);
196 void transferMetadata(Instruction *Op, const ValueVector &CV);
236 ValueVector &CV = (CachePtr ? *CachePtr : Tmp); in operator []() local
238 if (CV[I]) in operator []()
239 return CV[I]; in operator []()
242 if (!CV[0]) { in operator []()
246 CV[0] = Builder.CreateBitCast(V, Ty, V->getName() + ".i0"); in operator []()
249 CV[I] = Builder.CreateConstGEP1_32(nullptr, CV[0], I, in operator []()
265 CV[J] = Insert->getOperand(1); in operator []()
266 return CV[J]; in operator []()
[all …]
/external/llvm/lib/Transforms/Scalar/
DScalarizer.cpp202 ValueVector &CV = (CachePtr ? *CachePtr : Tmp); in operator []() local
204 if (CV[I]) in operator []()
205 return CV[I]; in operator []()
208 if (!CV[0]) { in operator []()
212 CV[0] = Builder.CreateBitCast(V, Ty, V->getName() + ".i0"); in operator []()
215 CV[I] = Builder.CreateConstGEP1_32(nullptr, CV[0], I, in operator []()
231 CV[J] = Insert->getOperand(1); in operator []()
232 return CV[J]; in operator []()
233 } else if (!CV[J]) { in operator []()
237 CV[J] = Insert->getOperand(1); in operator []()
[all …]
/external/python/cpython3/Lib/test/
Dann_module2.py33 class CV: class
36 CV.var = CV()
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DELFWriter.cpp448 void ELFWriter::EmitGlobalConstant(const Constant *CV, ELFSection &GblS) { in EmitGlobalConstant() argument
450 unsigned Size = TD->getTypeAllocSize(CV->getType()); in EmitGlobalConstant()
452 if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV)) { in EmitGlobalConstant()
456 } else if (isa<ConstantAggregateZero>(CV)) { in EmitGlobalConstant()
459 } else if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV)) { in EmitGlobalConstant()
462 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) { in EmitGlobalConstant()
475 } else if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) { in EmitGlobalConstant()
485 } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(CV)) { in EmitGlobalConstant()
490 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) { in EmitGlobalConstant()
506 } else if (CV->getType()->getTypeID() == Type::PointerTyID) { in EmitGlobalConstant()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
DNativeEnumSymbol.cpp24 : NativeRawSymbol(Session, Id), CV(CVT), in NativeEnumSymbol()
26 assert(CV.kind() == codeview::TypeLeafKind::LF_ENUM); in NativeEnumSymbol()
27 cantFail(visitTypeRecord(CV, *this)); in NativeEnumSymbol()
33 return llvm::make_unique<NativeEnumSymbol>(Session, SymbolId, CV); in clone()
/external/spirv-llvm/lib/SPIRV/libSPIRV/
DSPIRVType.h144 SPIRVCapVec CV; in getRequiredCapability() local
146 CV.push_back(CapabilityInt16); in getRequiredCapability()
148 CV.push_back(CapabilityInt64); in getRequiredCapability()
149 return CV; in getRequiredCapability()
175 SPIRVCapVec CV; in getRequiredCapability() local
177 CV.push_back(CapabilityFloat16); in getRequiredCapability()
179 CV.push_back(CapabilityFloat64); in getRequiredCapability()
180 return CV; in getRequiredCapability()
420 SPIRVCapVec CV; in getRequiredCapability() local
421 CV.push_back(CapabilityImageBasic); in getRequiredCapability()
[all …]
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DAsmPrinter.cpp1408 static const MCExpr *LowerConstant(const Constant *CV, AsmPrinter &AP) { in LowerConstant() argument
1411 if (CV->isNullValue() || isa<UndefValue>(CV)) in LowerConstant()
1414 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) in LowerConstant()
1417 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) in LowerConstant()
1420 if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV)) in LowerConstant()
1423 const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV); in LowerConstant()
1484 Op = ConstantExpr::getIntegerCast(Op, TD.getIntPtrType(CV->getContext()), in LowerConstant()
1616 static void EmitGlobalConstantVector(const ConstantVector *CV, in EmitGlobalConstantVector() argument
1618 for (unsigned i = 0, e = CV->getType()->getNumElements(); i != e; ++i) in EmitGlobalConstantVector()
1619 EmitGlobalConstantImpl(CV->getOperand(i), AddrSpace, AP); in EmitGlobalConstantVector()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
DAMDGPUMCInstLower.cpp213 const Constant *CV, in lowerAddrSpaceCast() argument
219 auto *CE = dyn_cast<ConstantExpr>(CV); in lowerAddrSpaceCast()
236 const MCExpr *AMDGPUAsmPrinter::lowerConstant(const Constant *CV) { in lowerConstant() argument
237 if (const MCExpr *E = lowerAddrSpaceCast(TM, CV, OutContext)) in lowerConstant()
239 return AsmPrinter::lowerConstant(CV); in lowerConstant()
377 const MCExpr *R600AsmPrinter::lowerConstant(const Constant *CV) { in lowerConstant() argument
378 if (const MCExpr *E = lowerAddrSpaceCast(TM, CV, OutContext)) in lowerConstant()
380 return AsmPrinter::lowerConstant(CV); in lowerConstant()
/external/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinter.cpp1742 const MCExpr *AsmPrinter::lowerConstant(const Constant *CV) { in lowerConstant() argument
1745 if (CV->isNullValue() || isa<UndefValue>(CV)) in lowerConstant()
1748 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) in lowerConstant()
1751 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) in lowerConstant()
1754 if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV)) in lowerConstant()
1757 const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV); in lowerConstant()
1809 Op = ConstantExpr::getIntegerCast(Op, DL.getIntPtrType(CV->getType()), in lowerConstant()
2007 const ConstantVector *CV, AsmPrinter &AP) { in emitGlobalConstantVector() argument
2008 for (unsigned i = 0, e = CV->getType()->getNumElements(); i != e; ++i) in emitGlobalConstantVector()
2009 emitGlobalConstantImpl(DL, CV->getOperand(i), AP); in emitGlobalConstantVector()
[all …]
/external/clang/test/Sema/
Dms_class_layout.cpp134 struct CV : virtual BV { struct
135 CV();
140 struct EV : CV, DV {
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DConstants.cpp45 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this)) in isNegativeZeroValue() local
46 if (CV->getElementType()->isFloatingPointTy() && CV->isSplat()) in isNegativeZeroValue()
47 if (CV->getElementAsAPFloat(0).isNegZero()) in isNegativeZeroValue()
50 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this)) in isNegativeZeroValue() local
51 if (ConstantFP *SplatCFP = dyn_cast_or_null<ConstantFP>(CV->getSplatValue())) in isNegativeZeroValue()
71 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this)) in isZeroValue() local
72 if (CV->getElementType()->isFloatingPointTy() && CV->isSplat()) in isZeroValue()
73 if (CV->getElementAsAPFloat(0).isZero()) in isZeroValue()
76 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this)) in isZeroValue() local
77 if (ConstantFP *SplatCFP = dyn_cast_or_null<ConstantFP>(CV->getSplatValue())) in isZeroValue()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinter.cpp2042 const MCExpr *AsmPrinter::lowerConstant(const Constant *CV) { in lowerConstant() argument
2045 if (CV->isNullValue() || isa<UndefValue>(CV)) in lowerConstant()
2048 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) in lowerConstant()
2051 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) in lowerConstant()
2054 if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV)) in lowerConstant()
2057 const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV); in lowerConstant()
2109 Op = ConstantExpr::getIntegerCast(Op, DL.getIntPtrType(CV->getType()), in lowerConstant()
2308 const ConstantVector *CV, AsmPrinter &AP) { in emitGlobalConstantVector() argument
2309 for (unsigned i = 0, e = CV->getType()->getNumElements(); i != e; ++i) in emitGlobalConstantVector()
2310 emitGlobalConstantImpl(DL, CV->getOperand(i), AP); in emitGlobalConstantVector()
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DPatternMatch.h100 if (ConstantVector *CV = dyn_cast<ConstantVector>(V)) in match() local
102 dyn_cast_or_null<ConstantInt>(CV->getSplatValue())) { in match()
146 if (const ConstantVector *CV = dyn_cast<ConstantVector>(V)) in match() local
147 if (ConstantInt *CI = dyn_cast_or_null<ConstantInt>(CV->getSplatValue())) in match()
166 if (const ConstantVector *CV = dyn_cast<ConstantVector>(V)) in match() local
167 if (ConstantInt *CI = dyn_cast_or_null<ConstantInt>(CV->getSplatValue())) in match()
216 if (Class *CV = dyn_cast<Class>(V)) { in match() local
217 VR = CV; in match()
253 if (ConstantInt *CV = dyn_cast<ConstantInt>(V)) in match() local
254 if (CV->getBitWidth() <= 64) { in match()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/BPF/
DBPFISelDAGToDAG.cpp86 bool fillGenericConstant(const DataLayout &DL, const Constant *CV,
421 const Constant *CV, in fillGenericConstant() argument
423 uint64_t Size = DL.getTypeAllocSize(CV->getType()); in fillGenericConstant()
425 if (isa<ConstantAggregateZero>(CV) || isa<UndefValue>(CV)) in fillGenericConstant()
428 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) { in fillGenericConstant()
445 if (const ConstantDataArray *CDA = dyn_cast<ConstantDataArray>(CV)) in fillGenericConstant()
448 if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) in fillGenericConstant()
451 if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV)) in fillGenericConstant()
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/
Drx-flat_map.hpp62 template<class CV, class CCS>
63 static auto collection_check(int) -> decltype((*(CCS*)nullptr)(*(CV*)nullptr));
64 template<class CV, class CCS>
75 template<class CV, class CCV, class CRS>
76 static auto result_check(int) -> decltype((*(CRS*)nullptr)(*(CV*)nullptr, *(CCV*)nullptr));
77 template<class CV, class CCV, class CRS>
Drx-concat_map.hpp62 template<class CV, class CCS>
63 static auto collection_check(int) -> decltype((*(CCS*)nullptr)(*(CV*)nullptr));
64 template<class CV, class CCS>
77 template<class CV, class CCV, class CRS>
78 static auto result_check(int) -> decltype((*(CRS*)nullptr)(*(CV*)nullptr, *(CCV*)nullptr));
79 template<class CV, class CCV, class CRS>
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AMDGPU/GlobalISel/
Dinst-select-ashr.mir74 ; SI: [[CV:%[0-9]+]]:vgpr_32 = V_ASHR_I32_e32 [[C4096]], [[VI]]
75 ; VI: [[CV:%[0-9]+]]:vgpr_32 = V_ASHRREV_I32_e64 [[VI]], [[C4096]]
79 ; GCN: [[VC:%[-1-9]+]]:vgpr_32 = V_ASHRREV_I32_e32 [[C4096]], [[CV]]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/Native/
DNativeEnumSymbol.h25 const codeview::CVType &CV);
53 codeview::CVType CV;
/external/icu/icu4c/source/data/unit/
Des_US.txt191 dnam{"CV"}
192 one{"{0} CV"}
193 other{"{0} CV"}
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ExecutionEngine/Orc/
DQueueChannel.h53 std::condition_variable &getCondVar() { return CV; } in getCondVar()
61 CV.notify_one(); in setReadError()
69 std::condition_variable CV; variable
/external/llvm/include/llvm/CodeGen/
DAsmPrinter.h260 virtual const MCExpr *lowerConstant(const Constant *CV);
263 void EmitGlobalConstant(const DataLayout &DL, const Constant *CV);
326 virtual void EmitXXStructor(const DataLayout &DL, const Constant *CV) { in EmitXXStructor() argument
327 EmitGlobalConstant(DL, CV); in EmitXXStructor()
/external/llvm/lib/Target/WebAssembly/
DWebAssemblyAsmPrinter.cpp76 const MCExpr *lowerConstant(const Constant *CV) override;
265 const MCExpr *WebAssemblyAsmPrinter::lowerConstant(const Constant *CV) { in lowerConstant() argument
266 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) in lowerConstant()
270 return AsmPrinter::lowerConstant(CV); in lowerConstant()

12345678910>>...23