Home
last modified time | relevance | path

Searched refs:NValue (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp313 uint64_t NValue = 0; in darwinPrintSymbol() local
349 NValue = STE_64.n_value; in darwinPrintSymbol()
355 NValue = S.Address; in darwinPrintSymbol()
367 NValue = STE.n_value; in darwinPrintSymbol()
373 NValue = S.Address; in darwinPrintSymbol()
380 outs() << format(printFormat, NValue) << ' ' in darwinPrintSymbol()
385 outs() << format(printFormat, NValue) << ' '; in darwinPrintSymbol()
409 if (NValue != 0) { in darwinPrintSymbol()
539 (((NType & MachO::N_TYPE) == MachO::N_UNDF && NValue == 0) || in darwinPrintSymbol()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp1714 uint64_t NValue = 0; in checkSymbolTable() local
1725 NValue = STE_64.n_value; in checkSymbolTable()
1732 NValue = STE.n_value; in checkSymbolTable()
1741 if (NValue >= S.strsize) in checkSymbolTable()
1742 return malformedError("bad n_value: " + Twine((int)NValue) + " past " in checkSymbolTable()
1747 (((NType & MachO::N_TYPE) == MachO::N_UNDF && NValue == 0) || in checkSymbolTable()
1813 uint64_t NValue = getNValue(Symb); in getIndirectName() local
1814 if (NValue >= StringTable.size()) in getIndirectName()
1816 const char *Start = &StringTable.data()[NValue]; in getIndirectName()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyIndVar.cpp370 auto *NValue = Rem->getOperand(0); in simplifyIVRemainder() local
375 bool UsedAsNumerator = IVOperand == NValue; in simplifyIVRemainder()
379 const SCEV *N = SE->getSCEV(NValue); in simplifyIVRemainder()