Home | History | Annotate | Download | only in gio

Lines Matching refs:hex_digits

290   static char *hex_digits = "0123456789abcdef";
320 *p++ = hex_digits[(c >> 4) & 0xf];
321 *p++ = hex_digits[c & 0xf];