HomeSort by relevance Sort by last modified time
    Searched refs:StringTable (Results 126 - 150 of 265) sorted by null

1 2 3 4 56 7 8 91011

  /external/swiftshader/third_party/LLVM/lib/MC/
ELFObjectWriter.cpp 283 assert(StringTable.size() && "Missing string table");
570 StringTable += '\x00';
639 Entry = StringTable.size();
640 StringTable += Name;
641 StringTable += '\x00';
854 F->getContents().append(StringTable.begin(), StringTable.end());
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/BootSector/
efi32.asm 313 shl eax, 2 ;; multiply by 4 to get offset from StringTable to actual string address
314 add eax, offset StringTable
557 StringTable dd offset Int0String, offset Int1String, offset Int2String, offset Int3String,
efi64.asm 381 shl eax, 3 ;; multiply by 8 to get offset from StringTable to actual string address
382 add eax, offset StringTable
752 StringTable dq offset Int0String, offset Int1String, offset Int2String, offset Int3String,
  /external/llvm/lib/Object/
COFFObjectFile.cpp 133 auto End = reinterpret_cast<uintptr_t>(StringTable);
410 getObject(StringTable, Data, StringTableAddr, StringTableSize))
419 if (StringTableSize > 4 && StringTable[StringTableSize - 1] != 0)
632 SymbolTable32(nullptr), StringTable(nullptr), StringTableSize(0),
768 Ret.p = reinterpret_cast<uintptr_t>(StringTable);
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Core/
DistributionPackageClass.py 28 from Logger import StringTable as ST
PackageFile.py 36 from Logger import StringTable as ST
DependencyRules.py 26 from Logger import StringTable as ST
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/
MkPkg.py 35 from Logger import StringTable as ST
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Object/Parser/
InfGuidObject.py 27 from Logger import StringTable as ST
InfPpiObject.py 27 from Logger import StringTable as ST
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/
DecParserMisc.py 23 from Logger import StringTable as ST
InfGuidPpiProtocolSectionParser.py 22 from Logger import StringTable as ST
  /external/llvm/include/llvm/ObjectYAML/
MachOYAML.h 102 std::vector<StringRef> StringTable;
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ObjectYAML/
MachOYAML.h 104 std::vector<StringRef> StringTable;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ObjectYAML/
MachOYAML.h 104 std::vector<StringRef> StringTable;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ObjectYAML/
MachOYAML.h 104 std::vector<StringRef> StringTable;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ObjectYAML/
MachOYAML.h 104 std::vector<StringRef> StringTable;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ObjectYAML/
MachOYAML.h 104 std::vector<StringRef> StringTable;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ObjectYAML/
MachOYAML.h 104 std::vector<StringRef> StringTable;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ObjectYAML/
MachOYAML.h 104 std::vector<StringRef> StringTable;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ObjectYAML/
MachOYAML.h 104 std::vector<StringRef> StringTable;
  /dalvik/dx/src/com/android/dex/
Dex.java 64 private final StringTable strings = new StringTable();
714 private final class StringTable extends AbstractList<String> implements RandomAccess {
  /external/v8/src/
json-parser.cc 747 StringTable* string_table = isolate()->heap()->string_table();
749 uint32_t entry = StringTable::FirstProbe(hash, capacity);
771 entry = StringTable::NextProbe(entry, count++, capacity);
  /external/llvm/utils/TableGen/
AsmMatcherEmitter.cpp     [all...]
  /external/llvm/test/tools/llvm-readobj/Inputs/
relocs.py 154 class StringTable:
303 shstrtab = StringTable(f.read(sections[e_shstrndx].sh_size))
309 strtab = StringTable(f.read(section.sh_size))
    [all...]

Completed in 1438 milliseconds

1 2 3 4 56 7 8 91011