Searched refs:kHex (Results 1 – 2 of 2) sorted by relevance
177 static const char kHex[16] = {'0', '1', '2', '3', '4', '5', '6', '7', variable260 str.push_back(kHex[bytes[i] % 16]); in CreateRandomUuid()264 str.push_back(kHex[bytes[i] % 16]); in CreateRandomUuid()269 str.push_back(kHex[bytes[i] % 16]); in CreateRandomUuid()274 str.push_back(kHex[bytes[i] % 16]); in CreateRandomUuid()278 str.push_back(kHex[bytes[i] % 16]); in CreateRandomUuid()
100 static const char kHex[] = "0123456789ABCDEF"; in write_name_escaped() local104 buffer[1] = kHex[(*n >> 4) & 0xF]; in write_name_escaped()105 buffer[2] = kHex[*n & 0xF]; in write_name_escaped()