Home
last modified time | relevance | path

Searched refs:SymbolEntry (Results 26 – 50 of 154) sorted by relevance

1234567

/dports/devel/llvm90/llvm-9.0.1.src/tools/llvm-objcopy/MachO/
H A DObject.h86 struct SymbolEntry { struct
98 std::vector<std::unique_ptr<SymbolEntry>> Symbols; argument
100 const SymbolEntry *getSymbolByIndex(uint32_t Index) const;
110 const SymbolEntry *Symbol;
H A DMachOReader.cpp167 SymbolEntry constructSymbolEntry(StringRef StrTable, const nlist_t &nlist) { in constructSymbolEntry()
170 SymbolEntry SE; in constructSymbolEntry()
182 SymbolEntry SE = in readSymbolTable()
191 O.SymTable.Symbols.push_back(llvm::make_unique<SymbolEntry>(SE)); in readSymbolTable()
/dports/devel/llvm10/llvm-10.0.1.src/tools/llvm-objcopy/MachO/
H A DObject.cpp8 const SymbolEntry *SymbolTable::getSymbolByIndex(uint32_t Index) const { in getSymbolByIndex()
13 SymbolEntry *SymbolTable::getSymbolByIndex(uint32_t Index) { in getSymbolByIndex()
14 return const_cast<SymbolEntry *>( in getSymbolByIndex()
19 function_ref<bool(const std::unique_ptr<SymbolEntry> &)> ToRemove) { in removeSymbols()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llvm/tools/llvm-objcopy/MachO/
H A DObject.cpp8 const SymbolEntry *SymbolTable::getSymbolByIndex(uint32_t Index) const { in getSymbolByIndex()
13 SymbolEntry *SymbolTable::getSymbolByIndex(uint32_t Index) { in getSymbolByIndex()
14 return const_cast<SymbolEntry *>( in getSymbolByIndex()
19 function_ref<bool(const std::unique_ptr<SymbolEntry> &)> ToRemove) { in removeSymbols()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/jfr/recorder/checkpoint/types/
H A DjfrTypeSetUtils.hpp212 typedef SymbolTable::HashEntry SymbolEntry; typedef in JfrSymbolId
217 const SymbolEntry* _sym_list;
225 void on_link(const SymbolEntry* entry);
226 bool on_equals(uintptr_t hash, const SymbolEntry* entry);
227 void on_unlink(const SymbolEntry* entry);
308 const JfrSymbolId::SymbolEntry* map_symbol(const Symbol* symbol) const;
309 const JfrSymbolId::SymbolEntry* map_symbol(uintptr_t hash) const;
H A DjfrTypeSetUtils.cpp85 void JfrSymbolId::on_link(const SymbolEntry* entry) { in on_link()
94 bool JfrSymbolId::on_equals(uintptr_t hash, const SymbolEntry* entry) { in on_equals()
101 void JfrSymbolId::on_unlink(const SymbolEntry* entry) { in on_unlink()
160 const SymbolEntry& entry = _sym_table->lookup_put(hash, data); in mark()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/jfr/recorder/checkpoint/types/
H A DjfrTypeSetUtils.hpp212 typedef SymbolTable::HashEntry SymbolEntry; typedef in JfrSymbolId
217 const SymbolEntry* _sym_list;
225 void on_link(const SymbolEntry* entry);
226 bool on_equals(uintptr_t hash, const SymbolEntry* entry);
227 void on_unlink(const SymbolEntry* entry);
308 const JfrSymbolId::SymbolEntry* map_symbol(const Symbol* symbol) const;
309 const JfrSymbolId::SymbolEntry* map_symbol(uintptr_t hash) const;
H A DjfrTypeSetUtils.cpp85 void JfrSymbolId::on_link(const SymbolEntry* entry) { in on_link()
94 bool JfrSymbolId::on_equals(uintptr_t hash, const SymbolEntry* entry) { in on_equals()
101 void JfrSymbolId::on_unlink(const SymbolEntry* entry) { in on_unlink()
160 const SymbolEntry& entry = _sym_table->lookup_put(hash, data); in mark()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/hotspot/share/jfr/recorder/checkpoint/types/
H A DjfrTypeSetUtils.hpp212 typedef SymbolTable::HashEntry SymbolEntry; typedef in JfrSymbolId
217 const SymbolEntry* _sym_list;
225 void on_link(const SymbolEntry* entry);
226 bool on_equals(uintptr_t hash, const SymbolEntry* entry);
227 void on_unlink(const SymbolEntry* entry);
308 const JfrSymbolId::SymbolEntry* map_symbol(const Symbol* symbol) const;
309 const JfrSymbolId::SymbolEntry* map_symbol(uintptr_t hash) const;
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/hotspot/share/jfr/recorder/checkpoint/types/
H A DjfrTypeSetUtils.hpp225 typedef SymbolTable::HashEntry SymbolEntry; typedef in JfrSymbolId
233 void assign_id(SymbolEntry* entry);
234 bool equals(const Symbol* query, uintptr_t hash, const SymbolEntry* entry);
256 const SymbolEntry* map_symbol(const Symbol* symbol) const;
257 const SymbolEntry* map_symbol(uintptr_t hash) const;
332 const JfrSymbolId::SymbolEntry* map_symbol(const Symbol* symbol) const;
333 const JfrSymbolId::SymbolEntry* map_symbol(uintptr_t hash) const;
H A DjfrTypeSetUtils.cpp81 const JfrSymbolId::SymbolEntry* JfrSymbolId::map_symbol(const Symbol* symbol) const { in map_symbol()
85 const JfrSymbolId::SymbolEntry* JfrSymbolId::map_symbol(uintptr_t hash) const { in map_symbol()
93 void JfrSymbolId::assign_id(SymbolEntry* entry) { in assign_id()
99 bool JfrSymbolId::equals(const Symbol* query, uintptr_t hash, const SymbolEntry* entry) { in equals()
246 const JfrSymbolId::SymbolEntry* JfrArtifactSet::map_symbol(const Symbol* symbol) const { in map_symbol()
250 const JfrSymbolId::SymbolEntry* JfrArtifactSet::map_symbol(uintptr_t hash) const { in map_symbol()
/dports/devel/plasma/plasma-5bb07b3/plasma/lib/fileformat/
H A Dpefile2.py66 class SymbolEntry(Structure): class
81 end = off + sizeof(SymbolEntry)
84 return SymbolEntry.from_buffer_copy(self.__data__[off:end])
H A Dpe.py32 from plasma.lib.fileformat.pefile2 import PE2, SymbolEntry, PE_DT_FCN, PE_DT_PTR
72 string_table_off = sym_table_off + sizeof(SymbolEntry) * n_sym
100 off += sym.numaux * sizeof(SymbolEntry)
103 off += sizeof(SymbolEntry)
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/hotspot/share/jfr/recorder/checkpoint/types/
H A DjfrTypeSetUtils.hpp216 typedef SymbolTable::HashEntry SymbolEntry; typedef in JfrSymbolId
221 const SymbolEntry* _sym_list;
229 void on_link(const SymbolEntry* entry);
230 bool on_equals(uintptr_t hash, const SymbolEntry* entry);
231 void on_unlink(const SymbolEntry* entry);
313 const JfrSymbolId::SymbolEntry* map_symbol(const Symbol* symbol) const;
314 const JfrSymbolId::SymbolEntry* map_symbol(uintptr_t hash) const;
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/hotspot/share/jfr/recorder/checkpoint/types/
H A DjfrTypeSetUtils.hpp224 typedef SymbolTable::HashEntry SymbolEntry; typedef in JfrSymbolId
229 const SymbolEntry* _sym_list;
237 void on_link(const SymbolEntry* entry);
238 bool on_equals(uintptr_t hash, const SymbolEntry* entry);
239 void on_unlink(const SymbolEntry* entry);
321 const JfrSymbolId::SymbolEntry* map_symbol(const Symbol* symbol) const;
322 const JfrSymbolId::SymbolEntry* map_symbol(uintptr_t hash) const;
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/hotspot/share/jfr/recorder/checkpoint/types/
H A DjfrTypeSetUtils.hpp216 typedef SymbolTable::HashEntry SymbolEntry; typedef in JfrSymbolId
221 const SymbolEntry* _sym_list;
229 void on_link(const SymbolEntry* entry);
230 bool on_equals(uintptr_t hash, const SymbolEntry* entry);
231 void on_unlink(const SymbolEntry* entry);
313 const JfrSymbolId::SymbolEntry* map_symbol(const Symbol* symbol) const;
314 const JfrSymbolId::SymbolEntry* map_symbol(uintptr_t hash) const;
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/hotspot/share/jfr/recorder/checkpoint/types/
H A DjfrTypeSetUtils.hpp214 typedef SymbolTable::HashEntry SymbolEntry; typedef in JfrSymbolId
219 const SymbolEntry* _sym_list;
227 void on_link(const SymbolEntry* entry);
228 bool on_equals(uintptr_t hash, const SymbolEntry* entry);
229 void on_unlink(const SymbolEntry* entry);
310 const JfrSymbolId::SymbolEntry* map_symbol(const Symbol* symbol) const;
311 const JfrSymbolId::SymbolEntry* map_symbol(uintptr_t hash) const;
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/hotspot/src/share/vm/jfr/recorder/checkpoint/types/
H A DjfrTypeSetUtils.hpp230 typedef SymbolTable::HashEntry SymbolEntry; typedef in JfrSymbolId
239 void assign_id(SymbolEntry* entry);
240 bool equals(const Symbol* query, uintptr_t hash, const SymbolEntry* entry);
269 const SymbolEntry* map_symbol(const Symbol* symbol) const;
323 const JfrSymbolId::SymbolEntry* map_symbol(const Symbol* symbol) const;
H A DjfrTypeSetUtils.cpp85 const JfrSymbolId::SymbolEntry* JfrSymbolId::map_symbol(const Symbol* symbol) const { in map_symbol()
93 void JfrSymbolId::assign_id(SymbolEntry* entry) { in assign_id()
99 bool JfrSymbolId::equals(const Symbol* query, uintptr_t hash, const SymbolEntry* entry) { in equals()
270 const JfrSymbolId::SymbolEntry* JfrArtifactSet::map_symbol(const Symbol* symbol) const { in map_symbol()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/hotspot/src/share/vm/jfr/recorder/checkpoint/types/
H A DjfrTypeSetUtils.hpp230 typedef SymbolTable::HashEntry SymbolEntry; typedef in JfrSymbolId
239 void assign_id(SymbolEntry* entry);
240 bool equals(const Symbol* query, uintptr_t hash, const SymbolEntry* entry);
269 const SymbolEntry* map_symbol(const Symbol* symbol) const;
323 const JfrSymbolId::SymbolEntry* map_symbol(const Symbol* symbol) const;
H A DjfrTypeSetUtils.cpp85 const JfrSymbolId::SymbolEntry* JfrSymbolId::map_symbol(const Symbol* symbol) const { in map_symbol()
93 void JfrSymbolId::assign_id(SymbolEntry* entry) { in assign_id()
99 bool JfrSymbolId::equals(const Symbol* query, uintptr_t hash, const SymbolEntry* entry) { in equals()
270 const JfrSymbolId::SymbolEntry* JfrArtifactSet::map_symbol(const Symbol* symbol) const { in map_symbol()
/dports/editors/libreoffice/libreoffice-7.2.6.2/unotools/source/misc/
H A Dfontcvt.cxx1032 struct SymbolEntry struct
1041 ::std::multimap<sal_Unicode, SymbolEntry> maMagicMap;
1173 SymbolEntry aEntry; in StarSymbolToMSMultiFontImpl()
1201 SymbolEntry aEntry; in StarSymbolToMSMultiFontImpl()
1230 ::std::multimap<sal_Unicode, SymbolEntry>::const_iterator aResult = in ConvertChar()
1235 const SymbolEntry &rEntry = (*aResult).second; in ConvertChar()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/unotools/source/misc/
H A Dfontcvt.cxx1026 struct SymbolEntry struct
1035 ::std::multimap<sal_Unicode, SymbolEntry> maMagicMap; argument
1165 SymbolEntry aEntry; in StarSymbolToMSMultiFontImpl()
1193 SymbolEntry aEntry; in StarSymbolToMSMultiFontImpl()
1222 ::std::multimap<sal_Unicode, SymbolEntry>::const_iterator aResult = in ConvertChar()
1227 const SymbolEntry &rEntry = (*aResult).second; in ConvertChar()
/dports/chinese/libchewing/libchewing-0.5.1/include/internal/
H A Dchewing-private.h177 typedef struct SymbolEntry { struct
193 } SymbolEntry; argument
220 SymbolEntry **symbol_table;
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/shared/test/unit_test/device_binary_format/
H A Dzebin_debug_binary_tests.cpp42 typedef NEO::Elf::ElfSymbolEntry<NEO::Elf::ELF_IDENTIFIER_CLASS::EI_CLASS_64> SymbolEntry; in TEST() typedef
45 SymbolEntry symbols[5]{}; in TEST()
48 symbols[0].shndx = static_cast<decltype(SymbolEntry::shndx)>(kernelSectionIndex); in TEST()
53 symbols[1].shndx = static_cast<decltype(SymbolEntry::shndx)>(constDataSectionIndex); in TEST()
58 symbols[2].shndx = static_cast<decltype(SymbolEntry::shndx)>(varDataSectionIndex); in TEST()
63 symbols[3].shndx = static_cast<decltype(SymbolEntry::shndx)>(debugAbbrevSectionIndex); in TEST()
68 symbols[4].shndx = static_cast<decltype(SymbolEntry::shndx)>(zeInfoSectionIndex); in TEST()

1234567