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

  /external/ppp/pppd/plugins/
winbind.c 173 const char *hexchars = "0123456789ABCDEF"; local
177 if (strncmp(hexchars, "0x", 2) == 0) {
182 if (!(p1 = strchr(hexchars, toupper(strhex[i]))))
187 if (!(p2 = strchr(hexchars, toupper(strhex[i]))))
191 hinybble = (p1 - hexchars);
192 lonybble = (p2 - hexchars);
  /external/ppp/pppd/
utils.c 171 static char hexchars[] = "0123456789abcdef"; local
338 OUTCHAR(hexchars[c >> 4]);
339 OUTCHAR(hexchars[c & 0xf]);
368 OUTCHAR(hexchars[(c >> 4) & 0xf]);
369 OUTCHAR(hexchars[c & 0xf]);
383 *--str = hexchars[val % base];
  /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 201 static const char hexchars[16] = "0123456789abcdef"; local
204 to[nn] = hexchars[(value >> (width*4)) & 15];
    [all...]

Completed in 422 milliseconds