Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp395 uint64_t NValue = 0; in darwinPrintSymbol() local
431 NValue = STE_64.n_value; in darwinPrintSymbol()
437 NValue = S.Address; in darwinPrintSymbol()
449 NValue = STE.n_value; in darwinPrintSymbol()
455 NValue = S.Address; in darwinPrintSymbol()
462 outs() << format(printFormat, NValue) << ' ' in darwinPrintSymbol()
467 outs() << format(printFormat, NValue) << ' '; in darwinPrintSymbol()
491 if (NValue != 0) { in darwinPrintSymbol()
621 (((NType & MachO::N_TYPE) == MachO::N_UNDF && NValue == 0) || in darwinPrintSymbol()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DMachOObjectFile.cpp1694 uint64_t NValue = 0; in checkSymbolTable() local
1705 NValue = STE_64.n_value; in checkSymbolTable()
1712 NValue = STE.n_value; in checkSymbolTable()
1721 if (NValue >= S.strsize) in checkSymbolTable()
1722 return malformedError("bad n_value: " + Twine((int)NValue) + " past " in checkSymbolTable()
1727 (((NType & MachO::N_TYPE) == MachO::N_UNDF && NValue == 0) || in checkSymbolTable()
1793 uint64_t NValue = getNValue(Symb); in getIndirectName() local
1794 if (NValue >= StringTable.size()) in getIndirectName()
1796 const char *Start = &StringTable.data()[NValue]; in getIndirectName()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DSimplifyIndVar.cpp378 auto *NValue = Rem->getOperand(0); in simplifyIVRemainder() local
383 bool UsedAsNumerator = IVOperand == NValue; in simplifyIVRemainder()
387 const SCEV *N = SE->getSCEV(NValue); in simplifyIVRemainder()