Home | History | Annotate | Download | only in policyrep

Lines Matching defs:hex

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