HomeSort by relevance Sort by last modified time
    Searched refs:SectionIndex (Results 1 - 10 of 10) sorted by null

  /external/smali/dexlib/src/main/java/org/jf/dexlib/
ReadContext.java 110 SparseArray<Item> sa = itemsByType[itemType.SectionIndex];
131 SparseArray<Item> sa = itemsByType[itemType.SectionIndex];
147 int storedSectionSize = sectionSizes[itemType.SectionIndex];
149 sectionSizes[itemType.SectionIndex] = sectionSize;
157 int storedSectionOffset = sectionOffsets[itemType.SectionIndex];
159 sectionOffsets[itemType.SectionIndex] = sectionOffset;
177 SparseArray<Item> sa = itemsByType[itemType.SectionIndex];
190 return sectionSizes[itemType.SectionIndex];
198 return sectionOffsets[itemType.SectionIndex];
ItemType.java 83 public final int SectionIndex;
93 * @param sectionIndex index for this item's section
97 private ItemType(int mapValue, int sectionIndex, int itemAlignment, String typeName) {
99 this.SectionIndex = sectionIndex;
DexFile.java 451 return (Section<T>)sectionsByType[item.getItemType().SectionIndex];
460 return sectionsByType[itemType.SectionIndex];
    [all...]
  /external/llvm/lib/Object/
MachOObjectFile.cpp 133 if (Entry->SectionIndex) {
135 getSection64(Sections[Entry->SectionIndex-1], Section);
142 if (Entry->SectionIndex) {
144 getSection(Sections[Entry->SectionIndex-1], Section);
171 uint8_t SectionIndex;
176 SectionIndex = Entry->SectionIndex;
177 if (!SectionIndex) {
194 if (Entry->SectionIndex == SectionIndex && Entry->Value > BeginOffset
    [all...]
  /external/llvm/tools/macho-dump/
macho-dump.cpp 202 uint8_t Type, uint8_t SectionIndex,
207 outs() << " ('n_sect', " << uint32_t(SectionIndex) << ")\n";
247 STE->SectionIndex, STE->Flags, STE->Value);
257 STE->SectionIndex, STE->Flags, STE->Value);
  /external/llvm/include/llvm/Object/
MachOFormat.h 270 uint8_t SectionIndex;
277 uint8_t SectionIndex;
  /external/llvm/lib/MC/
MachObjectWriter.cpp 343 Write8(MSD.SectionIndex);
466 MSD.SectionIndex = 0;
469 MSD.SectionIndex = 0;
472 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
473 assert(MSD.SectionIndex && "Invalid section index!");
502 MSD.SectionIndex = 0;
505 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
506 assert(MSD.SectionIndex && "Invalid section index!");
ELFObjectWriter.cpp 73 uint32_t SectionIndex;
567 Size, Other, MSD.SectionIndex, IsReserved);
907 MSD.SectionIndex = ELF::SHN_COMMON;
909 MSD.SectionIndex = ELF::SHN_ABS;
912 MSD.SectionIndex = SectionIndexMap.lookup(RevGroupMap[&Symbol]);
914 MSD.SectionIndex = ELF::SHN_UNDEF;
918 MSD.SectionIndex = SectionIndexMap.lookup(&Section);
919 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
921 assert(MSD.SectionIndex && "Invalid section index!");
932 unsigned Skip = MSD.SectionIndex == ELF::SHN_UNDEF ? 2 : 1
    [all...]
MCAssembler.cpp 570 unsigned SectionIndex = 0;
577 it->setOrdinal(SectionIndex++);
  /external/llvm/include/llvm/MC/
MCMachObjectWriter.h 81 uint8_t SectionIndex;

Completed in 108 milliseconds