Home
last modified time | relevance | path

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

/external/mdnsresponder/mDNSPosix/
DIdentify.c325 static const char hexValues[] = "0123456789ABCDEF"; in main() local
326 buffer[i * 4 ] = hexValues[p[15-i] & 0x0F]; in main()
328 buffer[i * 4 + 2] = hexValues[p[15-i] >> 4]; in main()
/external/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/localedistance/
DLocaleDistanceMapper.java466 ImmutableList.Builder<String> hexValues = ImmutableList.builder(); in ofBytes() local
469hexValues.add(line.stream().map(b -> String.format("%02x", b)).collect(Collectors.joining())); in ofBytes()
471 return RbValue.of(hexValues.build()); in ofBytes()
/external/mdnsresponder/mDNSCore/
DmDNS.c9202 static const char hexValues[] = "0123456789ABCDEF"; in AdvertiseInterface() local
9203 buffer[i * 4 ] = hexValues[set->ip.ip.v6.b[15 - i] & 0x0F]; in AdvertiseInterface()
9205 buffer[i * 4 + 2] = hexValues[set->ip.ip.v6.b[15 - i] >> 4]; in AdvertiseInterface()