Home | History | Annotate | Download | only in gio

Lines Matching refs:hex_digits

362   const char hex_digits[] = "0123456789abcdef";
389 *p++ = hex_digits[(c >> 4) & 0xf];
390 *p++ = hex_digits[c & 0xf];