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

  /external/qemu/android/utils/
stralloc.c 246 const char hexdigits[16] = "0123456789abcdef"; local
254 s->s[s->n+nn] = hexdigits[value & 15];
  /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 81 const char* hexdigits = "0123456789abcdef"; local
101 p[2] = hexdigits[ (c) >> 4 ];
102 p[3] = hexdigits[ (c) & 15 ];
    [all...]
  /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];
  /system/wlan/ti/wilink_6_1/utils/
report.c 515 static const TI_CHAR hexdigits[16] = "0123456789ABCDEF"; local
528 dbuf[dbuflen] = hexdigits[(pData[j] >> 4)&0x0f];
529 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 2362 const char hexdigits[16] = { local
    [all...]
  /packages/apps/Music/src/com/android/music/
MediaPlaybackService.java 346 private final char hexdigits [] = new char [] { field in class:MediaPlaybackService
380 q.append(hexdigits[digit]);
400 q.append(hexdigits[digit]);
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/utils/
utils.c 1656 static char hexdigits[16] = "0123456789ABCDEF"; local
    [all...]

Completed in 608 milliseconds