Home
last modified time | relevance | path

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

/xnu-11417.140.69/bsd/net/
H A Dtrie_utility.h41 #define LAST_PRINTABLE_ASCII 127 macro
42 #define CHILD_MAP_SIZE (LAST_PRINTABLE_ASCII - FIRST_PRINTABLE_ASCII + 1) // print…
45 #define TRIE_CHILD_GET(t, i, b) ((b >= FIRST_PRINTABLE_ASCII && b <= LAST_PRINTABLE_ASCII) …
H A Dtrie_utility.c54 …if (b >= FIRST_PRINTABLE_ASCII && b <= LAST_PRINTABLE_ASCII) { …