Searched refs:kHex (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/rlz/lib/
H A Dstring_utils.cc79 static const char kHex[] = "0123456789ABCDEF"; local
85 string->at(2 * index) = kHex[data[index] >> 4]; // high digit
86 string->at(2 * index + 1) = kHex[data[index] & 0x0F]; // low digit

Completed in 239 milliseconds