| 395 | |
| 396 | extern const uint8_t CacheKey_prev_table[256]; |
| 397 | void inline prev_CacheKey(CacheKey *prev, const CacheKey *key) |
| 398 | { |
| 399 | for (int i = 15; i > 0; i--) { |
| 400 | prev->u8[i] = 256 + CacheKey_prev_table[key->u8[i]] - key->u8[i - 1]; |
| 401 | } |
| 402 | prev->u8[0] = CacheKey_prev_table[key->u8[0]]; |
| 403 | } |
| 404 | |
| 405 | inline unsigned int |
| 406 | next_rand(unsigned int *p) |
no outgoing calls
no test coverage detected