Home
last modified time | relevance | path

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

/openthread-latest/src/core/net/
Dip4_types.cpp104 uint8_t ip6Index; in ExtractFromIp6Address() local
108 ip6Index = aPrefixLength / kBitsPerByte; in ExtractFromIp6Address()
112 if (ip6Index == kSkipIndex) in ExtractFromIp6Address()
114 ip6Index++; in ExtractFromIp6Address()
117 i = aIp6Address.GetBytes()[ip6Index++]; in ExtractFromIp6Address()
Dip6_address.cpp533 uint8_t ip6Index; in SynthesizeFromIp4Address() local
540 ip6Index = aPrefix.GetLength() / kBitsPerByte; in SynthesizeFromIp4Address()
544 if (ip6Index == kSkipIndex) in SynthesizeFromIp4Address()
546 ip6Index++; in SynthesizeFromIp4Address()
549 mFields.m8[ip6Index++] = aIp4Address.GetBytes()[i]; in SynthesizeFromIp4Address()