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

  /device/asus/flo/conn_init/
wfc_util_common.c 29 char hex_table[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', local
41 /*pAsciiStringBuff[j] = hex_table[(pHexaBuff[i] >> 4) & 0x0F];
43 pAsciiStringBuff[j] = hex_table[pHexaBuff[i] >> 4];
44 pAsciiStringBuff[j + 1] = hex_table[pHexaBuff[i] & 0x0F];
  /device/lge/mako/conn_init/
wfc_util_common.c 29 char hex_table[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', local
41 /*pAsciiStringBuff[j] = hex_table[(pHexaBuff[i] >> 4) & 0x0F];
43 pAsciiStringBuff[j] = hex_table[pHexaBuff[i] >> 4];
44 pAsciiStringBuff[j + 1] = hex_table[pHexaBuff[i] & 0x0F];
  /device/asus/flo/bdAddrLoader/
addrloader.c 78 char hex_table[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', local
82 ascii[j] = hex_table[hexa[i] >> 4];
83 ascii[j + 1] = hex_table[hexa[i] & 0x0F];
  /device/lge/hammerhead/bdAddrLoader/
addrloader.c 74 char hex_table[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', local
78 ascii[j] = hex_table[hexa[i] >> 4];
79 ascii[j + 1] = hex_table[hexa[i] & 0x0F];
  /device/lge/mako/bdAddrLoader/
addrloader.c 78 char hex_table[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', local
82 ascii[j] = hex_table[hexa[i] >> 4];
83 ascii[j + 1] = hex_table[hexa[i] & 0x0F];
  /external/bluetooth/bluedroid/btif/src/
btif_sock_util.c 167 static const char* hex_table = "0123456789abcdef"; variable
170 **str = hex_table[(*data >> 4) & 0xf];
172 **str = hex_table[*data & 0xf];
btif_config_util.cpp 82 static const char* hex_table = "0123456789abcdef"; local
85 *str = hex_table[(data[i] >> 4) & 0xf];
87 *str = hex_table[data[i] & 0xf];
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/trace/
tr_dump.c 442 static const char hex_table[16] = "0123456789ABCDEF"; local
453 hex[0] = hex_table[byte >> 4];
454 hex[1] = hex_table[byte & 0xf];
  /external/mesa3d/src/gallium/drivers/trace/
tr_dump.c 442 static const char hex_table[16] = "0123456789ABCDEF"; local
453 hex[0] = hex_table[byte >> 4];
454 hex[1] = hex_table[byte & 0xf];

Completed in 573 milliseconds