Searched refs:_nibbleToHex (Results 1 – 1 of 1) sorted by relevance
/external/jmdns/src/javax/jmdns/impl/ |
D | DNSIncoming.java | 557 …private static final char[] _nibbleToHex = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A'… field in DNSIncoming 571 result.append(_nibbleToHex[b / 16]); in _hexString() 572 result.append(_nibbleToHex[b % 16]); in _hexString()
|