/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | ErrorHandling.cpp | 263 unsigned EV = ::GetLastError(); in mapLastWindowsError() local 267 if (EV == ERROR_ACCESS_DENIED) { in mapLastWindowsError() 273 return mapWindowsError(EV); in mapLastWindowsError() 281 std::error_code llvm::mapWindowsError(unsigned EV) { in mapWindowsError() argument 282 switch (EV) { in mapWindowsError() 338 return std::error_code(EV, std::system_category()); in mapWindowsError()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | HexagonConstExtenders.cpp | 367 bool operator<(const ExtValue &EV) const; 368 bool operator==(const ExtValue &EV) const { in operator ==() 369 return ExtRoot(*this) == ExtRoot(EV) && Offset == EV.Offset; in operator ==() 371 bool operator!=(const ExtValue &EV) const { in operator !=() 372 return !operator==(EV); in operator !=() 428 friend raw_ostream &operator<< (raw_ostream &OS, const ExtValue &EV); 544 raw_ostream &operator<< (raw_ostream &OS, const HCE::ExtValue &EV) { in operator <<() argument 545 OS << HCE::ExtRoot(EV) << " off:" << EV.Offset; in operator <<() 766 bool HCE::ExtValue::operator< (const HCE::ExtValue &EV) const { in operator <() 768 if (!(ER == ExtRoot(EV))) in operator <() [all …]
|
/freebsd/secure/caroot/trusted/ |
H A D | D-TRUST_EV_Root_CA_1_2020.pem | 2 ## D-TRUST EV Root CA 1 2020 20 Issuer: C = DE, O = D-Trust GmbH, CN = D-TRUST EV Root CA 1 2020 24 Subject: C = DE, O = D-Trust GmbH, CN = D-TRUST EV Root CA 1 2020 49 …URI:ldap://directory.d-trust.net/CN=D-TRUST%20EV%20Root%20CA%201%202020,O=D-Trust%20GmbH,C=DE?cert…
|
H A D | D-TRUST_Root_Class_3_CA_2_EV_2009.pem | 2 ## D-TRUST Root Class 3 CA 2 EV 2009 19 Issuer: C = DE, O = D-Trust GmbH, CN = D-TRUST Root Class 3 CA 2 EV 2009 23 Subject: C = DE, O = D-Trust GmbH, CN = D-TRUST Root Class 3 CA 2 EV 2009 56 …URI:ldap://directory.d-trust.net/CN=D-TRUST%20Root%20Class%203%20CA%202%20EV%202009,O=D-Trust%20Gm…
|
H A D | SSL_com_EV_Root_Certification_Authority_ECC.pem | 2 ## SSL.com EV Root Certification Authority ECC 19 …Issuer: C = US, ST = Texas, L = Houston, O = SSL Corporation, CN = SSL.com EV Root Certification A… 23 …Subject: C = US, ST = Texas, L = Houston, O = SSL Corporation, CN = SSL.com EV Root Certification …
|
H A D | DigiCert_High_Assurance_EV_Root_CA.pem | 2 ## DigiCert High Assurance EV Root CA 20 … Issuer: C = US, O = DigiCert Inc, OU = www.digicert.com, CN = DigiCert High Assurance EV Root CA 24 … Subject: C = US, O = DigiCert Inc, OU = www.digicert.com, CN = DigiCert High Assurance EV Root CA
|
H A D | SSL_com_EV_Root_Certification_Authority_RSA_R2.pem | 2 ## SSL.com EV Root Certification Authority RSA R2 19 …Issuer: C = US, ST = Texas, L = Houston, O = SSL Corporation, CN = SSL.com EV Root Certification A… 23 …Subject: C = US, ST = Texas, L = Houston, O = SSL Corporation, CN = SSL.com EV Root Certification …
|
H A D | CFCA_EV_ROOT.pem | 2 ## CFCA EV ROOT 19 Issuer: C = CN, O = China Financial Certification Authority, CN = CFCA EV ROOT 23 Subject: C = CN, O = China Financial Certification Authority, CN = CFCA EV ROOT
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | Error.cpp | 35 std::string _object_error_category::message(int EV) const { in message() 36 object_error E = static_cast<object_error>(EV); in message()
|
/freebsd/crypto/openssl/util/ |
H A D | local_shlib.com.in | 26 $ EV = __'E' 29 $ DEFINE 'E' 'EV'
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | WindowsError.h | 16 std::error_code mapWindowsError(unsigned EV);
|
/freebsd/secure/caroot/untrusted/ |
H A D | Staat_der_Nederlanden_EV_Root_CA.pem | 2 ## Staat der Nederlanden EV Root CA 19 Issuer: C = NL, O = Staat der Nederlanden, CN = Staat der Nederlanden EV Root CA 23 Subject: C = NL, O = Staat der Nederlanden, CN = Staat der Nederlanden EV Root CA
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstructionCombining.cpp | 3873 InstCombinerImpl::foldExtractOfOverflowIntrinsic(ExtractValueInst &EV) { in foldExtractOfOverflowIntrinsic() argument 3874 auto *WO = dyn_cast<WithOverflowInst>(EV.getAggregateOperand()); in foldExtractOfOverflowIntrinsic() 3881 if (*EV.idx_begin() == 0 && (OvID == Intrinsic::smul_with_overflow || in foldExtractOfOverflowIntrinsic() 3903 if (*EV.idx_begin() == 0) { in foldExtractOfOverflowIntrinsic() 3912 assert(*EV.idx_begin() == 1 && "Unexpected extract index for overflow inst"); in foldExtractOfOverflowIntrinsic() 3958 Instruction *InstCombinerImpl::visitExtractValueInst(ExtractValueInst &EV) { in visitExtractValueInst() argument 3959 Value *Agg = EV.getAggregateOperand(); in visitExtractValueInst() 3961 if (!EV.hasIndices()) in visitExtractValueInst() 3962 return replaceInstUsesWith(EV, Agg); in visitExtractValueInst() 3964 if (Value *V = simplifyExtractValueInst(Agg, EV.getIndices(), in visitExtractValueInst() [all …]
|
H A D | InstCombineInternal.h | 178 Instruction *visitExtractValueInst(ExtractValueInst &EV); 442 Instruction *foldExtractOfOverflowIntrinsic(ExtractValueInst &EV);
|
/freebsd/sys/contrib/device-tree/src/arm/gemini/ |
H A D | gemini-sl93512r.dts | 5 * "Gemini324 EV-Board" before Storm acquired Storlink Semiconductor. 15 model = "Storlink Semiconductor Gemini324 EV-Board / Storm Semiconductor SL93512R_BRD";
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | AtomicExpandPass.cpp | 1501 ExtractValueInst *EV = dyn_cast<ExtractValueInst>(User); in expandAtomicCmpXchg() local 1502 if (!EV) in expandAtomicCmpXchg() 1505 assert(EV->getNumIndices() == 1 && EV->getIndices()[0] <= 1 && in expandAtomicCmpXchg() 1508 if (EV->getIndices()[0] == 0) in expandAtomicCmpXchg() 1509 EV->replaceAllUsesWith(Loaded); in expandAtomicCmpXchg() 1511 EV->replaceAllUsesWith(Success); in expandAtomicCmpXchg() 1513 PrunedInsts.push_back(EV); in expandAtomicCmpXchg() 1517 for (auto *EV : PrunedInsts) in expandAtomicCmpXchg() local 1518 EV->eraseFromParent(); in expandAtomicCmpXchg()
|
/freebsd/sys/contrib/device-tree/src/arc/ |
H A D | vdk_axs10x_mb.dtsi | 114 * Embedded Vision subsystem UIO mappings; only relevant for EV VDK
|
/freebsd/usr.sbin/apmd/ |
H A D | apmd.c | 62 #define EVENT_CONFIG_INITIALIZER(EV,R) { #EV, NULL, R }, argument
|
/freebsd/libexec/getty/ |
H A D | gettytab.h | 68 #define EV gettystrs[9].value macro
|
H A D | subr.c | 563 if ((p = EV)) { in makeenv()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUSplitModule.cpp | 116 const auto EV = sys::Process::GetEnv("AMD_SPLIT_MODULE_LOG_PRIVATE"); in getName() local 117 HideNames = (EV.value_or("0") != "0"); in getName()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | DeadArgumentElimination.cpp | 1054 Value *EV = IRB.CreateExtractValue(OldRet, RetI, "oldret"); in removeDeadStuffFromFunction() local 1060 RetVal = IRB.CreateInsertValue(RetVal, EV, NewRetIdxs[RetI], in removeDeadStuffFromFunction() 1065 RetVal = EV; in removeDeadStuffFromFunction()
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | biosig | 100 0 string N.EV.\0 Biosig/NEV
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | RegisterInfoEmitter.cpp | 1274 unsigned EV = 0; in runTargetDesc() local 1282 assert(RC.EnumValue == EV && "Unexpected order of register classes"); in runTargetDesc() 1283 ++EV; in runTargetDesc() 1284 (void)EV; in runTargetDesc()
|
/freebsd/share/termcap/ |
H A D | termcap | 327 :MT:is=\EQ\EU\EV:do=^J:\ 332 :is=\EU\EV:do=^J:\ 446 :k1=\ES:k2=\ET:k3=\EU:k4=\EV:k5=\EW:k6=\EP:k7=\EQ:k8=\ER:k9=\EY:\ 754 :vb=\E^G:so=\EU!:se=\EV!:us=\EU":ue=\EV":cd=\EJ:\ 761 :ku=\EA:kd=\EB:kr=\EC:kl=\ED:so=\EU!:se=\EV!:us=\EU":ue=\EV":\ 939 :mb=\EOb:md=\EOd:me=\EN*:mr=\EOr:nd=\EV:pt:rc=\034:rs=\EN*:sc=\035:\ 960 :so=\ES:sr=\ED:te=\EX:ti=\EW:ue=\EV:up=\EA:us=\EU:co#88:li#53: 1985 :co#80:cd=\EQ:dm=\EQ:ed=\EF:dc=\177:dl=\EV:ei=\EF:\ 2021 regent60|regent200|Adds Regent 60:se=\ER\E0@\EV:so=\ER\E0P\EV:dc=\EE:ei=\EF:\ 2022 :im=\EF:is=\EV\EB:ko=dc,im,ei:tc=regent40+: [all …]
|