Searched refs:hexValues (Results 1 – 3 of 3) sorted by relevance
325 static const char hexValues[] = "0123456789ABCDEF"; in main() local326 buffer[i * 4 ] = hexValues[p[15-i] & 0x0F]; in main()328 buffer[i * 4 + 2] = hexValues[p[15-i] >> 4]; in main()
466 ImmutableList.Builder<String> hexValues = ImmutableList.builder(); in ofBytes() local469 … hexValues.add(line.stream().map(b -> String.format("%02x", b)).collect(Collectors.joining())); in ofBytes()471 return RbValue.of(hexValues.build()); in ofBytes()
9202 static const char hexValues[] = "0123456789ABCDEF"; in AdvertiseInterface() local9203 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()