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

  /external/qemu/android/utils/
stralloc.c 280 const char hexdigits[16] = "0123456789abcdef"; local
288 s->s[s->n+nn] = hexdigits[value & 15];
  /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/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/dbus/dbus/
dbus-string.c 2518 const char hexdigits[16] = { local
    [all...]
  /packages/apps/Music/src/com/android/music/
MediaPlaybackService.java 384 private final char hexdigits [] = new char [] { field in class:MediaPlaybackService
418 q.append(hexdigits[digit]);
438 q.append(hexdigits[digit]);
    [all...]

Completed in 294 milliseconds