/external/llvm/unittests/IR/ |
D | ValueHandleTest.cpp | 65 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/llvm/lib/Transforms/Scalar/ |
D | Scalarizer.cpp | 203 ValueVector &CV = (CachePtr ? *CachePtr : Tmp); in operator []() local 205 if (CV[I]) in operator []() 206 return CV[I]; in operator []() 209 if (!CV[0]) { in operator []() 213 CV[0] = Builder.CreateBitCast(V, Ty, V->getName() + ".i0"); in operator []() 216 CV[I] = Builder.CreateConstGEP1_32(nullptr, CV[0], I, in operator []() 232 CV[J] = Insert->getOperand(1); in operator []() 233 return CV[J]; in operator []() 234 } else if (!CV[J]) { in operator []() 238 CV[J] = Insert->getOperand(1); in operator []() [all …]
|
/external/clang/test/Sema/ |
D | ms_class_layout.cpp | 134 struct CV : virtual BV { struct 135 CV(); 140 struct EV : CV, DV {
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | AsmPrinter.cpp | 1707 const MCExpr *AsmPrinter::lowerConstant(const Constant *CV) { in lowerConstant() argument 1710 if (CV->isNullValue() || isa<UndefValue>(CV)) in lowerConstant() 1713 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) in lowerConstant() 1716 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) in lowerConstant() 1719 if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV)) in lowerConstant() 1722 const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV); in lowerConstant() 1778 Op = ConstantExpr::getIntegerCast(Op, DL.getIntPtrType(CV->getType()), in lowerConstant() 1952 const ConstantVector *CV, AsmPrinter &AP) { in emitGlobalConstantVector() argument 1953 for (unsigned i = 0, e = CV->getType()->getNumElements(); i != e; ++i) in emitGlobalConstantVector() 1954 emitGlobalConstantImpl(DL, CV->getOperand(i), AP); in emitGlobalConstantVector() [all …]
|
/external/valgrind/drd/tests/ |
D | tsan_unittest.cpp | 131 CondVar CV; variable 385 CV.Signal(); in Waker() 396 CV.Wait(&MU); in Waiter() 513 CV.Signal(); in Waker() 525 CV.Wait(&MU); in Waiter() 565 CV.Signal(); in Waker() 577 CV.Wait(&MU); in Waiter() 578 ANNOTATE_CONDVAR_LOCK_WAIT(&CV, &MU); in Waiter() 755 CV.Signal(); in Worker() 767 CV.Wait(&MU); in Parent() [all …]
|
/external/libcxx/test/std/utilities/function.objects/func.require/ |
D | bullet_1_and_2.pass.cpp | 134 template <class ClassType, class CallSig, int Arity, class CV, 156 CV tag; in doTest() 216 template <class Sig, int Arity, class CV> 217 struct TestCase : public TestCaseImp<MemFun03, Sig, Arity, CV> {}; 220 template <class Sig, int Arity, class CV, bool RValue = false> 221 struct TestCase11 : public TestCaseImp<MemFun11, Sig, Arity, CV, RValue, true> {};
|
D | bullet_5.pass.cpp | 139 #define F(CV) \ argument 141 R operator()(Args&&...) CV { return MethodID<R(C::*)(Args&&...) CV>::setUncheckedCall(); }
|
/external/llvm/include/llvm/CodeGen/ |
D | AsmPrinter.h | 257 const MCExpr *lowerConstant(const Constant *CV); 260 void EmitGlobalConstant(const DataLayout &DL, const Constant *CV); 323 virtual void EmitXXStructor(const DataLayout &DL, const Constant *CV) { in EmitXXStructor() argument 324 EmitGlobalConstant(DL, CV); in EmitXXStructor()
|
/external/llvm/lib/IR/ |
D | Constants.cpp | 51 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this)) in isNegativeZeroValue() local 52 if (ConstantFP *SplatCFP = dyn_cast_or_null<ConstantFP>(CV->getSplatValue())) in isNegativeZeroValue() 56 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this)) in isNegativeZeroValue() local 57 if (ConstantFP *SplatCFP = dyn_cast_or_null<ConstantFP>(CV->getSplatValue())) in isNegativeZeroValue() 77 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this)) in isZeroValue() local 78 if (ConstantFP *SplatCFP = dyn_cast_or_null<ConstantFP>(CV->getSplatValue())) in isZeroValue() 82 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this)) in isZeroValue() local 83 if (ConstantFP *SplatCFP = dyn_cast_or_null<ConstantFP>(CV->getSplatValue())) in isZeroValue() 116 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this)) in isAllOnesValue() local 117 if (Constant *Splat = CV->getSplatValue()) in isAllOnesValue() [all …]
|
D | AsmWriter.cpp | 1084 static void WriteConstantInternal(raw_ostream &Out, const Constant *CV, in WriteConstantInternal() argument 1088 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) { in WriteConstantInternal() 1097 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) { in WriteConstantInternal() 1177 if (isa<ConstantAggregateZero>(CV)) { in WriteConstantInternal() 1182 if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV)) { in WriteConstantInternal() 1193 if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) { in WriteConstantInternal() 1212 if (const ConstantDataArray *CA = dyn_cast<ConstantDataArray>(CV)) { in WriteConstantInternal() 1241 if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) { in WriteConstantInternal() 1271 if (isa<ConstantVector>(CV) || isa<ConstantDataVector>(CV)) { in WriteConstantInternal() 1272 Type *ETy = CV->getType()->getVectorElementType(); in WriteConstantInternal() [all …]
|
/external/eigen/blas/testing/ |
D | zblat1.f | 90 COMPLEX*16 CTRUE5(8,5,2), CTRUE6(8,5,2), CV(8,5,2), CX(8), local 106 DATA ((CV(I,J,1),I=1,8),J=1,5)/(0.1D0,0.1D0), 120 DATA ((CV(I,J,2),I=1,8),J=1,5)/(0.1D0,0.1D0), 206 CX(I) = CV(I,NP1,INCX)
|
/external/cblas/testing/ |
D | c_zblat1.f | 90 COMPLEX*16 CTRUE5(8,5,2), CTRUE6(8,5,2), CV(8,5,2), CX(8), local 106 DATA ((CV(I,J,1),I=1,8),J=1,5)/(0.1D0,0.1D0), 120 DATA ((CV(I,J,2),I=1,8),J=1,5)/(0.1D0,0.1D0), 206 CX(I) = CV(I,NP1,INCX)
|
/external/clang/test/SemaCXX/ |
D | addr-of-overloaded-function.cpp | 215 void CV() const volatile {}; in CV() function 227 …X = &Qualifiers::CV; // expected-error-re{{assigning to 'void (test1::Qualifiers::*)(){{( __attrib… in QualifierTest()
|
/external/llvm/lib/ExecutionEngine/ |
D | ExecutionEngine.cpp | 921 const ConstantVector *CV = dyn_cast<ConstantVector>(C); in getConstantValue() local 927 } else if (CV || CAZ) { in getConstantValue() 945 if(CV) { in getConstantValue() 947 if (!isa<UndefValue>(CV->getOperand(i))) in getConstantValue() 949 CV->getOperand(i))->getValueAPF().convertToFloat(); in getConstantValue() 967 if(CV) { in getConstantValue() 969 if (!isa<UndefValue>(CV->getOperand(i))) in getConstantValue() 971 CV->getOperand(i))->getValueAPF().convertToDouble(); in getConstantValue() 989 if(CV) { in getConstantValue() 991 if (!isa<UndefValue>(CV->getOperand(i))) in getConstantValue() [all …]
|
/external/llvm/lib/Analysis/ |
D | BranchProbabilityInfo.cpp | 401 ConstantInt *CV = dyn_cast<ConstantInt>(RHS); in calcZeroHeuristics() local 402 if (!CV) in calcZeroHeuristics() 414 if (CV->isZero()) { in calcZeroHeuristics() 435 } else if (CV->isOne() && CI->getPredicate() == CmpInst::ICMP_SLT) { in calcZeroHeuristics() 439 } else if (CV->isAllOnesValue()) { in calcZeroHeuristics()
|
/external/llvm/lib/Target/CppBackend/ |
D | CPPBackend.cpp | 726 void CppWriter::printConstant(const Constant *CV) { in printConstant() argument 730 if (isa<GlobalValue>(CV) || ValueNames.find(CV) != ValueNames.end()) in printConstant() 733 std::string constName(getCppName(CV)); in printConstant() 734 std::string typeName(getCppName(CV->getType())); in printConstant() 736 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) { in printConstant() 742 } else if (isa<ConstantAggregateZero>(CV)) { in printConstant() 745 } else if (isa<ConstantPointerNull>(CV)) { in printConstant() 748 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) { in printConstant() 752 } else if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) { in printConstant() 764 } else if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) { in printConstant() [all …]
|
/external/valgrind/none/tests/arm64/ |
D | integer.stdout.exp | 57 …, x4, x5 :: rd 0000000000000001 rm 8000000000000000, rn 8000000000000000, cin 1, nzcv 30000000 CV 75 …, w4, w5 :: rd 0000000000000001 rm 0000000080000000, rn 0000000080000000, cin 1, nzcv 30000000 CV 124 …, x4, x5 :: rd 7fffffffffffffff rm 8000000000000000, rn 0000000000000000, cin 0, nzcv 30000000 CV 142 …, w4, w5 :: rd 000000007fffffff rm 0000000080000000, rn 0000000000000000, cin 0, nzcv 30000000 CV 168 …x3, nzcv :: rd 0000000030000000 rm 9b14b0a4fbbd2c11, rn 6b5bac44aaa93980, cin 0, nzcv 30000000 CV 193 …x3, nzcv :: rd 0000000030000000 rm 401b30e3b8b5d629, rn 635a5c613cdb7919, cin 0, nzcv 30000000 CV 851 …7,x18,eq :: rd 7a6c3d1a51246495 rm afa6ef803bc9291c, rn 7a6c3d1a51246495, cin 0, nzcv 30000000 CV 852 …7,x18,ne :: rd afa6ef803bc9291c rm afa6ef803bc9291c, rn 7a6c3d1a51246495, cin 0, nzcv 30000000 CV 853 …7,x18,cc :: rd 7a6c3d1a51246495 rm afa6ef803bc9291c, rn 7a6c3d1a51246495, cin 0, nzcv 30000000 CV 854 …7,x18,cs :: rd afa6ef803bc9291c rm afa6ef803bc9291c, rn 7a6c3d1a51246495, cin 0, nzcv 30000000 CV [all …]
|
/external/mesa3d/src/gallium/drivers/radeon/ |
D | AMDILPeepholeOptimizer.cpp | 243 Constant *CV = dyn_cast<Constant>(CI->getOperand(0)); in doIsConstCallConversionIfNeeded() local 245 Value *Val = (CV != NULL) ? ConstantInt::get(aType, 1) in doIsConstCallConversionIfNeeded() 337 Constant *CV = dyn_cast<Constant>(CI->getOperand(0)); in optimizeCallInst() local 339 Value *Val = (CV != NULL) ? ConstantInt::get(aType, 1) in optimizeCallInst() 349 ConstantInt *CV = dyn_cast<ConstantInt>(CI->getOperand(0)); in optimizeCallInst() local 351 Value *Val = CV; in optimizeCallInst() 354 mSTM->device()->getDeviceFlag() & CV->getZExtValue()); in optimizeCallInst()
|
/external/llvm/lib/Transforms/Utils/ |
D | LoopUtils.cpp | 685 ConstantInt *CV = C->getValue(); in isInductionPHI() local 687 D = InductionDescriptor(StartValue, IK_IntInduction, CV); in isInductionPHI() 703 int64_t CVSize = CV->getSExtValue(); in isInductionPHI() 706 auto *StepValue = ConstantInt::getSigned(CV->getType(), CVSize / Size); in isInductionPHI()
|
/external/icu/icu4c/source/data/region/ |
D | zh_Hant_HK.txt | 33 CV{"佛得角"}
|
D | nus.txt | 52 CV{"Kɛp bedi ɣa̱ylɛn"}
|
D | chr.txt | 65 CV{"ᎢᎬᎾᏕᎾ ᎢᏤᏳᏍᏗ"}
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXAsmPrinter.h | 241 const MCExpr *lowerConstantForGV(const Constant *CV, bool ProcessingGeneric); 282 void bufferAggregateConstant(const Constant *CV, AggBuffer *aggBuffer);
|
/external/llvm/lib/Target/ARM/ |
D | ARMAsmPrinter.h | 92 void EmitXXStructor(const DataLayout &DL, const Constant *CV) override;
|
/external/clang/lib/Analysis/ |
D | ThreadSafetyCommon.cpp | 475 til::SExpr *CV = nullptr; in translateBinAssign() local 478 CV = lookupVarDecl(VD); in translateBinAssign() 482 til::SExpr *Arg = CV ? CV : new (Arena) til::Load(E0); in translateBinAssign() 486 if (VD && CV) in translateBinAssign()
|