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

  /frameworks/base/media/java/android/media/
MediaCodec.java 404 String hexdigits = "0123456789abcdef"; local
406 builder.append(hexdigits.charAt((key[i] & 0xf0) >> 4));
407 builder.append(hexdigits.charAt(key[i] & 0x0f));
411 builder.append(hexdigits.charAt((iv[i] & 0xf0) >> 4));
412 builder.append(hexdigits.charAt(iv[i] & 0x0f));
  /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];
  /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...]
  /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 137 milliseconds