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

  /external/chromium/testing/gmock/scripts/generator/cpp/
tokenize.py 44 HEX_DIGITS = set('0123456789abcdefABCDEF')
130 hex_digits = HEX_DIGITS
200 while source[i] in hex_digits:
  /external/bluetooth/glib/gio/
gfileattribute.c 362 const char hex_digits[] = "0123456789abcdef"; local
389 *p++ = hex_digits[(c >> 4) & 0xf];
390 *p++ = hex_digits[c & 0xf];
    [all...]
glocalfileinfo.c 290 static char *hex_digits = "0123456789abcdef"; local
320 *p++ = hex_digits[(c >> 4) & 0xf];
321 *p++ = hex_digits[c & 0xf];
    [all...]

Completed in 169 milliseconds