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