Home
last modified time | relevance | path

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

/net/core/
Dutils.c82 #define IN6PTON_XDIGIT 0x00010000 macro
102 return (IN6PTON_XDIGIT | IN6PTON_DIGIT| (c - '0')); in xdigit2bin()
104 return (IN6PTON_XDIGIT | (c - 'a' + 10)); in xdigit2bin()
106 return (IN6PTON_XDIGIT | (c - 'A' + 10)); in xdigit2bin()
176 int state = IN6PTON_COLON_1_2 | IN6PTON_XDIGIT | IN6PTON_NULL; in in6_pton()
211 state = IN6PTON_XDIGIT | IN6PTON_DELIM; in in6_pton()
216 state = IN6PTON_XDIGIT | IN6PTON_COLON_2; in in6_pton()
219 state = IN6PTON_XDIGIT; in in6_pton()
243 state |= IN6PTON_XDIGIT; in in6_pton()
258 state &= ~(IN6PTON_XDIGIT|IN6PTON_COLON_MASK); in in6_pton()