HomeSort by: relevance | last modified time | path
    Searched refs:hex_digits (Results 1 - 10 of 10) sorted by relevancy

  /src/external/mpl/bind/dist/lib/dns/
byaddr.c 38 static char hex_digits[] = { '0', '1', '2', '3', '4', '5', '6', '7', variable
71 *cp++ = hex_digits[bytes[i] & 0x0f];
73 *cp++ = hex_digits[(bytes[i] >> 4) & 0x0f];
  /src/sys/arch/powerpc/tools/chrpicon/ppmtochrpicon/
ppmtochrpicon.c 57 static char *hex_digits = "0123456789ABCDEF"; variable
148 fputc(hex_digits[(pixbyte>>4) & 0x0f], fp);
149 fputc(hex_digits[(pixbyte & 0x0f)], fp);
  /src/usr.bin/xlint/lint1/
cksnprintb.c 86 if (it.hex_digits > 1) {
99 if (it.hex_digits > 2)
233 if (has_bit && bit.octal_digits == 0 && bit.hex_digits == 0)
237 if (has_width && width.octal_digits == 0 && width.hex_digits == 0)
lex.c 859 if (it->hex_digits < 3)
860 it->hex_digits++;
862 it->missing_hex_digits = it->hex_digits == 0;
874 if (it.hex_digits > 0 && !allow_c90)
903 if (it.overflow && it.hex_digits > 0)
lint1.h 525 uint8_t hex_digits; /* 1 to 3; 0 means not applicable */ member in struct:__anon8391
  /src/external/mpl/dhcp/bind/dist/lib/dns/
byaddr.c 42 static char hex_digits[] = { '0', '1', '2', '3', '4', '5', '6', '7', variable
77 *cp++ = hex_digits[bytes[i] & 0x0f];
79 *cp++ = hex_digits[(bytes[i] >> 4) & 0x0f];
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++17/
floating_from_chars.cc 143 constexpr char hex_digits[] = "abcdefABCDEF0123456789"; member in namespace:__anon12281
144 constexpr auto dec_digits = hex_digits + 12;
147 // The string `digits` is either `dec_digits` or `hex_digits`
239 digits = hex_digits;
  /src/external/gpl3/gdb/dist/gdb/
solib-rocm.c 462 std::string_view hex_digits = path.substr (i + 1, 2);
463 decoded_path += std::stoi (std::string (hex_digits), 0, 16);
  /src/external/gpl3/gdb.old/dist/gdb/
solib-rocm.c 464 std::string_view hex_digits = path.substr (i + 1, 2);
465 decoded_path += std::stoi (std::string (hex_digits), 0, 16);
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/
floating_from_chars.cc 414 constexpr char hex_digits[] = "abcdefABCDEF0123456789"; member in namespace:__anon2277
415 constexpr auto dec_digits = hex_digits + 12;
418 // The string `digits` is either `dec_digits` or `hex_digits`
510 digits = hex_digits;

Completed in 65 milliseconds