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

  /external/qemu/telephony/
gsm.c 163 static const char hexdigits[] = "0123456789abcdef"; local
165 hex[0] = hexdigits[(val >> 4) & 15];
166 hex[1] = hexdigits[val & 15];
android_modem.c 92 const char* hexdigits = "0123456789abcdef"; local
112 p[2] = hexdigits[ (c) >> 4 ];
113 p[3] = hexdigits[ (c) & 15 ];
    [all...]
  /external/chromium/testing/
generate_gmock_mutant.py 347 it = string.hexdigits[1:n + 1]
  /external/qemu/android/utils/
stralloc.c 280 const char hexdigits[16] = "0123456789abcdef"; local
288 s->s[s->n+nn] = hexdigits[value & 15];
  /hardware/ti/wlan/wl1271/utils/
report.c 516 static const TI_CHAR hexdigits[16] = "0123456789ABCDEF"; local
529 dbuf[dbuflen] = hexdigits[(pData[j] >> 4)&0x0f];
530 dbuf[dbuflen+1] = hexdigits[pData[j] & 0x0f];
  /external/protobuf/src/google/protobuf/stubs/
strutil.cc 659 static const char *hexdigits = "0123456789abcdef"; local
663 *p-- = hexdigits[i & 15]; // mod by 16
670 static const char *hexdigits = "0123456789abcdef"; local
673 buffer[i] = hexdigits[uint32(value) & 0xf];
    [all...]
  /external/dbus/dbus/
dbus-string.c 2518 const char hexdigits[16] = { local
    [all...]
  /packages/apps/Music/src/com/android/music/
MediaPlaybackService.java 398 private final char hexdigits [] = new char [] { field in class:MediaPlaybackService
432 q.append(hexdigits[digit]);
452 q.append(hexdigits[digit]);
    [all...]

Completed in 1082 milliseconds