Home
last modified time | relevance | path

Searched refs:CS16 (Results 1 – 2 of 2) sorted by relevance

/external/llvm/include/llvm/Object/
DCOFF.h283 COFFSymbolRef(const coff_symbol16 *CS) : CS16(CS), CS32(nullptr) {} in COFFSymbolRef()
284 COFFSymbolRef(const coff_symbol32 *CS) : CS16(nullptr), CS32(CS) {} in COFFSymbolRef()
285 COFFSymbolRef() : CS16(nullptr), CS32(nullptr) {} in COFFSymbolRef()
288 return CS16 ? static_cast<const void *>(CS16) : CS32; in getRawPtr()
292 if (CS16) in getGeneric()
293 return reinterpret_cast<const coff_symbol_generic *>(CS16); in getGeneric()
302 if (CS16) in isBigObj()
310 return CS16 ? CS16->Name.ShortName : CS32->Name.ShortName; in getShortName()
315 return CS16 ? CS16->Name.Offset : CS32->Name.Offset; in getStringTableOffset()
318 uint32_t getValue() const { return CS16 ? CS16->Value : CS32->Value; } in getValue()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
DCOFF.h284 COFFSymbolRef(const coff_symbol16 *CS) : CS16(CS) {} in COFFSymbolRef()
288 return CS16 ? static_cast<const void *>(CS16) : CS32; in getRawPtr()
292 if (CS16) in getGeneric()
293 return reinterpret_cast<const coff_symbol_generic *>(CS16); in getGeneric()
302 if (CS16) in isBigObj()
310 return CS16 ? CS16->Name.ShortName : CS32->Name.ShortName; in getShortName()
315 return CS16 ? CS16->Name.Offset : CS32->Name.Offset; in getStringTableOffset()
318 uint32_t getValue() const { return CS16 ? CS16->Value : CS32->Value; } in getValue()
322 if (CS16) { in getSectionNumber()
324 if (CS16->SectionNumber <= COFF::MaxNumberOfSections16) in getSectionNumber()
[all …]