| /openbsd-src/share/zoneinfo/datfiles/ |
| H A D | backward | 25 # "Link Australia/Sydney Australia/ACT #= Australia/Canberra" would be 26 # "Link Australia/Canberra Australia/ACT" were it not that data lines 34 # Link TARGET LINK-NAME #= TARGET1 35 Link Australia/Sydney Australia/ACT #= Australia/Canberra 36 Link Australia/Lord_Howe Australia/LHI 37 Link Australia/Sydney Australia/NSW 38 Link Australia/Darwin Australia/North 39 Link Australia/Brisbane Australia/Queensland 40 Link Australia/Adelaide Australia/South 41 Link Australi [all...] |
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/ |
| H A D | p2746.C | 3 class Link { 5 Link(); 6 Link(Link *); 8 Link *next_; 15 Link::Link() : next_(0) in Link() function 20 Link::Link(Link *next) : next_(next) in Link() function 27 IListBase(Link *); 28 void append(Link *); 29 void insert(Link *); 30 Link *head(); [all …]
|
| /openbsd-src/gnu/llvm/clang/include/clang/Driver/ |
| H A D | Types.def | 38 … INVALID, "i", phases::Compile, phases::Backend, phases::Assemble, phases::Link) 39 … "c", phases::Preprocess, phases::Compile, phases::Backend, phases::Assemble, phases::Link) 40 … "cl", phases::Preprocess, phases::Compile, phases::Backend, phases::Assemble, phases::Link) 41 … "clcpp", phases::Preprocess, phases::Compile, phases::Backend, phases::Assemble, phases::Link) 42 …, INVALID, "cui", phases::Compile, phases::Backend, phases::Assemble, phases::Link) 43 … "cu", phases::Preprocess, phases::Compile, phases::Backend, phases::Assemble, phases::Link) 44 … "cu", phases::Preprocess, phases::Compile, phases::Backend, phases::Assemble, phases::Link) 45 … INVALID, "hipi", phases::Compile, phases::Backend, phases::Assemble, phases::Link) 46 … "hip", phases::Preprocess, phases::Compile, phases::Backend, phases::Assemble, phases::Link) 47 … "hip", phases::Preprocess, phases::Compile, phases::Backend, phases::Assemble, phases::Link) [all …]
|
| H A D | Phases.h | 23 Link, enumerator
|
| /openbsd-src/gnu/llvm/llvm/lib/Analysis/ |
| H A D | StratifiedSets.h | 185 return Link.hasAbove(); in hasAbove() 190 return Link.hasBelow(); in hasBelow() 195 Link.Below = I; in setBelow() 200 Link.Above = I; in setAbove() 205 Link.clearBelow(); in clearBelow() 210 Link.clearAbove(); in clearAbove() 216 return Link.Below; in getBelow() 222 return Link.Above; in getAbove() 227 return Link.Attrs; in getAttrs() 232 Link.Attrs |= Other; in setAttrs() [all …]
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | Redeclarable.h | 105 mutable llvm::PointerUnion<NotKnownLatest, KnownLatest> Link; variable 112 : Link(NotKnownLatest(reinterpret_cast<UninitializedLatest>(&Ctx))) {} in DeclLink() 113 DeclLink(PreviousTag, decl_type *D) : Link(NotKnownLatest(Previous(D))) {} in DeclLink() 116 return Link.is<KnownLatest>() || in isFirst() 119 Link.get<NotKnownLatest>().template is<UninitializedLatest>(); in isFirst() 123 if (Link.is<NotKnownLatest>()) { in getPrevious() 124 NotKnownLatest NKL = Link.get<NotKnownLatest>(); in getPrevious() 129 Link = KnownLatest(*reinterpret_cast<const ASTContext *>( in getPrevious() 134 return static_cast<decl_type*>(Link.get<KnownLatest>().get(D)); in getPrevious() 139 Link = Previous(D); in setPrevious() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | Globals.cpp | 406 GlobalVariable::GlobalVariable(Type *Ty, bool constant, LinkageTypes Link, in GlobalVariable() argument 412 InitVal != nullptr, Link, Name, AddressSpace), in GlobalVariable() 426 LinkageTypes Link, Constant *InitVal, in GlobalVariable() argument 433 InitVal != nullptr, Link, Name, in GlobalVariable() 500 GlobalAlias::GlobalAlias(Type *Ty, unsigned AddressSpace, LinkageTypes Link, in GlobalAlias() argument 503 : GlobalValue(Ty, Value::GlobalAliasVal, &Op<0>(), 1, Link, Name, in GlobalAlias() 511 LinkageTypes Link, const Twine &Name, in create() argument 513 return new GlobalAlias(Ty, AddressSpace, Link, Name, Aliasee, ParentModule); in create() 528 GlobalAlias *GlobalAlias::create(LinkageTypes Link, const Twine &Name, in create() argument 530 return create(Aliasee->getValueType(), Aliasee->getAddressSpace(), Link, Name, in create() [all …]
|
| /openbsd-src/usr.bin/libtool/ |
| H A D | Makefile | 18 LT/Mode/Link.pm \ 19 LT/Mode/Link/Program.pm \ 20 LT/Mode/Link/Library.pm \ 29 .for d in LT LT/Mode LT/Mode/Link
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_deadlock_detector2.cpp | 41 struct Link { struct 48 explicit Link(u32 id = 0, u32 seq = 0, u32 tid = 0, u32 s0 = 0, u32 s1 = 0) in Link() argument 61 Link pending[kMaxMutex]; 62 Link path[kMaxMutex]; 80 Link link[kMaxLink]; 229 Link *link = &mtx1->link[li]; in MutexBeforeLock() 245 Link *link = &mtx1->link[mtx1->nlink++]; in MutexBeforeLock() 368 Link link = pt->pending[--npending]; in CycleCheck() 383 pt->pending[npending++] = Link(kEndId); in CycleCheck() 387 Link *link1 = &mtx1->link[li]; in CycleCheck() [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
| H A D | SuffixTree.h | 83 SuffixTreeNode *Link = nullptr; member 109 SuffixTreeNode(unsigned StartIdx, unsigned *EndIdx, SuffixTreeNode *Link) in SuffixTreeNode() 110 : StartIdx(StartIdx), EndIdx(EndIdx), Link(Link) {} in SuffixTreeNode()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/ |
| H A D | operators24.C | 10 struct Link { struct 14 void f() { new(2) Link; } in f()
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | SuffixTree.cpp | 121 NeedsLink->Link = Active.Node; in extend() 152 NeedsLink->Link = Active.Node; in extend() 189 NeedsLink->Link = SplitNode; in extend() 205 Active.Node = Active.Node->Link; in extend()
|
| /openbsd-src/share/zoneinfo/ |
| H A D | ziguard.awk | 154 # "Zone Etc/GMT 0 - GMT" and adjust Link lines accordingly. 156 if (/^#?(Zone|Link)[\t ]+(Etc\/)?GMT[\t ]/) { 318 oldprefix = "Link\t" oldtarget "\t" 336 return "Link\t" target "\t" replsuffix comment 339 /^Link/ && $4 == "#=" && DATAFORM == "vanguard" { 343 # If a Link line is followed by a Link or Zone line for the same data, comment 344 # out the Link line. This can happen if backzone overrides a Link 345 # with a Zone or a different Link [all...] |
| /openbsd-src/gnu/llvm/llvm/lib/Debuginfod/ |
| H A D | CMakeLists.txt | 1 # Link LibCURL if the user wants it 6 # Link cpp-httplib if the user wants it
|
| /openbsd-src/distrib/notes/octeon/ |
| H A D | hardware | 4 D-Link DSR-500 and DSR-500N 21 The onboard CompactFlash on D-Link DSR-500 and DSR-500N is not supported
|
| /openbsd-src/gnu/gcc/gcc/config/rs6000/ |
| H A D | sysv4.opt | 105 Link with libsim.a, libc.a and sim-crt0.o 109 Link with libads.a, libc.a and crt0.o 113 Link with libyk.a, libc.a and crt0.o 117 Link with libmvme.a, libc.a and crt0.o
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/X86/ |
| H A D | X86WinEHState.cpp | 110 Value *Link = nullptr; member in __anon54fa0f540111::WinEHStatePass 294 Link = Builder.CreateStructGEP(RegNodeTy, RegNode, 1); in emitExceptionRegistrationRecord() 349 Link = Builder.CreateStructGEP(RegNodeTy, RegNode, 2); in emitExceptionRegistrationRecord() 428 Builder.CreateStore(HandlerI8, Builder.CreateStructGEP(LinkTy, Link, 1)); in linkExceptionRegistration() 433 Builder.CreateStore(Next, Builder.CreateStructGEP(LinkTy, Link, 0)); in linkExceptionRegistration() 435 Builder.CreateStore(Link, FSZero); in linkExceptionRegistration() 440 if (auto *GEP = dyn_cast<GetElementPtrInst>(Link)) { in unlinkExceptionRegistration() 443 Link = GEP; in unlinkExceptionRegistration() 448 Builder.CreateStructGEP(LinkTy, Link, 0)); in unlinkExceptionRegistration()
|
| /openbsd-src/gnu/llvm/libcxx/cmake/Modules/ |
| H A D | HandleLibCXXABI.cmake | 84 # Link against a system-provided libstdc++ 97 # Link against a system-provided libsupc++ 110 # Link against the in-tree libc++abi 132 # Link against a system-provided libc++abi 144 # Link against a system-provided libcxxrt 165 # Link against a system-provided vcruntime
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Testing/Support/ |
| H A D | SupportHelpers.h | 178 TempLink(StringRef Target, StringRef Link) { in TempLink() argument 179 Path = Link; in TempLink() 180 std::error_code EC = sys::fs::create_link(Target, Link); in TempLink()
|
| /openbsd-src/share/snmp/ |
| H A D | IANAifType-MIB.txt | 480 dlsw(74), -- Data Link Switching 483 lapd(77), -- Link Access Protocol D 516 ipOverClaw (110), -- IBM Common Link Access to Workstn 528 x25mlp (121), -- Multi-Link Protocol 562 compositeLink (155), -- Avici Composite Link Interface 563 ss7SigLink (156), -- SS7 Signaling Link 568 ieee8023adLag (161), -- IEEE 802.3ad Link Aggregate 577 ds1FDL (170), -- Facility Data Link 4Kbps on a DS1 610 teLink (200), -- TE Link 633 actelisMetaLOOP (223), -- Acteleis proprietary MetaLOOP High Speed Link [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/ObjCopy/ELF/ |
| H A D | ELFObject.cpp | 77 Shdr.sh_link = Sec.Link; in writeShdr() 601 Link, in initialize() 602 "Link field value " + Twine(Link) + " in section " + Name + in initialize() 604 "Link field value " + Twine(Link) + " in section " + Name + in initialize() 614 void SectionIndexSection::finalize() { Link = Symbols->Index; } in finalize() 760 Link, in initialize() 761 "Symbol table has link index of " + Twine(Link) + in initialize() 763 "Symbol table has link index of " + Twine(Link) + in initialize() 781 Link = SymbolNames == nullptr ? 0 : SymbolNames->Index; in finalize() 897 if (Link != SHN_UNDEF) { in initialize() [all …]
|
| /openbsd-src/gnu/llvm/llvm/cmake/modules/ |
| H A D | LLVM-Config.cmake | 159 # Link all the codegens from all the targets 166 # Link all the asm parsers from all the targets 173 # Link all the descs from all the targets 180 # Link all the disassemblers from all the targets 187 # Link all the infos from all the targets 194 # Link all the TargetMCAs from all the targets
|
| /openbsd-src/gnu/llvm/clang/lib/Driver/ |
| H A D | Phases.cpp | 22 case Link: return "linker"; in getPhaseName()
|
| /openbsd-src/gnu/usr.bin/cvs/windows-NT/SCC/ |
| H A D | SCC.dsp | 5 # TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 20 !MESSAGE "SCC - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") 21 !MESSAGE "SCC - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
|
| /openbsd-src/gnu/usr.bin/perl/cpan/podlators/t/data/snippets/text/ |
| H A D | link-rt | 2 Link to an RT ticket
|