HomeSort by relevance Sort by last modified time
    Searched refs:SectionIndex (Results 1 - 12 of 12) 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/tools/llvm-readobj/
MachODumper.cpp 159 uint8_t SectionIndex;
201 Symbol.SectionIndex = Entry.SectionIndex;
209 Symbol.SectionIndex = Entry.SectionIndex;
225 int SectionIndex = -1;
232 ++SectionIndex;
247 W.printNumber("Index", SectionIndex);
423 W.printHex ("Section", SectionName, Symbol.SectionIndex);
ELFDumper.cpp 463 int SectionIndex = -1;
470 ++SectionIndex;
478 W.printNumber("Index", SectionIndex);
  /external/llvm/tools/macho-dump/
macho-dump.cpp 178 uint8_t Type, uint8_t SectionIndex,
185 outs() << " ('n_sect', " << uint32_t(SectionIndex) << ")\n";
216 STE.SectionIndex, STE.Flags, STE.Value,
221 STE.SectionIndex, STE.Flags, STE.Value,
  /external/llvm/include/llvm/Object/
MachOFormat.h 309 uint8_t SectionIndex;
320 uint8_t SectionIndex;
  /external/llvm/lib/MC/
MachObjectWriter.cpp 354 Write8(MSD.SectionIndex);
523 MSD.SectionIndex = 0;
526 MSD.SectionIndex = 0;
529 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
530 assert(MSD.SectionIndex && "Invalid section index!");
559 MSD.SectionIndex = 0;
562 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
563 assert(MSD.SectionIndex && "Invalid section index!");
    [all...]
ELFObjectWriter.cpp 72 uint32_t SectionIndex;
576 Size, Other, MSD.SectionIndex, IsReserved);
915 MSD.SectionIndex = ELF::SHN_COMMON;
917 MSD.SectionIndex = ELF::SHN_ABS;
920 MSD.SectionIndex = SectionIndexMap.lookup(RevGroupMap[&Symbol]);
922 MSD.SectionIndex = ELF::SHN_UNDEF;
926 MSD.SectionIndex = SectionIndexMap.lookup(&Section);
927 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
929 assert(MSD.SectionIndex && "Invalid section index!");
    [all...]
MCAssembler.cpp 768 unsigned SectionIndex = 0;
775 it->setOrdinal(SectionIndex++);
    [all...]
  /external/llvm/lib/Object/
MachOObjectFile.cpp 35 uint8_t SectionIndex;
484 if (Entry.SectionIndex) {
487 SecRel.d.a = Entry.SectionIndex-1;
519 uint8_t SectionIndex;
527 SectionIndex = Entry.SectionIndex;
528 if (!SectionIndex) {
545 if (Entry.SectionIndex == SectionIndex && Value > BeginOffset)
552 Sec.d.a = SectionIndex-1
    [all...]
  /external/llvm/include/llvm/MC/
MCMachObjectWriter.h 88 uint8_t SectionIndex;

Completed in 546 milliseconds