Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp239 uint16_t NDesc; member
311 uint16_t NDesc = 0; in darwinPrintSymbol() local
336 NDesc |= MachO::N_WEAK_DEF; in darwinPrintSymbol()
347 NDesc = STE_64.n_desc; in darwinPrintSymbol()
353 NDesc = S.NDesc; in darwinPrintSymbol()
365 NDesc = STE.n_desc; in darwinPrintSymbol()
371 NDesc = S.NDesc; in darwinPrintSymbol()
381 << format("%02x %02x %04x %08x", NType, NSect, NDesc, NStrx) << ' ' in darwinPrintSymbol()
411 if (MachO::GET_COMM_ALIGN(NDesc) != 0) in darwinPrintSymbol()
412 outs() << "(alignment 2^" << (int)MachO::GET_COMM_ALIGN(NDesc) << ") "; in darwinPrintSymbol()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp1712 uint16_t NDesc = 0; in checkSymbolTable() local
1723 NDesc = STE_64.n_desc; in checkSymbolTable()
1730 NDesc = STE.n_desc; in checkSymbolTable()
1749 uint32_t LibraryOrdinal = MachO::GET_LIBRARY_ORDINAL(NDesc); in checkSymbolTable()