Searched refs:nibble (Results 1 – 1 of 1) sorted by relevance
6864 static char const nibble[] = "0123456789abcdef"; in cdhash_to_string() local6872 str[i * 2] = nibble[(cdhash[i] & 0xf0) >> 4]; in cdhash_to_string()6873 str[i * 2 + 1] = nibble[cdhash[i] & 0x0f]; in cdhash_to_string()