Searched refs:in_cell (Results 1 – 1 of 1) sorted by relevance
83 static uint64_t RotNibble(uint64_t in_cell, int amount) { in RotNibble() argument86 in_cell &= 0xf; in RotNibble()87 uint64_t temp = (in_cell << 4) | in_cell; in RotNibble()