HomeSort by: relevance | last modified time | path
    Searched defs:Link (Results 1 - 19 of 19) sorted by relevancy

  /src/sys/external/bsd/gnu-efi/dist/lib/runtime/
vm.c 81 LIST_ENTRY *Link;
91 Link = ListHead;
93 NextLink = Link->Flink;
96 Link->Flink == ListHead ? DebugDisposition : 0,
97 (VOID **)&Link->Flink
101 Link->Blink == ListHead ? DebugDisposition : 0,
102 (VOID **)&Link->Blink
105 Link = NextLink;
106 } while (Link != ListHead);
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
PS4CPU.h 41 class LLVM_LIBRARY_VISIBILITY Link : public Tool {
43 Link(const ToolChain &TC) : Tool("PS4cpu::Link", "linker", TC) {}
  /src/external/apache2/llvm/dist/clang/include/clang/Driver/
Phases.h 23 Link,
ToolChain.h 142 mutable std::unique_ptr<Tool> Link;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
SuffixTree.h 38 /// in \p Link. Each leaf node stores the start index of its respective
71 /// insert O(1), and there are a total of O(N) inserts. The suffix link
83 SuffixTreeNode *Link = nullptr;
109 SuffixTreeNode(unsigned StartIdx, unsigned *EndIdx, SuffixTreeNode *Link)
110 : StartIdx(StartIdx), EndIdx(EndIdx), Link(Link) {}
  /src/external/apache2/llvm/dist/llvm/tools/opt-viewer/
optrecord.py 149 def Link(self):
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_deadlock_detector2.cc 42 struct Link {
49 explicit Link(u32 id = 0, u32 seq = 0, u32 tid = 0, u32 s0 = 0, u32 s1 = 0)
62 Link pending[kMaxMutex];
63 Link path[kMaxMutex];
81 Link link[kMaxLink]; member in struct:__sanitizer::Mutex
232 Link *link = &mtx1->link[li]; local
233 if (link->id == m->id)
248 Link *link = &mtx1->link[mtx1->nlink++]; local
371 Link link = pt->pending[--npending]; local
405 Link *link = &pt->path[i]; local
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_deadlock_detector2.cpp 41 struct Link {
48 explicit Link(u32 id = 0, u32 seq = 0, u32 tid = 0, u32 s0 = 0, u32 s1 = 0)
61 Link pending[kMaxMutex];
62 Link path[kMaxMutex];
80 Link link[kMaxLink]; member in struct:__sanitizer::MutexState
229 Link *link = &mtx1->link[li]; local
230 if (link->id == m->id)
245 Link *link = &mtx1->link[mtx1->nlink++]; local
368 Link link = pt->pending[--npending]; local
402 Link *link = &pt->path[i]; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_deadlock_detector2.cpp 41 struct Link {
48 explicit Link(u32 id = 0, u32 seq = 0, u32 tid = 0, u32 s0 = 0, u32 s1 = 0)
61 Link pending[kMaxMutex];
62 Link path[kMaxMutex];
80 Link link[kMaxLink]; member in struct:__sanitizer::MutexState
229 Link *link = &mtx1->link[li]; local
230 if (link->id == m->id)
245 Link *link = &mtx1->link[mtx1->nlink++]; local
368 Link link = pt->pending[--npending]; local
402 Link *link = &pt->path[i]; local
    [all...]
  /src/sys/external/bsd/gnu-efi/dist/inc/
pci22.h 146 LIST_ENTRY Link;
efishell.h 53 EFI_LIST_ENTRY Link;
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
StratifiedSets.h 37 /// A "link" between two StratifiedSets.
50 /// The link for the set "below" current
186 return Link.hasAbove();
191 return Link.hasBelow();
196 Link.Below = I;
201 Link.Above = I;
206 Link.clearBelow();
211 Link.clearAbove();
217 return Link.Below;
223 return Link.Above
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86WinEHState.cpp 99 /// The stack allocation containing all EH data, including the link in the
110 Value *Link = nullptr;
294 Link = Builder.CreateStructGEP(RegNodeTy, RegNode, 1);
349 Link = Builder.CreateStructGEP(RegNodeTy, RegNode, 2);
428 Builder.CreateStore(HandlerI8, Builder.CreateStructGEP(LinkTy, Link, 1));
433 Builder.CreateStore(Next, Builder.CreateStructGEP(LinkTy, Link, 0));
434 // [fs:00] = Link
435 Builder.CreateStore(Link, FSZero);
439 // Clone Link into the current BB for better address mode folding.
440 if (auto *GEP = dyn_cast<GetElementPtrInst>(Link)) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cov/
SourceCoverageViewHTML.cpp 60 // Create an anchor to \p Link with the label \p Str.
61 std::string a(const std::string &Link, const std::string &Str,
64 return "<a " + Name + "href='" + Link + "'>" + Str + "</a>";
265 // Link to a stylesheet if one is available. Otherwise, use the default style.
269 OS << "<link rel='stylesheet' type='text/css' href='"
334 /// false, link the summary to \p SF.
360 // Simplify the display file path, and wrap it in a link if requested.
422 // Emit a link to some documentation.
456 std::string Link = buildLinkToFile(SourceFiles[I], FileReports[I]);
457 OSRef << tag("tr", tag("td", tag("pre", Link)), "light-row") << '\n'
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
ELFEmitter.cpp 568 reportError("unable to link '" + LocSec + "' to excluded section '" + S +
756 if (Sec->Link) {
757 SHeader.sh_link = toSectionIndex(*Sec->Link, Sec->Name);
760 unsigned Link = 0;
762 SN2I.lookup(LinkSec, Link))
763 SHeader.sh_link = Link;
1241 const bool IsDynamic = Section.Link && (*Section.Link == ".dynsym");
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
ARMWinEHPrinter.cpp 313 unsigned Link = (OC[Offset] & 0x20) >> 5;
314 uint16_t RegisterMask = (Link << (Prologue ? 14 : 15))
344 unsigned Link = (OC[Offset] & 0x4) >> 3;
347 uint16_t GPRMask = (Link << (Prologue ? 14 : 15))
361 unsigned Link = (OC[Offset] & 0x4) >> 2;
364 uint16_t GPRMask = (Link << (Prologue ? 14 : 15))
ELFDumper.cpp 169 uint32_t Link;
3571 OS << " L (link order), O (extra OS processing required), G (group), T "
4017 {SHF_STRINGS, "STRINGS"}, {SHF_INFO_LINK, "INFO LINK"},
4018 {SHF_LINK_ORDER, "LINK ORDER"}, {SHF_OS_NONCONFORMING, "OS NONCONF"},
4429 << " Link: " << Sec.sh_link << " (" << LinkedSecName << ")\n";
6269 W.printNumber("Link", G.Link);
6356 W.printNumber("Link", Sec.sh_link);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
ELFYAML.h 225 Optional<StringRef> Link;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
Object.h 407 uint64_t Link = ELF::SHN_UNDEF;

Completed in 53 milliseconds