| 386 | |
| 387 | extern const uint8_t CacheKey_next_table[256]; |
| 388 | void inline next_CacheKey(CacheKey *next, const CacheKey *key) |
| 389 | { |
| 390 | next->u8[0] = CacheKey_next_table[key->u8[0]]; |
| 391 | for (int i = 1; i < 16; i++) { |
| 392 | next->u8[i] = CacheKey_next_table[(next->u8[i - 1] + key->u8[i]) & 0xFF]; |
| 393 | } |
| 394 | } |
| 395 | |
| 396 | extern const uint8_t CacheKey_prev_table[256]; |
| 397 | void inline prev_CacheKey(CacheKey *prev, const CacheKey *key) |
no outgoing calls
no test coverage detected