Lines Matching full:acc
36 unsigned int acc; in cachefiles_cook_key() local
89 acc = *(uint16_t *) raw; in cachefiles_cook_key()
92 key[len + 1] = cachefiles_charmap[acc & 63]; in cachefiles_cook_key()
93 acc >>= 6; in cachefiles_cook_key()
94 key[len] = cachefiles_charmap[acc & 63]; in cachefiles_cook_key()
125 acc = *raw++; in cachefiles_cook_key()
126 acc |= *raw++ << 8; in cachefiles_cook_key()
127 acc |= *raw++ << 16; in cachefiles_cook_key()
129 _debug("acc: %06x", acc); in cachefiles_cook_key()
131 key[len++] = cachefiles_charmap[acc & 63]; in cachefiles_cook_key()
132 acc >>= 6; in cachefiles_cook_key()
133 key[len++] = cachefiles_charmap[acc & 63]; in cachefiles_cook_key()
134 acc >>= 6; in cachefiles_cook_key()
135 key[len++] = cachefiles_charmap[acc & 63]; in cachefiles_cook_key()
136 acc >>= 6; in cachefiles_cook_key()
137 key[len++] = cachefiles_charmap[acc & 63]; in cachefiles_cook_key()