HomeSort by relevance Sort by last modified time
    Searched full:sectionid (Results 1 - 25 of 32) sorted by null

1 2

  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 81 /// SectionID - the section this relocation points to.
82 unsigned SectionID;
113 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
118 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
123 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
129 : SectionID(id), Offset(offset), RelType(type),
139 unsigned SectionID;
143 RelocationValueRef() : SectionID(0), Offset(0), Addend(0),
147 return SectionID == Other.SectionID && Offset == Other.Offset &
    [all...]
RuntimeDyld.cpp 54 // symbol for the relocation is located. The SectionID in the relocation
169 unsigned SectionID =
171 LocalSymbols[Name.data()] = SymbolLoc(SectionID, SectOffset);
173 << " flags: " << Flags << " SID: " << SectionID);
174 GlobalSymbolTable[Name] = SymbolLoc(SectionID, SectOffset);
188 unsigned SectionID = 0;
200 SectionID =
202 DEBUG(dbgs() << "\tSectionID: " << SectionID << "\n");
205 I = processRelocationRef(SectionID, I, *Obj, LocalSections, LocalSymbols,
362 unsigned SectionID = Sections.size()
    [all...]
RuntimeDyldELF.cpp 623 // Set a default SectionID in case we do not find a TOC section below.
629 Rel.SectionID = 0;
643 Rel.SectionID = findOrEmitSection(Obj, *si, false, LocalSections);
709 Rel.SectionID = findOrEmitSection(Obj, (*tsi), IsCode, LocalSections);
    [all...]
RuntimeDyldMachO.h 66 unsigned SectionID,
72 unsigned SectionID,
89 // When a module is loaded we save the SectionID of the EH frame section
99 processRelocationRef(unsigned SectionID, relocation_iterator RelI,
RuntimeDyldMachO.cpp 242 // The target location for the relocation is described by RE.SectionID and
243 // RE.Offset. RE.SectionID can be used to find the SectionEntry. Each
265 const SectionEntry &Section = Sections[RE.SectionID];
269 dbgs() << "resolveRelocation Section: " << RE.SectionID
302 const SectionEntry &Section = Sections[RE.SectionID];
332 const SectionEntry &Section = Sections[RE.SectionID];
364 const SectionEntry &Section = Sections[RE.SectionID];
417 const SectionEntry &Section = Sections[RE.SectionID];
548 unsigned SectionID,
557 SectionEntry &Section = Sections[SectionID];
    [all...]
RuntimeDyldELF.h 101 // When a module is loaded we save the SectionID of the EH frame section
112 processRelocationRef(unsigned SectionID, relocation_iterator RelI,
  /external/chromium_org/third_party/WebKit/Source/core/xml/
DocumentXMLTreeViewer.js 418 function expandFunction(sectionId)
422 document.querySelector('#' + sectionId + ' > .expanded').className = 'expanded';
423 document.querySelector('#' + sectionId + ' > .collapsed').className = 'collapsed hidden';
427 function collapseFunction(sectionId)
431 document.querySelector('#' + sectionId + ' > .expanded').className = 'expanded hidden';
432 document.querySelector('#' + sectionId + ' > .collapsed').className = 'collapsed';
440 var sectionId = 'collapsible' + i;
441 sections[i].id = sectionId;
443 var expandedPart = sections[i].querySelector('#' + sectionId + ' > .expanded');
445 collapseButton.onclick = collapseFunction(sectionId);
    [all...]
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITCAPITest.cpp 35 unsigned sectionID,
39 size, alignment, sectionID, sectionName);
44 unsigned sectionID,
50 size, alignment, sectionID, sectionName, isReadOnly);
107 unsigned SectionID, StringRef SectionName, bool IsReadOnly) {
110 SectionID, SectionName, IsReadOnly);
114 unsigned SectionID, StringRef SectionName) {
117 SectionID, SectionName);
  /external/llvm/include/llvm/ExecutionEngine/
RTDyldMemoryManager.h 41 /// executable code. The SectionID is a unique identifier assigned by the JIT
45 uintptr_t Size, unsigned Alignment, unsigned SectionID,
49 /// The SectionID is a unique identifier assigned by the JIT engine, and
52 uintptr_t Size, unsigned Alignment, unsigned SectionID,
SectionMemoryManager.h 51 unsigned SectionID,
60 unsigned SectionID, StringRef SectionName,
RuntimeDyld.h 45 void reassignSectionAddress(unsigned SectionID, uint64_t Addr);
  /external/lldb/source/Expression/
IRExecutionUnit.cpp 493 unsigned SectionID)
497 uint8_t *return_value = m_default_mm_ap->allocateCodeSection(Size, Alignment, SectionID);
503 SectionID));
507 log->Printf("IRExecutionUnit::allocateCodeSection(Size=0x%" PRIx64 ", Alignment=%u, SectionID=%u) = %p",
508 (uint64_t)Size, Alignment, SectionID, return_value);
517 unsigned SectionID,
522 uint8_t *return_value = m_default_mm_ap->allocateDataSection(Size, Alignment, SectionID, IsReadOnly);
528 SectionID));
531 log->Printf("IRExecutionUnit::allocateDataSection(Size=0x%" PRIx64 ", Alignment=%u, SectionID=%u) = %p",
532 (uint64_t)Size, Alignment, SectionID, return_value)
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 358 unsigned SectionID,
362 unsigned SectionID, StringRef SectionName,
391 uintptr_t Size, unsigned Alignment, unsigned SectionID,
393 return Functions.AllocateCodeSection(Opaque, Size, Alignment, SectionID,
398 uintptr_t Size, unsigned Alignment, unsigned SectionID,
400 return Functions.AllocateDataSection(Opaque, Size, Alignment, SectionID,
  /packages/apps/Contacts/src/com/android/contacts/widget/
PinnedHeaderListDemoActivity.java 124 final int sectionId = i;
129 adapter.changeCursor(sectionId, cursor);
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.h 38 unsigned SectionID,
40 return ClientMM->allocateCodeSection(Size, Alignment, SectionID, SectionName);
44 unsigned SectionID, StringRef SectionName,
47 SectionID, SectionName, IsReadOnly);
SectionMemoryManager.cpp 23 unsigned SectionID,
33 unsigned SectionID,
  /external/llvm/include/llvm-c/
ExecutionEngine.h 177 void *Opaque, uintptr_t Size, unsigned Alignment, unsigned SectionID,
180 void *Opaque, uintptr_t Size, unsigned Alignment, unsigned SectionID,
  /external/llvm/tools/lli/
RemoteMemoryManager.h 70 unsigned SectionID,
74 unsigned SectionID, StringRef SectionName,
RemoteMemoryManager.cpp 33 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID,
49 unsigned SectionID, StringRef SectionName,
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 91 unsigned SectionID,
94 unsigned SectionID, StringRef SectionName,
113 unsigned SectionID,
122 unsigned SectionID,
  /external/owasp/sanitizer/tools/findbugs/src/xsl/
default.xsl 207 <xsl:with-param name="sectionId">Warnings_<xsl:value-of select="$catkey"/></xsl:with-param>
279 <xsl:param name="sectionId"/>
281 <h2><a name="{$sectionId}"><xsl:value-of select="$sectionTitle"/></a></h2>
plain.xsl 133 <xsl:with-param name="sectionId">Warnings_<xsl:value-of select="$catkey"/></xsl:with-param>
198 <xsl:param name="sectionId"/>
200 <h2><a name="{$sectionId}"><xsl:value-of select="$sectionTitle"/></a></h2>
  /external/llvm/unittests/ExecutionEngine/JIT/
JITTest.cpp 140 uintptr_t Size, unsigned Alignment, unsigned SectionID,
143 Size, Alignment, SectionID, SectionName, IsReadOnly);
146 uintptr_t Size, unsigned Alignment, unsigned SectionID,
149 Size, Alignment, SectionID, SectionName);
  /external/chromium_org/chrome/browser/resources/chromeos/
power.js 821 * @param {string} sectionId The ID of the section which is to be shown or
828 function showHideCallback(sectionId, buttonId, requestFunction) {
830 if ($(sectionId).hidden) {
831 $(sectionId).hidden = false;
835 $(sectionId).hidden = true;
  /frameworks/av/camera/
VendorTagDescriptor.cpp 369 uint32_t sectionId = mTagToSectionMap.valueFor(tag);
370 String8 sectionName = mSections[sectionId];

Completed in 318 milliseconds

1 2