Home
last modified time | relevance | path

Searched refs:EV (Results 1 – 25 of 49) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonConstExtenders.cpp369 return ExtRoot(*this) == ExtRoot(EV) && Offset == EV.Offset; in operator ==()
372 return !operator==(EV); in operator !=()
545 OS << HCE::ExtRoot(EV) << " off:" << EV.Offset; in operator <<()
768 if (!(ER == ExtRoot(EV))) in operator <()
769 return ER < EV; in operator <()
770 return Offset < EV.Offset; in operator <()
1278 ExtValue EV(ED); in assignInits() local
1298 ExtValue EV(ED); in assignInits() local
1535 MachineOperand ExtOp(EV); in insertInitializer()
1770 const ExtValue &EV = ExtI.first; (void)EV; in replaceInstrExpr() local
[all …]
/freebsd-14.2/secure/caroot/trusted/
H A DD-TRUST_EV_Root_CA_1_2020.pem2 ## 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 DD-TRUST_Root_Class_3_CA_2_EV_2009.pem2 ## 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 DSSL_com_EV_Root_Certification_Authority_ECC.pem2 ## 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 DDigiCert_High_Assurance_EV_Root_CA.pem2 ## 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 DD-TRUST_EV_Root_CA_2_2023.pem2 ## D-TRUST EV Root CA 2 2023
20 Issuer: C = DE, O = D-Trust GmbH, CN = D-TRUST EV Root CA 2 2023
24 Subject: C = DE, O = D-Trust GmbH, CN = D-TRUST EV Root CA 2 2023
H A DCFCA_EV_ROOT.pem2 ## 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
H A DSSL_com_EV_Root_Certification_Authority_RSA_R2.pem2 ## 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 …
/freebsd-14.2/contrib/llvm-project/llvm/lib/Object/
H A DError.cpp35 std::string _object_error_category::message(int EV) const { in message()
36 object_error E = static_cast<object_error>(EV); in message()
/freebsd-14.2/crypto/openssl/util/
H A Dlocal_shlib.com.in26 $ EV = __'E'
29 $ DEFINE 'E' 'EV'
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DErrorHandling.cpp245 std::error_code llvm::mapWindowsError(unsigned EV) { in mapWindowsError() argument
246 switch (EV) { in mapWindowsError()
302 return std::error_code(EV, std::system_category()); in mapWindowsError()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DWindowsError.h15 std::error_code mapWindowsError(unsigned EV);
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp3433 if (*EV.idx_begin() == 0) { in foldExtractOfOverflowIntrinsic()
3478 Value *Agg = EV.getAggregateOperand(); in visitExtractValueInst()
3480 if (!EV.hasIndices()) in visitExtractValueInst()
3481 return replaceInstUsesWith(EV, Agg); in visitExtractValueInst()
3485 return replaceInstUsesWith(EV, V); in visitExtractValueInst()
3490 for (exti = EV.idx_begin(), insi = IV->idx_begin(), in visitExtractValueInst()
3491 exte = EV.idx_end(), inse = IV->idx_end(); in visitExtractValueInst()
3504 EV.getIndices()); in visitExtractValueInst()
3558 for (unsigned Idx : EV.indices()) in visitExtractValueInst()
3572 return replaceInstUsesWith(EV, NL); in visitExtractValueInst()
[all …]
H A DInstCombineInternal.h177 Instruction *visitExtractValueInst(ExtractValueInst &EV);
431 Instruction *foldExtractOfOverflowIntrinsic(ExtractValueInst &EV);
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DAtomicExpandPass.cpp1417 ExtractValueInst *EV = dyn_cast<ExtractValueInst>(User); in expandAtomicCmpXchg() local
1418 if (!EV) in expandAtomicCmpXchg()
1421 assert(EV->getNumIndices() == 1 && EV->getIndices()[0] <= 1 && in expandAtomicCmpXchg()
1424 if (EV->getIndices()[0] == 0) in expandAtomicCmpXchg()
1425 EV->replaceAllUsesWith(Loaded); in expandAtomicCmpXchg()
1427 EV->replaceAllUsesWith(Success); in expandAtomicCmpXchg()
1429 PrunedInsts.push_back(EV); in expandAtomicCmpXchg()
1433 for (auto *EV : PrunedInsts) in expandAtomicCmpXchg() local
1434 EV->eraseFromParent(); in expandAtomicCmpXchg()
/freebsd-14.2/sys/contrib/device-tree/src/arm/
H A Dgemini-sl93512r.dts5 * "Gemini324 EV-Board" before Storm acquired Storlink Semiconductor.
15 model = "Storlink Semiconductor Gemini324 EV-Board / Storm Semiconductor SL93512R_BRD";
/freebsd-14.2/sys/contrib/device-tree/src/arc/
H A Dvdk_axs10x_mb.dtsi114 * Embedded Vision subsystem UIO mappings; only relevant for EV VDK
/freebsd-14.2/sys/contrib/device-tree/Bindings/arm/
H A Dgemini.yaml31 - description: Storlink Semiconductor Gemini324 EV-Board also known
/freebsd-14.2/usr.sbin/apmd/
H A Dapmd.c62 #define EVENT_CONFIG_INITIALIZER(EV,R) { #EV, NULL, R }, argument
/freebsd-14.2/libexec/getty/
H A Dgettytab.h70 #define EV gettystrs[9].value macro
H A Dsubr.c569 if ((p = EV)) { in makeenv()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp1056 Value *EV = IRB.CreateExtractValue(OldRet, RetI, "oldret"); in removeDeadStuffFromFunction() local
1062 RetVal = IRB.CreateInsertValue(RetVal, EV, NewRetIdxs[RetI], in removeDeadStuffFromFunction()
1067 RetVal = EV; in removeDeadStuffFromFunction()
/freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/
H A DRegisterInfoEmitter.cpp1275 unsigned EV = 0; in runTargetDesc() local
1283 assert(RC.EnumValue == EV && "Unexpected order of register classes"); in runTargetDesc()
1284 ++EV; in runTargetDesc()
1285 (void)EV; in runTargetDesc()
/freebsd-14.2/contrib/file/magic/Magdir/
H A Dbiosig100 0 string N.EV.\0 Biosig/NEV
/freebsd-14.2/share/termcap/
H A Dtermcap329 :MT:is=\EQ\EU\EV:do=^J:\
334 :is=\EU\EV:do=^J:\
756 :vb=\E^G:so=\EU!:se=\EV!:us=\EU":ue=\EV":cd=\EJ:\
763 :ku=\EA:kd=\EB:kr=\EC:kl=\ED:so=\EU!:se=\EV!:us=\EU":ue=\EV":\
2023 regent60|regent200|Adds Regent 60:se=\ER\E0@\EV:so=\ER\E0P\EV:dc=\EE:ei=\EF:\
2042 :so=\ER\E0Q\EV:se=\ER\E0@\EV:\
2043 :us=\ER\E0`\EV:ue=\ER\E0@\EV:\
3196 :ko=ce,cd,al,im,dl,dc:kN=\EU:kP=\EV:
3318 :k1=\ES:k2=\ET:k3=\EU:k4=\EV:k5=\EW:\
3475 :ei=^T:ho=^^:im=^T:li#24:nd=^L:se=^V:so=^V:up=^K:vb=\EV\EV:
[all …]

12