/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 | 199 ValueVector &CV = (CachePtr ? *CachePtr : Tmp); in operator []() local 201 if (CV[I]) in operator []() 202 return CV[I]; in operator []() 205 if (!CV[0]) { in operator []() 209 CV[0] = Builder.CreateBitCast(V, Ty, V->getName() + ".i0"); in operator []() 212 CV[I] = Builder.CreateConstGEP1_32(CV[0], I, in operator []() 226 CV[J] = Insert->getOperand(1); in operator []() 229 return CV[J]; in operator []() 231 CV[I] = Builder.CreateExtractElement(V, Builder.getInt32(I), in operator []() 234 return CV[I]; 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 | 872 static const MCExpr *lowerConstant(const Constant *CV, AsmPrinter &AP); 1550 static const MCExpr *lowerConstant(const Constant *CV, AsmPrinter &AP) { in lowerConstant() argument 1553 if (CV->isNullValue() || isa<UndefValue>(CV)) in lowerConstant() 1556 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) in lowerConstant() 1559 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) in lowerConstant() 1562 if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV)) in lowerConstant() 1565 const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV); in lowerConstant() 1623 Op = ConstantExpr::getIntegerCast(Op, DL.getIntPtrType(CV->getType()), in lowerConstant() 1820 static void emitGlobalConstantVector(const ConstantVector *CV, AsmPrinter &AP) { in emitGlobalConstantVector() argument 1821 for (unsigned i = 0, e = CV->getType()->getNumElements(); i != e; ++i) in emitGlobalConstantVector() [all …]
|
/external/valgrind/main/drd/tests/ |
D | tsan_unittest.cpp | 127 CondVar CV; variable 381 CV.Signal(); in Waker() 392 CV.Wait(&MU); in Waiter() 509 CV.Signal(); in Waker() 521 CV.Wait(&MU); in Waiter() 561 CV.Signal(); in Waker() 573 CV.Wait(&MU); in Waiter() 574 ANNOTATE_CONDVAR_LOCK_WAIT(&CV, &MU); in Waiter() 751 CV.Signal(); in Worker() 763 CV.Wait(&MU); in Parent() [all …]
|
/external/llvm/lib/IR/ |
D | AsmWriter.cpp | 765 static void WriteConstantInternal(raw_ostream &Out, const Constant *CV, in WriteConstantInternal() argument 769 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) { in WriteConstantInternal() 778 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) { in WriteConstantInternal() 890 if (isa<ConstantAggregateZero>(CV)) { in WriteConstantInternal() 895 if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV)) { in WriteConstantInternal() 906 if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) { in WriteConstantInternal() 925 if (const ConstantDataArray *CA = dyn_cast<ConstantDataArray>(CV)) { in WriteConstantInternal() 954 if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) { in WriteConstantInternal() 984 if (isa<ConstantVector>(CV) || isa<ConstantDataVector>(CV)) { in WriteConstantInternal() 985 Type *ETy = CV->getType()->getVectorElementType(); in WriteConstantInternal() [all …]
|
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() 98 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this)) in isAllOnesValue() local 99 if (Constant *Splat = CV->getSplatValue()) in isAllOnesValue() 103 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this)) in isAllOnesValue() local 104 if (Constant *Splat = CV->getSplatValue()) in isAllOnesValue() 120 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this)) in isMinSignedValue() local 121 if (Constant *Splat = CV->getSplatValue()) in isMinSignedValue() 125 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this)) in isMinSignedValue() local 126 if (Constant *Splat = CV->getSplatValue()) in isMinSignedValue() [all …]
|
/external/llvm/include/llvm/CodeGen/ |
D | AsmPrinter.h | 242 void EmitGlobalConstant(const Constant *CV); 281 virtual void EmitXXStructor(const Constant *CV) { EmitGlobalConstant(CV); } in EmitXXStructor() argument
|
/external/clang/test/SemaCXX/ |
D | addr-of-overloaded-function.cpp | 214 void CV() const volatile {}; in CV() function 226 …X = &Qualifiers::CV; // expected-error-re{{assigning to 'void (test1::Qualifiers::*)(){{( __attrib… in QualifierTest()
|
/external/llvm/lib/ExecutionEngine/ |
D | ExecutionEngine.cpp | 903 const ConstantVector *CV = dyn_cast<ConstantVector>(C); in getConstantValue() local 909 } else if (CV || CAZ) { in getConstantValue() 927 if(CV) { in getConstantValue() 929 if (!isa<UndefValue>(CV->getOperand(i))) in getConstantValue() 931 CV->getOperand(i))->getValueAPF().convertToFloat(); in getConstantValue() 949 if(CV) { in getConstantValue() 951 if (!isa<UndefValue>(CV->getOperand(i))) in getConstantValue() 953 CV->getOperand(i))->getValueAPF().convertToDouble(); in getConstantValue() 971 if(CV) { in getConstantValue() 973 if (!isa<UndefValue>(CV->getOperand(i))) in getConstantValue() [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/llvm/lib/Analysis/ |
D | BranchProbabilityInfo.cpp | 376 ConstantInt *CV = dyn_cast<ConstantInt>(RHS); in calcZeroHeuristics() local 377 if (!CV) in calcZeroHeuristics() 381 if (CV->isZero()) { in calcZeroHeuristics() 402 } else if (CV->isOne() && CI->getPredicate() == CmpInst::ICMP_SLT) { in calcZeroHeuristics() 406 } else if (CV->isAllOnesValue()) { in calcZeroHeuristics()
|
/external/chromium_org/third_party/icu/source/data/curr/ |
D | ig.txt | 15 "CV$",
|
D | shi_Tfng.txt | 56 "CV$",
|
D | am.txt | 55 "CV$",
|
/external/icu/icu4c/source/data/region/ |
D | de_CH.txt | 15 CV{"Kapverden"}
|
D | zh_Hant_HK.txt | 27 CV{"佛得角"}
|
/external/chromium_org/third_party/icu/source/data/region/ |
D | de_CH.txt | 15 CV{"Kapverden"}
|
/external/llvm/lib/Target/CppBackend/ |
D | CPPBackend.cpp | 724 void CppWriter::printConstant(const Constant *CV) { in printConstant() argument 728 if (isa<GlobalValue>(CV) || ValueNames.find(CV) != ValueNames.end()) in printConstant() 731 std::string constName(getCppName(CV)); in printConstant() 732 std::string typeName(getCppName(CV->getType())); in printConstant() 734 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) { in printConstant() 740 } else if (isa<ConstantAggregateZero>(CV)) { in printConstant() 743 } else if (isa<ConstantPointerNull>(CV)) { in printConstant() 746 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) { in printConstant() 750 } else if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) { in printConstant() 762 } else if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) { in printConstant() [all …]
|
/external/chromium_org/third_party/mesa/src/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/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/Target/ARM/ |
D | ARMAsmPrinter.h | 84 void EmitXXStructor(const Constant *CV) override;
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXAsmPrinter.h | 46 LowerConstant(const llvm::Constant *CV, llvm::AsmPrinter &AP); 279 void bufferAggregateConstant(const Constant *CV, AggBuffer *aggBuffer);
|
/external/icu/icu4c/source/data/misc/ |
D | postalCodeData.txt | 36 CV{"\d{4}"} 55 "GIR[ ]?0AA|((AB|AL|B|BA|BB|BD|BH|BL|BN|BR|BS|BT|CA|CB|CF|CH|CM|CO|CR|CT|CV|C"
|
/external/clang/lib/Analysis/ |
D | ThreadSafetyCommon.cpp | 289 til::SExpr *CV = nullptr; in translateBinAssign() local 292 CV = lookupVarDecl(VD); in translateBinAssign() 296 til::SExpr *Arg = CV ? CV : new (Arena) til::Load(E0); in translateBinAssign() 300 if (VD && CV) in translateBinAssign()
|