Home
last modified time | relevance | path

Searched refs:aUint64 (Results 1 – 8 of 8) sorted by relevance

/openthread-3.4.0/src/lib/spinel/
Dspinel_encoder.cpp141 otError Encoder::WriteUint64(uint64_t aUint64) in WriteUint64() argument
145 SuccessOrExit(error = mNcpBuffer.InFrameFeedByte((aUint64 >> 0) & 0xff)); in WriteUint64()
146 SuccessOrExit(error = mNcpBuffer.InFrameFeedByte((aUint64 >> 8) & 0xff)); in WriteUint64()
147 SuccessOrExit(error = mNcpBuffer.InFrameFeedByte((aUint64 >> 16) & 0xff)); in WriteUint64()
148 SuccessOrExit(error = mNcpBuffer.InFrameFeedByte((aUint64 >> 24) & 0xff)); in WriteUint64()
149 SuccessOrExit(error = mNcpBuffer.InFrameFeedByte((aUint64 >> 32) & 0xff)); in WriteUint64()
150 SuccessOrExit(error = mNcpBuffer.InFrameFeedByte((aUint64 >> 40) & 0xff)); in WriteUint64()
151 SuccessOrExit(error = mNcpBuffer.InFrameFeedByte((aUint64 >> 48) & 0xff)); in WriteUint64()
152 SuccessOrExit(error = mNcpBuffer.InFrameFeedByte((aUint64 >> 56) & 0xff)); in WriteUint64()
Dspinel_decoder.cpp172 otError Decoder::ReadUint64(uint64_t &aUint64) in ReadUint64() argument
178aUint64 = ((static_cast<uint64_t>(mFrame[mIndex + 0]) << 0) | (static_cast<uint64_t>(mFrame[mIndex… in ReadUint64()
Dspinel_decoder.hpp238 otError ReadUint64(uint64_t &aUint64);
Dspinel_encoder.hpp301 otError WriteUint64(uint64_t aUint64);
/openthread-3.4.0/src/cli/
Dcli_output.cpp125 const char *Output::Uint64ToString(uint64_t aUint64, Uint64StringBuffer &aBuffer) in Uint64ToString() argument
131 if (aUint64 == 0) in Uint64ToString()
137 for (; aUint64 != 0; aUint64 /= 10) in Uint64ToString()
139 *(--cur) = static_cast<char>('0' + static_cast<uint8_t>(aUint64 % 10)); in Uint64ToString()
146 void Output::OutputUint64(uint64_t aUint64) in OutputUint64() argument
150 OutputFormat("%s", Uint64ToString(aUint64, buffer)); in OutputUint64()
153 void Output::OutputUint64Line(uint64_t aUint64) in OutputUint64Line() argument
155 OutputUint64(aUint64); in OutputUint64Line()
Dcli_output.hpp226 static const char *Uint64ToString(uint64_t aUint64, Uint64StringBuffer &aBuffer);
350 void OutputUint64(uint64_t aUint64);
358 void OutputUint64Line(uint64_t aUint64);
/openthread-3.4.0/src/core/utils/
Dparse_cmdline.hpp112 otError ParseAsUint64(const char *aString, uint64_t &aUint64);
430 …otError ParseAsUint64(uint64_t &aUint64) const { return CmdLineParser::ParseAsUint64(mString, aUin… in ParseAsUint64()
Dparse_cmdline.cpp140 Error ParseAsUint64(const char *aString, uint64_t &aUint64) in ParseAsUint64() argument
175 aUint64 = value; in ParseAsUint64()