Searched refs:EC (Results 451 - 475 of 485) sorted by relevance

<<11121314151617181920

/openbsd-current/gnu/llvm/llvm/lib/IR/
H A DAsmWriter.cpp610 ElementCount EC = PTy->getElementCount(); local
612 if (EC.isScalable())
614 OS << EC.getKnownMinValue() << " x ";
H A DAutoUpgrade.cpp628 ElementCount EC = local
630 Type *Ty = VectorType::get(ScalarTy, EC);
2813 ElementCount EC = cast<VectorType>(CI->getType())->getElementCount(); local
2814 Type *MaskTy = VectorType::get(Type::getInt32Ty(C), EC);
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp7436 ElementCount EC = cast<VectorType>(getTransitionType())->getElementCount(); local
7438 return ConstantVector::getSplat(EC, Val);
7440 if (!EC.isScalable()) {
7443 for (unsigned Idx = 0; Idx != EC.getKnownMinValue(); ++Idx) {
/openbsd-current/gnu/llvm/clang/lib/Driver/ToolChains/
H A DDarwin.cpp805 if (std::error_code EC = llvm::sys::fs::remove(OutputFileName)) {
806 D.Diag(diag::err_drv_unable_to_remove_file) << EC.message();
H A DClang.cpp2331 std::error_code EC; local
2333 Filename, EC,
2335 if (EC) {
2337 << EC.message();
/openbsd-current/gnu/llvm/clang/lib/CodeGen/
H A DCGClass.cpp1166 if (ImplicitCastExpr *EC = dyn_cast<ImplicitCastExpr>(RHS))
1167 RHS = EC->getSubExpr();
H A DCGOpenMPRuntime.cpp1609 if (auto EC = llvm::sys::fs::getUniqueID(PLoc.getFilename(), ID)) {
1612 if (auto EC = llvm::sys::fs::getUniqueID(PLoc.getFilename(), ID))
1614 << PLoc.getFilename() << EC.message();
3011 if (auto EC = Buf.getError()) {
3013 << CGM.getLangOpts().OMPHostIRFile << EC.message();
3021 if (auto EC = ME.getError()) {
3025 << CGM.getLangOpts().OMPHostIRFile << EC.message();
H A DCodeGenModule.cpp7174 if (auto EC = llvm::sys::fs::getUniqueID(PLoc.getFilename(), ID)) {
7177 if (auto EC = llvm::sys::fs::getUniqueID(PLoc.getFilename(), ID))
7179 << PLoc.getFilename() << EC.message();
H A DCGDebugInfo.cpp731 unsigned NumElemsPerVG = (Info.EC.getKnownMinValue() * Info.NumVectors) / 2;
771 unsigned ElementCount = Info.EC.getKnownMinValue();
/openbsd-current/gnu/usr.bin/perl/lib/unicore/To/
H A D_PerlSCX.pl38 2EC 2FF Common
H A DScx.pl38 2EC 2FF Common
H A D_PerlLB.pl443 27EC Open_Punctuation
H A DIdentif2.pl135 2EC Recommended
H A DLb.pl922 27EC OP
/openbsd-current/gnu/llvm/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp3676 for (const auto *EC : ED->enumerators()) {
3677 Result += "\t"; Result += EC->getName(); Result += " = ";
3678 Result += toString(EC->getInitVal(), 10);
/openbsd-current/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp5748 ElementCount EC = PredVT.getVectorElementCount();
5750 EVT::getIntegerVT(Ctx, AArch64::SVEBitsPerBlock / EC.getKnownMinValue());
5751 EVT MemVT = EVT::getVectorVT(Ctx, ScalarVT, EC * NumVec);
/openbsd-current/gnu/llvm/clang/lib/Sema/
H A DSemaCodeComplete.cpp10008 std::error_code EC;
10010 for (auto It = FS.dir_begin(Dir, EC);
10011 !EC && It != llvm::vfs::directory_iterator(); It.increment(EC)) {
H A DSemaExpr.cpp10926 Context.getBuiltinVectorTypeInfo(LHSBuiltinTy).EC !=
10927 Context.getBuiltinVectorTypeInfo(RHSBuiltinTy).EC) {
11911 (S.Context.getBuiltinVectorTypeInfo(LHSBuiltinTy).EC !=
11912 S.Context.getBuiltinVectorTypeInfo(RHSBuiltinTy).EC)) {
11928 S.Context.getBuiltinVectorTypeInfo(RHSBuiltinTy).EC;
11943 S.Context.getBuiltinVectorTypeInfo(LHSBuiltinTy).EC;
13157 const llvm::ElementCount VecSize = Context.getBuiltinVectorTypeInfo(VTy).EC;
/openbsd-current/regress/usr.bin/openssl/
H A Dappstest.sh324 # EC
330 # get all EC curves
393 # EC by GENPKEY
396 $openssl_bin genpkey -genparam -algorithm EC -out $genpkey_ec_param \
/openbsd-current/gnu/llvm/clang/lib/Analysis/
H A DCFG.cpp3029 ExprWithCleanups *EC = cast<ExprWithCleanups>(Init); local
3030 if (CFGBlock *newBlock = Visit(EC->getSubExpr()))
/openbsd-current/gnu/llvm/llvm/tools/llvm-objdump/
H A DMachODump.cpp6986 if (std::error_code EC = FileOrErr.getError()) {
6987 WithColor::error(errs(), "llvm-objdump") << EC.message() << "\n";
7468 if (std::error_code EC = BufOrErr.getError()) {
7469 reportError(errorCodeToError(EC), DSYMPath);
10660 std::error_code EC = local
10662 if (EC)
/openbsd-current/gnu/llvm/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp959 std::error_code EC; local
961 EC = EIB.convertToErrorCode();
964 return EC;
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp962 Constant *EC = ConstantInt::get(Ty, VF.getKnownMinValue()); local
963 return VF.isScalable() ? B.CreateVScale(EC) : EC;
/openbsd-current/gnu/llvm/clang/lib/Parse/
H A DParseExprCXX.cpp1000 EnterExpressionEvaluationContext EC(
/openbsd-current/gnu/llvm/llvm/include/llvm/IR/
H A DIRBuilder.h2482 /// EC elements.
2483 Value *CreateVectorSplat(ElementCount EC, Value *V, const Twine &Name = "");

Completed in 1048 milliseconds

<<11121314151617181920