HomeSort by relevance Sort by last modified time
    Searched defs:hexchars (Results 1 - 2 of 2) sorted by null

  /external/mdnsresponder/mDNSPosix/
NetMonitor.c 505 static const char hexchars[16] = "0123456789ABCDEF"; local
537 *p++ = hexchars[t[i] >> 4];
538 *p++ = hexchars[t[i] & 0xF];
575 *p++ = hexchars[*s >> 4];
576 *p++ = hexchars[*s & 0xF];
    [all...]
  /device/generic/goldfish/qemud/
qemud.c 200 static const char hexchars[16] = "0123456789abcdef"; local
203 to[nn] = hexchars[(value >> (width*4)) & 15];
    [all...]

Completed in 5273 milliseconds