Home
last modified time | relevance | path

Searched refs:EP (Results 1 – 25 of 58) sorted by relevance

123

/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Doperators13.C12 class EP {
18 void EP::operator=(T *) { }
22 EP ep1, ep2; in main()
/openbsd-src/gnu/usr.bin/binutils-2.17/opcodes/
H A Dv850-opc.c387 #define EP (SR1 + 1) macro
391 #define I16U (EP + 1)
538 { "sld.bu", one (0x0060), one (0x07f0), {D4, EP, R2_NOTR0}, 1, PROCESSOR_V850E1 },
539 { "sld.bu", one (0x0060), one (0x07f0), {D4, EP, R2_NOTR0}, 1, PROCESSOR_V850E },
541 { "sld.hu", one (0x0070), one (0x07f0), {D5_4, EP, R2_NOTR0}, 1, PROCESSOR_V850E1 },
542 { "sld.hu", one (0x0070), one (0x07f0), {D5_4, EP, R2_NOTR0}, 1, PROCESSOR_V850E },
544 { "sld.b", one (0x0300), one (0x0780), {D7, EP, R2}, 1, PROCESSOR_V850E1 },
545 { "sld.b", one (0x0300), one (0x0780), {D7, EP, R2}, 1, PROCESSOR_V850E },
546 { "sld.b", one (0x0300), one (0x0780), {D7, EP, R2}, 1, PROCESSOR_V850 },
548 { "sld.h", one (0x0400), one (0x0780), {D8_7, EP, R2}, 1, PROCESSOR_V850E1 },
[all …]
/openbsd-src/gnu/usr.bin/binutils/opcodes/
H A Dv850-opc.c462 #define EP (SR1 + 1) macro
466 #define I16U (EP + 1)
613 { "sld.bu", one (0x0060), one (0x07f0), {D4, EP, R2_NOTR0}, 1, PROCESSOR_V850E1 },
614 { "sld.bu", one (0x0060), one (0x07f0), {D4, EP, R2_NOTR0}, 1, PROCESSOR_V850E },
616 { "sld.hu", one (0x0070), one (0x07f0), {D5_4, EP, R2_NOTR0}, 1, PROCESSOR_V850E1 },
617 { "sld.hu", one (0x0070), one (0x07f0), {D5_4, EP, R2_NOTR0}, 1, PROCESSOR_V850E },
619 { "sld.b", one (0x0300), one (0x0780), {D7, EP, R2}, 1, PROCESSOR_V850E1 },
620 { "sld.b", one (0x0300), one (0x0780), {D7, EP, R2}, 1, PROCESSOR_V850E },
621 { "sld.b", one (0x0300), one (0x0780), {D7, EP, R2}, 1, PROCESSOR_V850 },
623 { "sld.h", one (0x0400), one (0x0780), {D8_7, EP, R2}, 1, PROCESSOR_V850E1 },
[all …]
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DLiveRangeCalc.cpp97 auto EP = LR.extendInBlock(Undefs, Indexes->getMBBStartIdx(UseMBB), Use); in extend() local
98 if (EP.first != nullptr || EP.second) in extend()
247 auto EP = LR.extendInBlock(Undefs, Start, End); in findReachingDefs() local
248 VNInfo *VNI = EP.first; in findReachingDefs()
249 FoundUndef |= EP.second; in findReachingDefs()
250 setLiveOutValue(Pred, EP.second ? &UndefVNI : VNI); in findReachingDefs()
256 if (VNI || EP.second) in findReachingDefs()
H A DSplitKit.cpp1391 for (ExtPoint &EP : ExtPoints) { in rewriteAssigned()
1392 LiveInterval &LI = LIS.getInterval(Edit->get(EP.RegIdx)); in rewriteAssigned()
1396 Register Reg = EP.MO.getReg(), Sub = EP.MO.getSubReg(); in rewriteAssigned()
1413 SubLIC.extend(S, EP.Next, 0, Undefs); in rewriteAssigned()
/openbsd-src/libexec/getty/
H A Dsubr.c213 } else if (AP || EP || OP) { in setflags()
217 if (OP && !EP) { in setflags()
222 } else if (EP && !OP) { in setflags()
227 } else if (AP || (EP && OP)) { in setflags()
H A Dgettytab.h129 #define EP gettyflags[2].value macro
/openbsd-src/gnu/llvm/llvm/lib/Transforms/ObjCARC/
H A DObjCARCContract.cpp71 ARCRuntimeEntryPoints EP; member in __anon8a5e993a0111::ObjCARCContract
149 Function *Decl = EP.get(ARCRuntimeEntryPointKind::RetainRV); in optimizeRetainCall()
183 Function *Decl = EP.get(Class == ARCInstKind::AutoreleaseRV in contractAutorelease()
388 Function *Decl = EP.get(ARCRuntimeEntryPointKind::StoreStrong); in tryToContractReleaseIntoStoreStrong()
530 EP.init(&M); in init()
H A DObjCARCOpts.cpp488 ARCRuntimeEntryPoints EP; member in __anon8af302420211::ObjCARCOpt
643 Function *NewDecl = EP.get(ARCRuntimeEntryPointKind::Retain); in OptimizeRetainRVCall()
697 EP.get(ARCRuntimeEntryPointKind::Release), CallArg, "", Inst); in OptimizeInlinedAutoreleaseRVCall()
750 Function *NewDecl = EP.get(ARCRuntimeEntryPointKind::Autorelease); in OptimizeAutoreleaseRVCall()
990 Function *Decl = EP.get(ARCRuntimeEntryPointKind::Release); in OptimizeIndividualCallImpl()
1771 Function *Decl = EP.get(ARCRuntimeEntryPointKind::Retain); in MoveCalls()
1786 Function *Decl = EP.get(ARCRuntimeEntryPointKind::Release); in MoveCalls()
2125 Function *Decl = EP.get(ARCRuntimeEntryPointKind::Retain); in OptimizeWeakCalls()
2154 Function *Decl = EP.get(ARCRuntimeEntryPointKind::Retain); in OptimizeWeakCalls()
2415 EP.init(F.getParent()); in init()
/openbsd-src/gnu/llvm/clang/lib/AST/Interp/
H A DEvalEmitter.cpp190 const Pointer &EP = Ptr.atIndex(I); in emitRetValue() local
192 TYPE_SWITCH(*T, Ok &= ReturnValue<T>(EP.deref<T>(), Slot)); in emitRetValue()
194 Ok &= Composite(ElemTy, EP.narrow(), Slot); in emitRetValue()
/openbsd-src/regress/lib/libcrypto/x509/bettertls/certificates/
H A D994.key2 MIIEogIBAAKCAQEAib2oJwzWATjb1sxeVpVvaEDsco/OzW7a02KslsyMVrsl/1EP
H A D54.key18 A8CH6ChupUD9nV1uR2/x9mxXchSkDELdL75ponECgYBi4xCkFWlVEyOmLW0CL/EP
H A D2127.key10 kxslrE581x+qIE7KXiaOcTdb+Pl6jTVos6FENsIjKsFs76dp2+EP+q41Lk+jjLDY
H A D2868.key5 atyBvhVbRcGLlc2xGOssfP52oQ4emVGp+EP+1Uy3ngpys50bDiTeYxIwH4DTgM6S
H A D177.chain17 pAA2Q+PDSz/59MWFvF3lOc5u7pi5BoOOWvJ2fkQl9lGdZQIb4vZ+EP/GZVorwagd
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/CodeView/
H A DTypeStreamMerger.cpp485 EndPrecompRecord EP; in shouldRemapType() local
487 EP)) in shouldRemapType()
492 PCHInfo.emplace(PCHMergerInfo{EP.getSignature(), CurIndex.toArrayIndex()}); in shouldRemapType()
/openbsd-src/distrib/notes/luna88k/
H A Dprep64 QM30-14PA-EP with a QM14-CS cover (with lock), or QM30-14P-EP with a
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfoImpl.h1526 auto EP = BPI->getEdgeProbability(SrcBB, DstBB);
1527 if (EP.isZero())
1550 auto EP = BPI->getEdgeProbability(DstBB, SrcBB);
1551 if (EP.isZero())
1588 auto EP = BPI->getEdgeProbability(BB, SI);
1589 if (EP.isZero())
1593 Scaled64::getFraction(EP.getNumerator(), EP.getDenominator());
/openbsd-src/usr.sbin/unbound/doc/
H A DCREDITS4 and Roy Arends of Nominet. VeriSign and EP.Net funded development of
/openbsd-src/gnu/gcc/gcc/config/v850/
H A Dv850.opt39 Target Report Mask(EP)
/openbsd-src/gnu/llvm/llvm/tools/llvm-jitlink/
H A Dllvm-jitlink.cpp1954 if (auto EP = getMainEntryPoint(S)) in getEntryPoint() local
1955 EntryPoint = *EP; in getEntryPoint()
1957 return EP.takeError(); in getEntryPoint()
1966 if (auto EP = getOrcRuntimeEntryPoint(S)) in getEntryPoint() local
1967 EntryPoint = *EP; in getEntryPoint()
1969 return EP.takeError(); in getEntryPoint()
/openbsd-src/gnu/usr.bin/binutils/gas/doc/
H A Dc-v850.texi337 Data Area (whoes address is held in register 30, the EP register) and
345 bytes of the address held in the EP register. [Note the linker assumes
346 that the EP register contains a fixed address set to the address of the
/openbsd-src/gnu/usr.bin/binutils-2.17/gas/doc/
H A Dc-v850.texi337 Data Area (whoes address is held in register 30, the EP register) and
345 bytes of the address held in the EP register. [Note the linker assumes
346 that the EP register contains a fixed address set to the address of the
/openbsd-src/gnu/llvm/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp519 EndPrecompRecord &EP) { in visitKnownRecord() argument
520 P.format(" signature = {0:X+}", EP.Signature); in visitKnownRecord()
/openbsd-src/usr.bin/vi/docs/internals/
H A Dcscope.NOTES12 | EP | -> | Q1 | <-- | T1 | <-- | T2 |

123