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

  /external/bluetooth/bluedroid/btif/src/
btif_sock_util.c 172 static const char* hex_table = "0123456789abcdef"; variable
175 **str = hex_table[(*data >> 4) & 0xf];
177 **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];

Completed in 423 milliseconds