Lines Matching refs:CS16
283 COFFSymbolRef(const coff_symbol16 *CS) : CS16(CS) {} in COFFSymbolRef()
287 return CS16 ? static_cast<const void *>(CS16) : CS32; in getRawPtr()
291 if (CS16) in getGeneric()
292 return reinterpret_cast<const coff_symbol_generic *>(CS16); in getGeneric()
301 if (CS16) in isBigObj()
309 return CS16 ? CS16->Name.ShortName : CS32->Name.ShortName; in getShortName()
314 return CS16 ? CS16->Name.Offset : CS32->Name.Offset; in getStringTableOffset()
319 return CS16 ? CS16->Value : CS32->Value; in getValue()
324 if (CS16) { in getSectionNumber()
326 if (CS16->SectionNumber <= COFF::MaxNumberOfSections16) in getSectionNumber()
327 return CS16->SectionNumber; in getSectionNumber()
328 return static_cast<int16_t>(CS16->SectionNumber); in getSectionNumber()
335 return CS16 ? CS16->Type : CS32->Type; in getType()
340 return CS16 ? CS16->StorageClass : CS32->StorageClass; in getStorageClass()
345 return CS16 ? CS16->NumberOfAuxSymbols : CS32->NumberOfAuxSymbols; in getNumberOfAuxSymbols()
355 return CS16 ? reinterpret_cast<const T *>(CS16 + 1) in getAux()
434 bool isSet() const { return CS16 || CS32; } in isSet()
436 const coff_symbol16 *CS16 = nullptr; variable