Home
last modified time | relevance | path

Searched defs:ReadUint16 (Results 1 – 2 of 2) sorted by relevance

/openthread-3.4.0/src/core/common/
Dencoding.hpp128 inline uint16_t ReadUint16(const uint8_t *aBuffer) { return static_cast<uint16_t>((aBuffer[0] << 8)… in ReadUint16() function
278 inline uint16_t ReadUint16(const uint8_t *aBuffer) { return static_cast<uint16_t>(aBuffer[0] | (aBu… in ReadUint16() function
/openthread-3.4.0/src/lib/spinel/
Dspinel_decoder.cpp119 otError Decoder::ReadUint16(uint16_t &aUint16) in ReadUint16() function in ot::Spinel::Decoder