Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-mi/
H A DMICmnLLDBProxySBValue.cpp112 MIint64 nNum = 0; in GetCString() local
113 if (!strAddr.ExtractNumber(nNum)) in GetCString()
125 (lldb::addr_t)nNum, pBuffer, nBufferSize, error); in GetCString()
H A DMIUtilString.cpp441 const MIuint64 nNum = ::strtoull(this->c_str(), nullptr, 16); in ExtractNumberFromHexadecimal() local
445 vwrNumber = static_cast<MIint64>(nNum); in ExtractNumberFromHexadecimal()
549 MIuint64 nNum = vnDecimal; in FormatBinary() local
550 while ((nNum > 0) && (nLen < nConstBits)) { in FormatBinary()
551 nRem[i++] = nNum % 2; in FormatBinary()
552 nNum = nNum >> 1; in FormatBinary()