Home
last modified time | relevance | path

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

/aosp_15_r20/external/openthread/src/core/meshcop/
H A Dmeshcop.hpp401 void SetBit(uint8_t aBit) { m8[BitIndex(aBit)] |= BitFlag(aBit); } in SetBit()
402 void ClearBit(uint8_t aBit) { m8[BitIndex(aBit)] &= ~BitFlag(aBit); } in ClearBit()
/aosp_15_r20/external/ot-br-posix/src/utils/
H A Dsteering_data.hpp78 void SetBit(uint8_t aBit) { mBloomFilter[mLength - 1 - (aBit / 8)] |= 1 << (aBit % 8); } in SetBit()