Home | History | Annotate | Download | only in csharp

Lines Matching refs:hex

19   static const char hex[17] = "0123456789abcdef";
24 *(c++) = hex[(uu & 0xf0) >> 4];
25 *(c++) = hex[uu & 0xf];