Home
last modified time | relevance | path

Searched refs:BitSizeOf (Results 1 – 7 of 7) sorted by relevance

/openthread-latest/src/core/mac/
Dchannel_mask.hpp138 return (aChannel < BitSizeOf(mMask)) ? ((1UL << aChannel) & mMask) != 0 : false; in ContainsChannel()
148 if (aChannel < BitSizeOf(mMask)) in AddChannel()
161 if (aChannel < BitSizeOf(mMask)) in RemoveChannel()
/openthread-latest/src/core/common/
Dtime_ticker.hpp120 …static_assert(kNumReceivers < BitSizeOf(mReceivers), "Too many `Receiver`s - does not fit in a bit…
Dnumeric_limits.hpp50 #define BitSizeOf(aItem) (sizeof(aItem) * kBitsPerByte) macro
Dnotifier.cpp184 for (uint8_t bit = 0; bit < BitSizeOf(Events::Flags); bit++) in LogEvents()
/openthread-latest/src/core/meshcop/
Dmeshcop.cpp166 if (mLength <= BitSizeOf(uint16_t)) in ToString()
170 else if (mLength <= BitSizeOf(uint32_t)) in ToString()
/openthread-latest/src/cli/
Dcli.cpp1398 uint8_t channelNum = BitSizeOf(channelMask); in Process()
2775 VerifyOrExit(channel < BitSizeOf(scanChannels), error = OT_ERROR_INVALID_ARGS); in Process()
6083 VerifyOrExit(channel < BitSizeOf(scanChannels), error = OT_ERROR_INVALID_ARGS); in Process()
/openthread-latest/src/core/thread/
Dmle.cpp662 if ((counter < BitSizeOf(ratio)) && ((1UL << counter) <= ratio)) in GetAttachStartDelay()