Home
last modified time | relevance | path

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

/third_party/python/Lib/
Dipaddress.py254 if first_int - 1 == ip._ALL_ONES:
422 if address > self._ALL_ONES:
445 return cls._ALL_ONES ^ (cls._ALL_ONES >> prefixlen)
530 ip_int ^= cls._ALL_ONES
768 return self._address_class(int(self.netmask) ^ self._ALL_ONES)
1140 _ALL_ONES = (2**IPV4LENGTH) - 1 variable in _BaseV4
1580 _ALL_ONES = (2**IPV6LENGTH) - 1 variable in _BaseV6
1804 if ip_int > cls._ALL_ONES:
/third_party/python/Lib/test/
Dtest_ipaddress.py1877 ip2 = ipaddress.IPv4Address(ipaddress.IPv4Address._ALL_ONES)