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

/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp381 uint64_t NValue = 0; local
417 NValue = STE_64.n_value;
423 NValue = S.Address;
435 NValue = STE.n_value;
441 NValue = S.Address;
448 outs() << format(printFormat, NValue) << ' '
453 outs() << format(printFormat, NValue) << ' ';
477 if (NValue != 0) {
607 (((NType & MachO::N_TYPE) == MachO::N_UNDF && NValue == 0) ||
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyIndVar.cpp360 auto *NValue = Rem->getOperand(0); local
365 bool UsedAsNumerator = IVOperand == NValue;
369 const SCEV *N = SE->getSCEV(NValue);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp1691 uint64_t NValue = 0; local
1702 NValue = STE_64.n_value;
1709 NValue = STE.n_value;
1718 if (NValue >= S.strsize)
1719 return malformedError("bad n_value: " + Twine((int)NValue) + " past "
1724 (((NType & MachO::N_TYPE) == MachO::N_UNDF && NValue == 0) ||
1790 uint64_t NValue = getNValue(Symb);
1791 if (NValue >= StringTable.size())
1793 const char *Start = &StringTable.data()[NValue];

Completed in 80 milliseconds